diff --git a/README.md b/README.md
index 92b51e9dd..6946fa37a 100644
--- a/README.md
+++ b/README.md
@@ -332,5 +332,156 @@ For detailed development status and known issues, please check the [issue tracke
---
-Made with ❤️ by PRAISELab Team at University of Naples Federico II
+Made with love by PRAISELab Team at University of Naples Federico II
+
+---
+
+## ETL Pipeline Extension (AY 2025/2026)
+
+This fork extends `bibliometrix-python` with a fully source-agnostic ETL pipeline that
+replicates `convert2df()` from the R Bibliometrix package. All output conforms to the
+**WoS Field Tag schema**, making it compatible with every analytical function in
+`www/services/` and `www/functions/`.
+
+**Submitted by: Qamar Javed**
+*Data Science exam, Prof. Vincenzo Moscato, Federico II / UNINA, AY 2025/2026*
+
+---
+
+### Supported Sources
+
+| Source | Format | Retrieval |
+|---|---|---|
+| PubMed | MEDLINE / E-utilities API | Automated (API) |
+| OpenAlex | REST API (JSON) | Automated (API) |
+| Scopus | CSV export | File upload |
+| Scopus | BibTeX export | File upload |
+| Web of Science | TXT / CIW plaintext | File upload |
+| Web of Science | BibTeX export | File upload |
+| Dimensions | CSV / XLSX export | File upload |
+| Lens.org | CSV export | File upload |
+| Cochrane CDSR | TXT plaintext | File upload |
+| PubMed | MEDLINE TXT file export | File upload |
+
+---
+
+### Architecture
+
+Each pipeline phase is a dedicated module — monolithic functions are strictly prohibited.
+
+| Module | Phase | Responsibility |
+|---|---|---|
+| `www/services/mapping_dicts.py` | Config | 10 source mapping dicts; `MANDATORY_COLUMNS`, `LIST_FIELDS`, `SCALAR_FIELDS` |
+| `www/services/api_retriever.py` | Extract (API) | `fetch_pubmed()`, `fetch_openalex()` — pagination, exponential-backoff retry |
+| `www/services/standardizer.py` | Extract (file) + Transform | `load_file()`, `detect_source()`, `rename_columns()`, `enforce_types()`, `handle_nulls()`, `add_calculated_fields()`, `run_pipeline()` |
+| `www/services/validator.py` | Validate | `validate(df)` — raises `ValidationError` naming the failing column; returns structured report |
+| `dashboard/app.py` | Present | Streamlit dashboard (five tabs: API Query, File Upload, Validation, Analysis, About) |
+| `tests/test_etl.py` | Test | pytest suite covering all pipeline phases and all 10 source types |
+
+---
+
+### Mapping Strategy
+
+Column names are **never hardcoded** anywhere in the pipeline code.
+`mapping_dicts.py` contains one dictionary per source that maps source-native field
+names to WoS Field Tags. The dispatcher in `standardizer.py` selects the correct
+dictionary automatically.
+
+Selected mappings:
+
+| Source | Example mapping |
+|---|---|
+| PubMed API | `FAU` → `AF`, `MH` → `ID`, `DP` → `PY`, `TA` → `JI` |
+| OpenAlex API | `display_name` → `TI`, `cited_by_count` → `TC`, `author_names` → `AU` |
+| Scopus CSV | `EID` → `UT`, `Cited by` → `TC`, `Author Keywords` → `DE` |
+| Scopus BibTeX | `author` → `AU`, `note` → `TC` (Cited by: N), `url` → `UT` (EID) |
+| WoS BibTeX | `ID` → `UT`, `keywords-plus` → `ID`, `times-cited` → `TC` |
+| Dimensions | `Publication ID` → `UT`, `PubYear` → `PY`, `MeSH terms` → `ID` |
+| Lens.org | `Lens ID` → `UT`, `Author/s` → `AU`, `Citing Works Count` → `TC` |
+| Cochrane | `ID` → `UT`, `YR` → `PY`, `KY` → `DE`, `DOI` → `DI` |
+| PubMed file | `IP` → `IS`, `IS` → `SN`, `LID` → `DI`, `PMID` → `PMID` |
+
+All 10 sources pass through the **same** downstream `enforce_types` / `handle_nulls` /
+`add_calculated_fields` pipeline — zero duplicated transform logic.
+
+---
+
+### Type Contracts
+
+| Field | Type | Rule |
+|---|---|---|
+| `AU`, `AF`, `C1`, `CR`, `DE`, `ID` | `list[str]` | Split on `;`; `[]` if missing |
+| All other scalar fields | `str` | `""` if missing |
+| `PY` | `str` | 4-digit year extracted from full date string |
+| `TC` | `int` | `0` if missing or unparseable |
+| `DB` | `str` | Set from `SOURCE_TO_DB` map (e.g. `SCOPUS_CSV` → `"SCOPUS"`) |
+| `SR` | `str` | Computed by existing `SR(M)` in `metatagextraction.py` |
+
+Mandatory output columns (24):
+`DB`, `UT`, `DI`, `PMID`, `TI`, `SO`, `JI`, `PY`, `DT`, `LA`, `TC`, `AU`, `AF`,
+`C1`, `RP`, `CR`, `DE`, `ID`, `AB`, `VL`, `IS`, `BP`, `EP`, `SR`
+
+---
+
+### SR Field
+
+The Short Reference field is computed by calling the existing `SR(M)` function
+from `www/services/metatagextraction.py`. It is **never reimplemented** — the
+ETL pipeline calls it directly from `add_calculated_fields()`, with a faithful
+fallback for environments where Shiny-specific deps are absent.
+
+---
+
+### Patches Applied to Existing Code
+
+Six patches were applied in place to accept all new DB values. Every patch is
+marked with a `# PATCHED:` comment giving the reason.
+
+| File | Change |
+|---|---|
+| `www/services/histnetwork.py` | Added `"WOS"` to the `Web_of_Science` branch; added `"SCOPUS"` to the Scopus branch; added `"DIMENSIONS"`, `"LENS"`, `"COCHRANE"` routed through WoS citation analysis |
+| `www/services/biblionetwork.py` | Fixed `db_name == "SCOPUS"` case-sensitivity bug (was never matching); added `"wos"` to WoS branch in `label_short()`; added `"dimensions"`, `"lens"`, `"cochrane"` alongside `"pubmed"` / `"openalex"` |
+| `www/services/metatagextraction.py` | Added `"SCOPUS"`, `"DIMENSIONS"`, `"LENS"`, `"COCHRANE"` to the `AU_UN` C3 institution-name override check |
+
+---
+
+### Running the ETL Dashboard
+
+```bash
+streamlit run dashboard/app.py
+```
+
+The dashboard has five tabs:
+
+1. **API Query** — enter a query, choose PubMed or OpenAlex, set result count, click Run Pipeline
+2. **File Upload** — upload a bibliographic file (auto-detected or format selected), click Process File
+3. **Validation** — per-check pass/fail status for the most recent pipeline run
+4. **Analysis** — summary metrics, publications-per-year chart, top authors, top keywords
+5. **About** — architecture description, supported sources, mandatory columns, patch table
+
+---
+
+### Running Tests
+
+```bash
+# Unit tests only (no network, no file I/O)
+pytest tests/test_etl.py -m "not integration and not file_sources"
+
+# File-source tests (requires sources/ directory)
+pytest tests/test_etl.py -m "file_sources"
+
+# Full suite including live API calls
+pytest tests/test_etl.py
+
+# Verbose output
+pytest tests/test_etl.py -v
+```
+
+---
+
+### Data Output
+
+Standardized CSVs are written to `data/outputs/`. Multi-value fields use `;`
+as delimiter, matching the format expected by all analytical functions in
+`www/services/` and `www/functions/`.
diff --git a/dashboard/app.py b/dashboard/app.py
new file mode 100644
index 000000000..f3d30c950
--- /dev/null
+++ b/dashboard/app.py
@@ -0,0 +1,1053 @@
+"""
+Bibliometrix Python — Streamlit Dashboard
+
+Five sections:
+ 1. API Query — run the ETL pipeline via PubMed/OpenAlex API
+ 2. File Upload — run the ETL pipeline from a local file
+ 3. Validation — per-check pass/fail status
+ 4. Analysis — summary metrics and Plotly charts
+ 5. About — architecture description
+
+Design rules:
+ - No emojis anywhere
+ - Custom CSS injected at startup (DM Sans, deep purple palette)
+ - All charts use plotly.graph_objects with custom template
+ - Sidebar for all controls
+
+Submission: Qamar Javed — Data Science exam, Prof. Vincenzo Moscato,
+ Federico II / UNINA, AY 2025/2026
+"""
+
+import io
+import logging
+import sys
+import tempfile
+import types
+from pathlib import Path
+
+import pandas as pd
+import plotly.graph_objects as go
+import streamlit as st
+
+# ---------------------------------------------------------------------------
+# Package stubbing — MUST run before any www.services import.
+#
+# www/services/__init__.py wildcard-imports Shiny-specific modules that pull
+# in prince, igraph, faicons, etc., which are not installed in this Python
+# 3.12 Streamlit environment. Registering lightweight stubs prevents Python
+# from running __init__.py; ETL-specific submodules are loaded directly.
+#
+# Additionally, parsers.py does `from .utils import *`, and utils.py imports
+# the same Shiny deps. We stub www.services.utils with just `re` (the only
+# name parsers.py actually uses from utils) so parsers.py loads cleanly.
+# ---------------------------------------------------------------------------
+_root = str(Path(__file__).resolve().parent.parent)
+if _root not in sys.path:
+ sys.path.insert(0, _root)
+
+
+def _stub_pkg(name: str, fs_path: str) -> None:
+ if name not in sys.modules:
+ mod = types.ModuleType(name)
+ mod.__path__ = [fs_path] # type: ignore[attr-defined]
+ mod.__package__ = name
+ sys.modules[name] = mod
+
+
+_stub_pkg("www", str(Path(_root) / "www"))
+_stub_pkg("www.services", str(Path(_root) / "www" / "services"))
+
+# Stub www.services.utils so parsers.py can do `from .utils import *`
+# without importing the Shiny-only dependencies in utils.py.
+if "www.services.utils" not in sys.modules:
+ import re as _re
+ _utils_mod = types.ModuleType("www.services.utils")
+ _utils_mod.re = _re # type: ignore[attr-defined]
+ sys.modules["www.services.utils"] = _utils_mod
+
+from www.services.api_retriever import fetch_openalex, fetch_pubmed # noqa: E402
+from www.services.mapping_dicts import LIST_FIELDS # noqa: E402
+from www.services.standardizer import ( # noqa: E402
+ export_to_csv,
+ load_file,
+ run_pipeline,
+)
+from www.services.validator import ValidationError, validate # noqa: E402
+
+logging.basicConfig(level=logging.INFO)
+
+# ---------------------------------------------------------------------------
+# CSS
+# ---------------------------------------------------------------------------
+
+CUSTOM_CSS = """
+
+"""
+
+# ---------------------------------------------------------------------------
+# Plotly custom template
+# ---------------------------------------------------------------------------
+
+PLOTLY_TEMPLATE = go.layout.Template(
+ layout=go.Layout(
+ font=dict(family="DM Sans, sans-serif", size=12, color="#374151"),
+ paper_bgcolor="white",
+ plot_bgcolor="white",
+ colorway=["#7c3aed", "#a855f7", "#c084fc", "#6d28d9", "#4c1d95"],
+ xaxis=dict(
+ gridcolor="#f5f3ff",
+ linecolor="#ede9fe",
+ tickfont=dict(size=11),
+ title_font=dict(size=11, color="#7c3aed"),
+ ),
+ yaxis=dict(
+ gridcolor="#f5f3ff",
+ linecolor="#ede9fe",
+ tickfont=dict(size=11),
+ title_font=dict(size=11, color="#7c3aed"),
+ ),
+ margin=dict(l=48, r=24, t=36, b=44),
+ hoverlabel=dict(
+ bgcolor="white",
+ bordercolor="#ede9fe",
+ font=dict(family="DM Sans, sans-serif", size=12, color="#2e1760"),
+ ),
+ )
+)
+
+# File format label → Source literal for load_file()
+_FILE_FORMAT_MAP: dict[str, str | None] = {
+ "Auto-detect": None,
+ "Scopus CSV": "SCOPUS_CSV",
+ "Scopus BibTeX": "SCOPUS_BIB",
+ "WoS TXT / CIW": "WOS_TXT",
+ "WoS BibTeX": "WOS_BIB",
+ "Dimensions CSV/XLSX":"DIMENSIONS",
+ "Lens.org CSV": "LENS",
+ "Cochrane TXT": "COCHRANE",
+ "PubMed TXT": "PUBMED_FILE",
+}
+
+
+# ---------------------------------------------------------------------------
+# Session state helpers
+# ---------------------------------------------------------------------------
+
+def _init_state() -> None:
+ defaults: dict = {
+ # API Query
+ "df": None,
+ "validation_report": None,
+ "pipeline_error": None,
+ "csv_bytes": None,
+ "source_used": None,
+ # File Upload
+ "file_df": None,
+ "file_report": None,
+ "file_error": None,
+ "file_csv_bytes": None,
+ "file_source": None,
+ }
+ for k, v in defaults.items():
+ if k not in st.session_state:
+ st.session_state[k] = v
+
+
+# ---------------------------------------------------------------------------
+# Pipeline runners
+# ---------------------------------------------------------------------------
+
+def _run_api_pipeline(query: str, platform: str, max_results: int) -> None:
+ """Execute Extract → Transform → Validate → Load for an API source."""
+ st.session_state.df = None
+ st.session_state.validation_report = None
+ st.session_state.pipeline_error = None
+ st.session_state.csv_bytes = None
+ st.session_state.source_used = platform
+
+ progress = st.progress(0, text="Starting pipeline...")
+ try:
+ progress.progress(10, text="Phase 1: Extracting from " + platform + "...")
+ if platform == "PubMed":
+ raw_df = fetch_pubmed(query, max_results)
+ else:
+ raw_df = fetch_openalex(query, max_results)
+
+ progress.progress(40, text="Phase 2: Transforming...")
+ std_df = run_pipeline(raw_df)
+
+ progress.progress(70, text="Phase 3: Validating...")
+ report = validate(std_df)
+ st.session_state.validation_report = report
+
+ progress.progress(90, text="Phase 4: Exporting CSV...")
+ export_to_csv(std_df, platform.upper())
+
+ export_df = std_df.copy()
+ for col in LIST_FIELDS:
+ if col in export_df.columns:
+ export_df[col] = export_df[col].apply(
+ lambda v: ";".join(v) if isinstance(v, list) else str(v)
+ )
+ buf = io.BytesIO()
+ export_df.to_csv(buf, index=False, encoding="utf-8")
+ st.session_state.csv_bytes = buf.getvalue()
+ st.session_state.df = std_df
+ progress.progress(100, text="Pipeline complete.")
+
+ except ValidationError as exc:
+ st.session_state.pipeline_error = f"Validation failed: {exc}"
+ progress.empty()
+ except Exception as exc:
+ st.session_state.pipeline_error = f"Pipeline error: {exc}"
+ progress.empty()
+
+
+def _run_file_pipeline(uploaded, format_hint: "str | None") -> None:
+ """Execute Extract (file) → Transform → Validate → Load for a file source."""
+ st.session_state.file_df = None
+ st.session_state.file_report = None
+ st.session_state.file_error = None
+ st.session_state.file_csv_bytes = None
+ st.session_state.file_source = None
+
+ suffix = Path(uploaded.name).suffix or ".tmp"
+ progress = st.progress(0, text="Reading file...")
+ tmp_path: "Path | None" = None
+
+ try:
+ # Save uploaded bytes to a temp file (parsers require file paths)
+ with tempfile.NamedTemporaryFile(delete=False, suffix=suffix) as tmp:
+ tmp.write(uploaded.getvalue())
+ tmp_path = Path(tmp.name)
+
+ progress.progress(15, text="Phase 1: Loading " + uploaded.name + "...")
+ raw_df, source = load_file(tmp_path, source=format_hint) # type: ignore[arg-type]
+
+ progress.progress(40, text="Phase 2: Transforming (" + source + ")...")
+ std_df = run_pipeline(raw_df, source=source)
+
+ progress.progress(70, text="Phase 3: Validating...")
+ report = validate(std_df)
+ st.session_state.file_report = report
+
+ progress.progress(90, text="Phase 4: Exporting CSV...")
+ export_to_csv(std_df, source)
+
+ export_df = std_df.copy()
+ for col in LIST_FIELDS:
+ if col in export_df.columns:
+ export_df[col] = export_df[col].apply(
+ lambda v: ";".join(v) if isinstance(v, list) else str(v)
+ )
+ buf = io.BytesIO()
+ export_df.to_csv(buf, index=False, encoding="utf-8")
+ st.session_state.file_csv_bytes = buf.getvalue()
+ st.session_state.file_df = std_df
+ st.session_state.file_source = source
+ progress.progress(100, text="Pipeline complete.")
+
+ except ValidationError as exc:
+ st.session_state.file_error = f"Validation failed: {exc}"
+ progress.empty()
+ except Exception as exc:
+ st.session_state.file_error = f"Pipeline error: {exc}"
+ progress.empty()
+ finally:
+ if tmp_path and tmp_path.exists():
+ tmp_path.unlink(missing_ok=True)
+
+
+# ---------------------------------------------------------------------------
+# Shared preview helper
+# ---------------------------------------------------------------------------
+
+def _preview_df(df: pd.DataFrame, source_label: str, csv_bytes: bytes) -> None:
+ """Render a success banner, download button, and 20-row preview table."""
+ col_l, col_r = st.columns([6, 2])
+ with col_l:
+ st.success(f"Retrieved {len(df)} records from {source_label}.")
+ with col_r:
+ if csv_bytes:
+ st.download_button(
+ label="Download CSV",
+ data=csv_bytes,
+ file_name=f"{source_label.lower()}_standardized.csv",
+ mime="text/csv",
+ use_container_width=True,
+ )
+
+ preview_cols = [c for c in ["TI", "AU", "PY", "SO", "TC", "DI", "SR"] if c in df.columns]
+ preview_df = df[preview_cols].head(20).copy()
+ for col in preview_cols:
+ if col in LIST_FIELDS:
+ preview_df[col] = preview_df[col].apply(
+ lambda v: "; ".join(v[:3]) + (" ..." if len(v) > 3 else "")
+ if isinstance(v, list) else str(v)
+ )
+ st.dataframe(preview_df, use_container_width=True, height=420)
+
+
+# ---------------------------------------------------------------------------
+# Section renderers
+# ---------------------------------------------------------------------------
+
+def _render_api_query() -> None:
+ st.markdown('API Query
', unsafe_allow_html=True)
+
+ if st.session_state.pipeline_error:
+ st.error(st.session_state.pipeline_error)
+
+ df = st.session_state.df
+ if df is not None:
+ _preview_df(df, st.session_state.source_used or "API", st.session_state.csv_bytes or b"")
+ else:
+ st.info("Configure your query in the sidebar and click Run Pipeline.")
+
+
+def _render_file_upload() -> None:
+ st.markdown('File Upload
', unsafe_allow_html=True)
+
+ if st.session_state.file_error:
+ st.error(st.session_state.file_error)
+
+ df = st.session_state.file_df
+ if df is not None:
+ src = st.session_state.file_source or "file"
+ _preview_df(df, src, st.session_state.file_csv_bytes or b"")
+ else:
+ st.markdown(
+ ''
+ 'Upload a bibliographic export file using the sidebar controls, '
+ 'select its format (or leave on Auto-detect), then click '
+ 'Process File. Supported formats: '
+ 'Scopus CSV, Scopus BibTeX, WoS TXT/CIW, WoS BibTeX, '
+ 'Dimensions CSV/XLSX, Lens.org CSV, Cochrane CDSR TXT, PubMed MEDLINE TXT.'
+ '
',
+ unsafe_allow_html=True,
+ )
+
+
+def _render_validation_report() -> None:
+ st.markdown('Validation Report
', unsafe_allow_html=True)
+
+ # Prefer file upload report when present; fall back to API report
+ report = st.session_state.file_report if st.session_state.file_report is not None else st.session_state.validation_report
+ if report is None:
+ st.info("Run a query or process a file first to see validation results.")
+ return
+
+ overall = report.get("passed", False)
+ oc = "pass" if overall else "fail"
+ ol = "All checks passed" if overall else "One or more checks failed"
+ st.markdown(
+ f''
+ f'{"PASS" if overall else "FAIL"}'
+ f'{ol}'
+ f'
',
+ unsafe_allow_html=True,
+ )
+
+ for check in report.get("checks", []):
+ passed = check.get("passed", False)
+ bc = "pass" if passed else "fail"
+ badge = "PASS" if passed else "FAIL"
+ problems = check.get("problem_columns", [])
+ detail = (
+ f'Problem columns: {", ".join(problems)}'
+ if problems else ""
+ )
+ st.markdown(
+ f''
+ f'{badge}'
+ f'{check.get("name", "")}'
+ f'{detail}'
+ f'
',
+ unsafe_allow_html=True,
+ )
+
+
+def _render_analysis() -> None:
+ st.markdown('Analysis
', unsafe_allow_html=True)
+
+ # Prefer file upload data; fall back to API data
+ df = st.session_state.file_df if st.session_state.file_df is not None else st.session_state.df
+ if df is None:
+ st.info("Run a query or process a file first to see analysis.")
+ return
+
+ # Summary metrics
+ total_records = len(df)
+ year_col = df["PY"].replace("", pd.NA).dropna()
+ year_range = f"{year_col.min()} - {year_col.max()}" if len(year_col) > 0 else "N/A"
+ unique_journals = df["SO"].replace("", pd.NA).dropna().nunique()
+
+ au_col = df["AU"].apply(lambda v: v if isinstance(v, list) else [])
+ all_authors = [a for sub in au_col for a in sub if a]
+ unique_authors = len(set(all_authors))
+
+ col1, col2, col3, col4 = st.columns(4)
+ cards = [
+ ("Total Records", str(total_records), False),
+ ("Year Range", year_range, True),
+ ("Unique Journals", str(unique_journals), False),
+ ("Unique Authors", str(unique_authors), False),
+ ]
+ for col_widget, (label, value, small) in zip([col1, col2, col3, col4], cards):
+ with col_widget:
+ cls = "small" if small else ""
+ st.markdown(
+ f''
+ f'
{label}
'
+ f'
{value}
'
+ f'
',
+ unsafe_allow_html=True,
+ )
+
+ st.markdown("
", unsafe_allow_html=True)
+
+ # Publications per year
+ py_counts = df["PY"].replace("", pd.NA).dropna().value_counts().sort_index()
+ if len(py_counts) > 0:
+ fig_year = go.Figure(
+ go.Bar(
+ x=py_counts.index.tolist(),
+ y=py_counts.values.tolist(),
+ marker=dict(
+ color=py_counts.values.tolist(),
+ colorscale=[[0, "#ddd6fe"], [1, "#4c1d95"]],
+ showscale=False,
+ ),
+ hovertemplate="%{x}
%{y} records",
+ )
+ )
+ fig_year.update_layout(
+ template=PLOTLY_TEMPLATE,
+ xaxis_title="Publication Year",
+ yaxis_title="Records",
+ bargap=0.3,
+ )
+ st.markdown(
+ ''
+ '
Publications per Year
'
+ '
Annual output of retrieved records
',
+ unsafe_allow_html=True,
+ )
+ st.plotly_chart(fig_year, use_container_width=True, config={"displayModeBar": False})
+ st.markdown("
", unsafe_allow_html=True)
+
+ from collections import Counter # noqa: PLC0415
+ author_counts = Counter(all_authors)
+ top_authors = author_counts.most_common(10)
+
+ de_col = df["DE"].apply(lambda v: v if isinstance(v, list) else [])
+ all_kw = [k.upper() for sub in de_col for k in sub if k]
+ kw_counts = Counter(all_kw).most_common(15)
+
+ c_au, c_kw = st.columns(2)
+
+ with c_au:
+ if top_authors:
+ authors_list, count_list = zip(*top_authors)
+ fig_au = go.Figure(
+ go.Bar(
+ x=list(count_list)[::-1],
+ y=list(authors_list)[::-1],
+ orientation="h",
+ marker=dict(color="#2e1760"),
+ hovertemplate="%{y}
%{x} records",
+ )
+ )
+ fig_au.update_layout(
+ template=PLOTLY_TEMPLATE,
+ xaxis_title="Records",
+ margin=dict(l=160, r=16, t=28, b=36),
+ height=340,
+ bargap=0.25,
+ )
+ st.markdown(
+ ''
+ '
Top 10 Authors
'
+ '
By record count
',
+ unsafe_allow_html=True,
+ )
+ st.plotly_chart(fig_au, use_container_width=True, config={"displayModeBar": False})
+ st.markdown("
", unsafe_allow_html=True)
+
+ with c_kw:
+ if kw_counts:
+ kws, kw_freqs = zip(*kw_counts)
+ fig_kw = go.Figure(
+ go.Bar(
+ x=list(kw_freqs)[::-1],
+ y=list(kws)[::-1],
+ orientation="h",
+ marker=dict(color="#7c3aed"),
+ hovertemplate="%{y}
%{x} occurrences",
+ )
+ )
+ fig_kw.update_layout(
+ template=PLOTLY_TEMPLATE,
+ xaxis_title="Frequency",
+ margin=dict(l=200, r=16, t=28, b=36),
+ height=340,
+ bargap=0.25,
+ )
+ st.markdown(
+ ''
+ '
Top 15 Author Keywords
'
+ '
DE field — author-supplied terms
',
+ unsafe_allow_html=True,
+ )
+ st.plotly_chart(fig_kw, use_container_width=True, config={"displayModeBar": False})
+ st.markdown("
", unsafe_allow_html=True)
+ else:
+ st.info("No author keywords (DE) found in this result set.")
+
+
+def _render_about() -> None:
+ st.markdown('About
', unsafe_allow_html=True)
+ st.markdown(
+ """
+
+
+ A source-agnostic bibliometric ETL pipeline that replicates
+ convert2df() from the R Bibliometrix package.
+ All output conforms to the WoS Field Tag schema so every analytical
+ function in www/services/ runs without modification.
+ Submitted by Qamar Javed.
+
+
+
Sources — API
+
+ - PubMed — NCBI E-utilities (esearch + efetch, MEDLINE format) with exponential-backoff retry
+ - OpenAlex — REST API with cursor pagination and rate-limit handling
+
+
+
Sources — File Upload
+
+ - Scopus CSV — standard CSV export from the Scopus interface
+ - Scopus BibTeX — BibTeX export; EID extracted from URL, TC from note field
+ - Web of Science TXT / CIW — MEDLINE-style plaintext; parsed by
parse_wos_data()
+ - Web of Science BibTeX — BibTeX export; WoS accession number used as UT
+ - Dimensions CSV / XLSX — export with header row offset (skiprows=1)
+ - Lens.org CSV — standard CSV export from the Lens interface
+ - Cochrane CDSR TXT — KEY: value format; parsed by
parse_cochrane_data()
+ - PubMed TXT — MEDLINE plaintext file export; LID used for DOI
+
+
+
Pipeline Phases
+
+ 1
+ Extract — API retrieval or file loading via load_file(); auto-detects format from extension and content fingerprint
+
+
+ 2
+ Transform — rename via mapping_dicts.py, enforce type contracts (AU/AF as list[str], TC as int, PY as 4-digit string), eliminate nulls, compute SR
+
+
+ 3
+ Validate — mandatory columns, zero-null guarantee, list[str] type contract; raises ValidationError naming the failing column
+
+
+ 4
+ Load — CSV export to data/outputs/ with ;-delimited multi-value fields for compatibility with all analytical functions
+
+
+
Mandatory Output Columns (24)
+
+ DBUTDI
+ PMIDTISO
+ JIPYDT
+ LATCAU
+ AFC1RP
+ CRDEID
+ ABVLIS
+ BPEPSR
+
+
+
Modules
+
+ mapping_dicts.py — 10 source mapping dicts; schema constants (MANDATORY_COLUMNS, LIST_FIELDS, SCALAR_FIELDS)
+ api_retriever.py — fetch_pubmed(), fetch_openalex()
+ standardizer.py — load_file(), detect_source(), rename_columns(), enforce_types(), handle_nulls(), add_calculated_fields(), run_pipeline()
+ validator.py — validate(), ValidationError
+ dashboard/app.py — this Streamlit interface (five sections)
+ tests/test_etl.py — pytest suite covering all pipeline phases and all file sources
+
+
+
Patches Applied to Existing Code
+
+ histnetwork.py — added DIMENSIONS, LENS, COCHRANE, SCOPUS, WOS routing to WoS/Scopus citation analysis paths
+ biblionetwork.py — fixed case-insensitive SCOPUS comparison; added new sources to label_short()
+ metatagextraction.py — added SCOPUS, DIMENSIONS, LENS, COCHRANE to AU_UN C3 override check
+
+
+
+
+ """,
+ unsafe_allow_html=True,
+ )
+
+
+# ---------------------------------------------------------------------------
+# Main layout
+# ---------------------------------------------------------------------------
+
+def main() -> None:
+ st.set_page_config(
+ page_title="Bibliometrix Python",
+ layout="wide",
+ initial_sidebar_state="expanded",
+ )
+ st.markdown(CUSTOM_CSS, unsafe_allow_html=True)
+ _init_state()
+
+ # Header
+ st.markdown(
+ ''
+ '
Bibliometrix Python
'
+ '
Source-agnostic bibliometric ETL pipeline — WoS Field Tag schema output
'
+ '
'
+ 'PubMed'
+ 'OpenAlex'
+ 'Scopus'
+ 'WoS'
+ 'Dimensions'
+ 'Lens'
+ 'Cochrane'
+ '
'
+ '
',
+ unsafe_allow_html=True,
+ )
+
+ # Sidebar
+ with st.sidebar:
+ st.markdown("### API Query")
+ query = st.text_input(
+ "Search query",
+ value="machine learning bibliometrics",
+ help="Supports full PubMed Entrez and OpenAlex search syntax.",
+ )
+ platform = st.selectbox("Platform", ["PubMed", "OpenAlex"])
+ max_results = st.selectbox("Max results", [10, 50, 100, 200], index=2)
+ run_clicked = st.button("Run Pipeline", use_container_width=True)
+
+ st.markdown("---")
+ st.markdown("### File Upload")
+ uploaded_file = st.file_uploader(
+ "Upload file",
+ type=["csv", "bib", "txt", "ciw", "xlsx", "xls"],
+ help=(
+ "Supported: Scopus CSV/BibTeX, WoS TXT/CIW/BibTeX, "
+ "Dimensions CSV/XLSX, Lens CSV, Cochrane TXT, PubMed TXT"
+ ),
+ )
+ file_format = st.selectbox("Format", list(_FILE_FORMAT_MAP.keys()), index=0)
+ process_clicked = st.button("Process File", use_container_width=True)
+
+ # Trigger handlers
+ if run_clicked:
+ if not query.strip():
+ st.sidebar.error("Please enter a search query.")
+ else:
+ _run_api_pipeline(query.strip(), platform, max_results)
+
+ if process_clicked:
+ if uploaded_file is None:
+ st.sidebar.error("Please upload a file first.")
+ else:
+ _run_file_pipeline(uploaded_file, _FILE_FORMAT_MAP[file_format])
+
+ # Tabs
+ tab1, tab2, tab3, tab4, tab5 = st.tabs(
+ ["API Query", "File Upload", "Validation", "Analysis", "About"]
+ )
+ with tab1:
+ _render_api_query()
+ with tab2:
+ _render_file_upload()
+ with tab3:
+ _render_validation_report()
+ with tab4:
+ _render_analysis()
+ with tab5:
+ _render_about()
+
+
+if __name__ == "__main__":
+ main()
diff --git a/data/outputs/openalex_standardized.csv b/data/outputs/openalex_standardized.csv
new file mode 100644
index 000000000..ff6a61e71
--- /dev/null
+++ b/data/outputs/openalex_standardized.csv
@@ -0,0 +1,101 @@
+TI,PY,DT,LA,TC,DI,UT,PMID,AU,AF,C1,RP,SO,JI,VL,IS,BP,EP,AB,DE,ID,CR,DB,SR,SR_FULL
+"Software survey: VOSviewer, a computer program for bibliometric mapping",2009,article,en,19717,10.1007/s11192-009-0146-3,https://openalex.org/W2150220236,20585380,Nees Jan van Eck;Ludo Waltman,Nees Jan van Eck;Ludo Waltman,Leiden University;Erasmus University Rotterdam;Leiden University;Erasmus University Rotterdam,Nees Jan van Eck,Scientometrics,Scientometrics,84,2,523,538,"We present VOSviewer, a freely available computer program that we have developed for constructing and viewing bibliometric maps. Unlike most computer programs that are used for bibliometric mapping, VOSviewer pays special attention to the graphical representation of bibliometric maps. The functionality of VOSviewer is especially useful for displaying large bibliometric maps in an easy-to-interpret way. The paper consists of three parts. In the first part, an overview of VOSviewer's functionality for displaying bibliometric maps is provided. In the second part, the technical implementation of specific parts of the program is discussed. Finally, in the third part, VOSviewer's ability to handle large maps is demonstrated by using the program to construct and display a co-citation map of 5,000 major scientific journals.",,Computer science;Construct (python library);Bibliometrics;Citation;Software;Representation (politics);Data science;World Wide Web;Law;Political science;Politics;Programming language,https://openalex.org/W204885769;https://openalex.org/W1585065401;https://openalex.org/W1704958401;https://openalex.org/W1734878544;https://openalex.org/W1749485691;https://openalex.org/W1947595544;https://openalex.org/W1975409653;https://openalex.org/W1995587687;https://openalex.org/W2002227306;https://openalex.org/W2008331969;https://openalex.org/W2012521459;https://openalex.org/W2043976122;https://openalex.org/W2045108252;https://openalex.org/W2059599755;https://openalex.org/W2072840758;https://openalex.org/W2075220720;https://openalex.org/W2079090652;https://openalex.org/W2095972207;https://openalex.org/W2096123611;https://openalex.org/W2100080715;https://openalex.org/W2100484636;https://openalex.org/W2101275184;https://openalex.org/W2105546352;https://openalex.org/W2106336702;https://openalex.org/W2118623738;https://openalex.org/W2123455699;https://openalex.org/W2129800764;https://openalex.org/W2138150506;https://openalex.org/W2145978555;https://openalex.org/W2148398225;https://openalex.org/W2167482691;https://openalex.org/W2491663862;https://openalex.org/W2492190951;https://openalex.org/W2495084345;https://openalex.org/W2571077957;https://openalex.org/W2949876241;https://openalex.org/W2951923752;https://openalex.org/W3122100588;https://openalex.org/W3125534699;https://openalex.org/W4205622916;https://openalex.org/W4233941003;https://openalex.org/W4234292554;https://openalex.org/W4237145399;https://openalex.org/W4238591974;https://openalex.org/W4256379048;https://openalex.org/W4291733759;https://openalex.org/W6634801741;https://openalex.org/W6723345642,OPENALEX,"Nees Jan van Eck, 2009, Scientometrics","Nees Jan van Eck, 2009, Scientometrics"
+Coronavirus Disease (COVID-19): A Machine Learning Bibliometric Analysis,2020,review,en,124,10.21873/invivo.11951,https://openalex.org/W3032935427,32503819,Francesca De Felice;Antonella Polimeni,Francesca De Felice;Antonella Polimeni,Policlinico Umberto I;Sapienza University of Rome;Policlinico Umberto I;Sapienza University of Rome,Francesca De Felice,In Vivo,In Vivo,34,3 suppl,1613,1617,"BACKGROUND/AIM: To evaluate the research trends in coronavirus disease (COVID-19). MATERIALS AND METHODS: A bibliometric analysis was performed using a machine learning bibliometric methodology. Information regarding publication outputs, countries, institutions, journals, keywords, funding and citation counts was retrieved from Scopus database. RESULTS: A total of 1883 eligible papers were returned. An exponential increase in the COVID-19 publications occurred in the last months. As expected, China produced the majority of articles, followed by the United States of America, the United Kingdom and Italy. There is greater collaboration between highly contributing authors and institutions. The ""BMJ"" published the highest number of papers (n=129) and ""The Lancet"" had the most citations (n=1439). The most ubiquitous topic was COVID-19 clinical features. CONCLUSION: This bibliometric analysis presents the most influential references related to COVID-19 during this time and could be useful to improve understanding and management of COVID-19.",,Coronavirus disease 2019 (COVID-19);2019-20 coronavirus outbreak;Severe acute respiratory syndrome coronavirus 2 (SARS-CoV-2);Coronavirus;Pandemic;Virology;Disease;Coronavirus Infections;Betacoronavirus;Medicine;Computer science;Computational biology;Infectious disease (medical specialty);Biology;Outbreak;Pathology,https://openalex.org/W3003217347;https://openalex.org/W3003465021;https://openalex.org/W3004239190;https://openalex.org/W3004280078;https://openalex.org/W3004318991;https://openalex.org/W3008028633;https://openalex.org/W3014249633,OPENALEX,"Francesca De Felice, 2020, In Vivo","Francesca De Felice, 2020, In Vivo"
+Artificial intelligence and machine learning in finance: A bibliometric review,2022,review,en,415,10.1016/j.ribaf.2022.101646,https://openalex.org/W4224037372,,Shamima Ahmed;Muneer M. Alshater;Anis El Ammari;Helmi Hammami,Shamima Ahmed;Muneer M. Alshater;Anis El Ammari;Helmi Hammami,Philadelphia University;Liwa College;University of Monastir;École Supérieure de Commerce de Rennes,Shamima Ahmed,Research in International Business and Finance,Research in International Business and Finance,61,,101646,101646,,,Scopus;Bankruptcy;Big data;Corporate finance;China;Finance;Computational finance;Artificial intelligence;Computer science;Data science;Economics;Political science;Data mining;MEDLINE;Law,https://openalex.org/W623237932;https://openalex.org/W1678356000;https://openalex.org/W1949087994;https://openalex.org/W1964159032;https://openalex.org/W1977627101;https://openalex.org/W1982629662;https://openalex.org/W1983476407;https://openalex.org/W1986968751;https://openalex.org/W1991989348;https://openalex.org/W1995281062;https://openalex.org/W2000295574;https://openalex.org/W2005596732;https://openalex.org/W2020245109;https://openalex.org/W2048801439;https://openalex.org/W2071096576;https://openalex.org/W2078774137;https://openalex.org/W2085831731;https://openalex.org/W2103467996;https://openalex.org/W2105973145;https://openalex.org/W2121970262;https://openalex.org/W2124532504;https://openalex.org/W2124617452;https://openalex.org/W2125943170;https://openalex.org/W2126434678;https://openalex.org/W2150220236;https://openalex.org/W2161625377;https://openalex.org/W2275696275;https://openalex.org/W2490971013;https://openalex.org/W2510541067;https://openalex.org/W2580253239;https://openalex.org/W2598046176;https://openalex.org/W2604829436;https://openalex.org/W2605413713;https://openalex.org/W2743470191;https://openalex.org/W2755950973;https://openalex.org/W2767307339;https://openalex.org/W2790797354;https://openalex.org/W2791624324;https://openalex.org/W2801421082;https://openalex.org/W2918642940;https://openalex.org/W2937631243;https://openalex.org/W2938504806;https://openalex.org/W2979085846;https://openalex.org/W2980944511;https://openalex.org/W2991273648;https://openalex.org/W2992584342;https://openalex.org/W3001272657;https://openalex.org/W3003204057;https://openalex.org/W3004424255;https://openalex.org/W3033217760;https://openalex.org/W3036262830;https://openalex.org/W3045742910;https://openalex.org/W3047520959;https://openalex.org/W3081171087;https://openalex.org/W3094829982;https://openalex.org/W3107898512;https://openalex.org/W3108051016;https://openalex.org/W3111916360;https://openalex.org/W3121532596;https://openalex.org/W3121588992;https://openalex.org/W3121662370;https://openalex.org/W3121759971;https://openalex.org/W3121822240;https://openalex.org/W3122648113;https://openalex.org/W3126999983;https://openalex.org/W3128501064;https://openalex.org/W3128601027;https://openalex.org/W3133357608;https://openalex.org/W3135338132;https://openalex.org/W3156409915;https://openalex.org/W3160856016;https://openalex.org/W3181448069;https://openalex.org/W3198357836;https://openalex.org/W3204670277;https://openalex.org/W4231591459;https://openalex.org/W4286815637;https://openalex.org/W4404193242;https://openalex.org/W6637404493;https://openalex.org/W6646488788;https://openalex.org/W6675975338;https://openalex.org/W6695147765;https://openalex.org/W6735566887;https://openalex.org/W6749152699;https://openalex.org/W6776408548;https://openalex.org/W6786268635;https://openalex.org/W6786792165;https://openalex.org/W6787144041;https://openalex.org/W6789892906,OPENALEX,"Shamima Ahmed, 2022, Research in International Business and Finance","Shamima Ahmed, 2022, Research in International Business and Finance"
+"Artificial intelligence and machine learning in finance: Identifying foundations, themes, and research clusters from bibliometric analysis",2021,article,en,665,10.1016/j.jbef.2021.100577,https://openalex.org/W3198357836,,John W. Goodell;Satish Kumar;Weng Marc Lim;Debidutta Pattnaik,John W. Goodell;Satish Kumar;Weng Marc Lim;Debidutta Pattnaik,University of Akron;Malaviya National Institute of Technology Jaipur;Swinburne University of Technology Sarawak Campus;Swinburne University of Technology Sarawak Campus;Woxsen School of Business;Malaviya National Institute of Technology Jaipur,John W. Goodell,Journal of Behavioral and Experimental Finance,Journal of Behavioral and Experimental Finance,32,,100577,100577,,,Scholarship;Bibliographic coupling;Valuation (finance);Corporate finance;Finance;Citation;Portfolio;Artificial intelligence;Sociology;Economics;Computer science;Library science;Economic growth,https://openalex.org/W1565746575;https://openalex.org/W1648383461;https://openalex.org/W1963859450;https://openalex.org/W1968560054;https://openalex.org/W1970140636;https://openalex.org/W1970859146;https://openalex.org/W1975584591;https://openalex.org/W1995800062;https://openalex.org/W2004076523;https://openalex.org/W2005207065;https://openalex.org/W2005311637;https://openalex.org/W2015950201;https://openalex.org/W2021993444;https://openalex.org/W2028618347;https://openalex.org/W2033522691;https://openalex.org/W2035285495;https://openalex.org/W2048658075;https://openalex.org/W2051235345;https://openalex.org/W2064270391;https://openalex.org/W2064978316;https://openalex.org/W2069009481;https://openalex.org/W2071288491;https://openalex.org/W2076738050;https://openalex.org/W2077791698;https://openalex.org/W2078301133;https://openalex.org/W2078684405;https://openalex.org/W2083862258;https://openalex.org/W2085573882;https://openalex.org/W2090968438;https://openalex.org/W2093195672;https://openalex.org/W2094665138;https://openalex.org/W2095629301;https://openalex.org/W2113769477;https://openalex.org/W2124532504;https://openalex.org/W2131681506;https://openalex.org/W2131773668;https://openalex.org/W2132966115;https://openalex.org/W2136120210;https://openalex.org/W2145482038;https://openalex.org/W2147824299;https://openalex.org/W2149509893;https://openalex.org/W2154210517;https://openalex.org/W2158339117;https://openalex.org/W2171468534;https://openalex.org/W2172852798;https://openalex.org/W2222723904;https://openalex.org/W2222916728;https://openalex.org/W2232810130;https://openalex.org/W2275696275;https://openalex.org/W2297801999;https://openalex.org/W2346862349;https://openalex.org/W2492054430;https://openalex.org/W2521494838;https://openalex.org/W2529087958;https://openalex.org/W2553031590;https://openalex.org/W2557567230;https://openalex.org/W2574011124;https://openalex.org/W2593613340;https://openalex.org/W2602868873;https://openalex.org/W2610250061;https://openalex.org/W2735575534;https://openalex.org/W2740605354;https://openalex.org/W2762466482;https://openalex.org/W2790822776;https://openalex.org/W2794880420;https://openalex.org/W2802685835;https://openalex.org/W2807909115;https://openalex.org/W2810156540;https://openalex.org/W2884544303;https://openalex.org/W2888056875;https://openalex.org/W2897791100;https://openalex.org/W2904224565;https://openalex.org/W2906573737;https://openalex.org/W2911964244;https://openalex.org/W2947060296;https://openalex.org/W2957520325;https://openalex.org/W2963453445;https://openalex.org/W2963751193;https://openalex.org/W2973020765;https://openalex.org/W2983541357;https://openalex.org/W2994445360;https://openalex.org/W2996608372;https://openalex.org/W3000438457;https://openalex.org/W3000582720;https://openalex.org/W3003204057;https://openalex.org/W3013063141;https://openalex.org/W3013505582;https://openalex.org/W3015889394;https://openalex.org/W3022076500;https://openalex.org/W3023036503;https://openalex.org/W3034960190;https://openalex.org/W3036262830;https://openalex.org/W3038368984;https://openalex.org/W3039271964;https://openalex.org/W3081258743;https://openalex.org/W3086312560;https://openalex.org/W3089252064;https://openalex.org/W3092199418;https://openalex.org/W3092415316;https://openalex.org/W3093799916;https://openalex.org/W3093853589;https://openalex.org/W3096690806;https://openalex.org/W3099768174;https://openalex.org/W3120298458;https://openalex.org/W3121138196;https://openalex.org/W3121451803;https://openalex.org/W3121545263;https://openalex.org/W3121664121;https://openalex.org/W3122563224;https://openalex.org/W3122628491;https://openalex.org/W3122752921;https://openalex.org/W3122944446;https://openalex.org/W3123286026;https://openalex.org/W3123726371;https://openalex.org/W3123807607;https://openalex.org/W3125591525;https://openalex.org/W3125707221;https://openalex.org/W3125952890;https://openalex.org/W3126053622;https://openalex.org/W3126729572;https://openalex.org/W3126911807;https://openalex.org/W3128244637;https://openalex.org/W3129724093;https://openalex.org/W3131436671;https://openalex.org/W3134642500;https://openalex.org/W3145296828;https://openalex.org/W3160856016;https://openalex.org/W3185262611;https://openalex.org/W3196384457;https://openalex.org/W4205539948;https://openalex.org/W4206045084;https://openalex.org/W4211170237;https://openalex.org/W4214825689;https://openalex.org/W4231546411;https://openalex.org/W4247451115;https://openalex.org/W4255497883;https://openalex.org/W4287684164;https://openalex.org/W6601893370;https://openalex.org/W6695147765;https://openalex.org/W6723153376;https://openalex.org/W6741094427;https://openalex.org/W6749868668;https://openalex.org/W6754229210;https://openalex.org/W6754995310;https://openalex.org/W6767779838;https://openalex.org/W6770736415;https://openalex.org/W6776778857;https://openalex.org/W6788504199;https://openalex.org/W6789700754;https://openalex.org/W6791347996,OPENALEX,"John W. Goodell, 2021, Journal of Behavioral and Experimental Finance","John W. Goodell, 2021, Journal of Behavioral and Experimental Finance"
+Machine Learning for Mental Health in Social Media: Bibliometric Study,2021,review,en,134,10.2196/24870,https://openalex.org/W3135727734,33683209,Jina Kim;Daeun Lee;Eunil Park,Jina Kim;Daeun Lee;Eunil Park,Sungkyunkwan University;Sungkyunkwan University;Sungkyunkwan University,Jina Kim,Journal of Medical Internet Research,Journal of Medical Internet Research,23,3,e24870,e24870,"BACKGROUND: Social media platforms provide an easily accessible and time-saving communication approach for individuals with mental disorders compared to face-to-face meetings with medical providers. Recently, machine learning (ML)-based mental health exploration using large-scale social media data has attracted significant attention. OBJECTIVE: We aimed to provide a bibliometric analysis and discussion on research trends of ML for mental health in social media. METHODS: Publications addressing social media and ML in the field of mental health were retrieved from the Scopus and Web of Science databases. We analyzed the publication distribution to measure productivity on sources, countries, institutions, authors, and research subjects, and visualized the trends in this field using a keyword co-occurrence network. The research methodologies of previous studies with high citations are also thoroughly described. RESULTS: We obtained a total of 565 relevant papers published from 2015 to 2020. In the last 5 years, the number of publications has demonstrated continuous growth with Lecture Notes in Computer Science and Journal of Medical Internet Research as the two most productive sources based on Scopus and Web of Science records. In addition, notable methodological approaches with data resources presented in high-ranking publications were investigated. CONCLUSIONS: The results of this study highlight continuous growth in this research area. Moreover, we retrieved three main discussion points from a comprehensive overview of highly cited publications that provide new in-depth directions for both researchers and practitioners.",,Scopus;Social media;Mental health;The Internet;Ranking (information retrieval);Citation;Bibliometrics;Field (mathematics);Productivity;Computer science;Data science;Scale (ratio);Medical education;Psychology;World Wide Web;MEDLINE;Medicine;Information retrieval;Political science;Psychiatry;Economics;Macroeconomics;Physics;Quantum mechanics;Law;Mathematics;Pure mathematics,https://openalex.org/W1554040650;https://openalex.org/W2023136833;https://openalex.org/W2068264290;https://openalex.org/W2092598885;https://openalex.org/W2117699623;https://openalex.org/W2162051395;https://openalex.org/W2311329665;https://openalex.org/W2553776800;https://openalex.org/W2602628430;https://openalex.org/W2612630960;https://openalex.org/W2619542576;https://openalex.org/W2725890240;https://openalex.org/W2729540173;https://openalex.org/W2750994301;https://openalex.org/W2767870452;https://openalex.org/W2780483464;https://openalex.org/W2786077666;https://openalex.org/W2792479193;https://openalex.org/W2883944442;https://openalex.org/W2889391310;https://openalex.org/W2895763047;https://openalex.org/W2896750841;https://openalex.org/W2912581524;https://openalex.org/W2912654919;https://openalex.org/W2916048747;https://openalex.org/W2953301966;https://openalex.org/W2953532875;https://openalex.org/W2959711199;https://openalex.org/W2979610116;https://openalex.org/W2986704516;https://openalex.org/W2988595016;https://openalex.org/W2995608792;https://openalex.org/W2996219887;https://openalex.org/W3013908145;https://openalex.org/W3018892856;https://openalex.org/W3040470474;https://openalex.org/W3043553083,OPENALEX,"Jina Kim, 2021, Journal of Medical Internet Research","Jina Kim, 2021, Journal of Medical Internet Research"
+Big data analytics and machine learning: A retrospective overview and bibliometric analysis,2021,article,en,121,10.1016/j.eswa.2021.115561,https://openalex.org/W3181204626,,Zuopeng Zhang;Praveen Ranjan Srivastava;Dheeraj Sharma;Prajwal Eachempati,Zuopeng Zhang;Praveen Ranjan Srivastava;Dheeraj Sharma;Prajwal Eachempati,University of North Florida;Indian Institute of Management Rohtak;Indian Institute of Management Rohtak;University of North Florida,Zuopeng Zhang,Expert Systems with Applications,Expert Systems with Applications,184,,115561,115561,,,Big data;Scopus;Computer science;Data science;LEAPS;Bibliometrics;Learning analytics;Cluster (spacecraft);Analytics;Cloud computing;Cluster analysis;The Internet;Bibliographic coupling;Discipline;Sample (material);Data mining;World Wide Web;Artificial intelligence;Social science;Sociology;Citation;Political science;Chemistry;MEDLINE;Law;Economics;Programming language;Chromatography;Operating system;Financial economics,https://openalex.org/W40420203;https://openalex.org/W88484647;https://openalex.org/W626313615;https://openalex.org/W1494137514;https://openalex.org/W1601795611;https://openalex.org/W1663973292;https://openalex.org/W1755227063;https://openalex.org/W1774848501;https://openalex.org/W1911451788;https://openalex.org/W2007343074;https://openalex.org/W2015846187;https://openalex.org/W2021324335;https://openalex.org/W2024237844;https://openalex.org/W2064675550;https://openalex.org/W2066636486;https://openalex.org/W2098615148;https://openalex.org/W2101234009;https://openalex.org/W2105103777;https://openalex.org/W2110646369;https://openalex.org/W2120751691;https://openalex.org/W2136922672;https://openalex.org/W2141975087;https://openalex.org/W2159128662;https://openalex.org/W2165093166;https://openalex.org/W2171468534;https://openalex.org/W2171469118;https://openalex.org/W2173213060;https://openalex.org/W2191867853;https://openalex.org/W2261525379;https://openalex.org/W2302800291;https://openalex.org/W2340139852;https://openalex.org/W2404353601;https://openalex.org/W2412782625;https://openalex.org/W2486221806;https://openalex.org/W2487200295;https://openalex.org/W2508563792;https://openalex.org/W2540365088;https://openalex.org/W2574134800;https://openalex.org/W2574572133;https://openalex.org/W2578336118;https://openalex.org/W2586702902;https://openalex.org/W2590273312;https://openalex.org/W2598484699;https://openalex.org/W2606916050;https://openalex.org/W2614355139;https://openalex.org/W2693176153;https://openalex.org/W2740098507;https://openalex.org/W2747765175;https://openalex.org/W2751427740;https://openalex.org/W2752267564;https://openalex.org/W2755950973;https://openalex.org/W2762694993;https://openalex.org/W2768534111;https://openalex.org/W2772164149;https://openalex.org/W2785537869;https://openalex.org/W2799902558;https://openalex.org/W2896298459;https://openalex.org/W2898861515;https://openalex.org/W2900562530;https://openalex.org/W2906422317;https://openalex.org/W2913077324;https://openalex.org/W2922441867;https://openalex.org/W2945940803;https://openalex.org/W2950775047;https://openalex.org/W2951942892;https://openalex.org/W2953501988;https://openalex.org/W2955285339;https://openalex.org/W2965780400;https://openalex.org/W2969018281;https://openalex.org/W2973556997;https://openalex.org/W2973734499;https://openalex.org/W2974124990;https://openalex.org/W2974678924;https://openalex.org/W2976017899;https://openalex.org/W2977926554;https://openalex.org/W2979610116;https://openalex.org/W2985684656;https://openalex.org/W2989739077;https://openalex.org/W2990450011;https://openalex.org/W2996745037;https://openalex.org/W3000910650;https://openalex.org/W3001554335;https://openalex.org/W3004906665;https://openalex.org/W3007404761;https://openalex.org/W3011931926;https://openalex.org/W3013863638;https://openalex.org/W3024511269;https://openalex.org/W3028022888;https://openalex.org/W3039091139;https://openalex.org/W3042710080;https://openalex.org/W3046653697;https://openalex.org/W3080913451;https://openalex.org/W3121177474;https://openalex.org/W3122944446;https://openalex.org/W3123115705;https://openalex.org/W3123613287;https://openalex.org/W3140136943;https://openalex.org/W3150796314;https://openalex.org/W3175452479;https://openalex.org/W3186766739;https://openalex.org/W3193793166;https://openalex.org/W4285719527;https://openalex.org/W6602586656;https://openalex.org/W6624503512;https://openalex.org/W6631138889;https://openalex.org/W6637618429;https://openalex.org/W6675354045;https://openalex.org/W6676693144;https://openalex.org/W6713691922;https://openalex.org/W6741640790;https://openalex.org/W6756345613;https://openalex.org/W6764905802;https://openalex.org/W6768162700;https://openalex.org/W6768420565;https://openalex.org/W6780797579,OPENALEX,"Zuopeng Zhang, 2021, Expert Systems with Applications","Zuopeng Zhang, 2021, Expert Systems with Applications"
+The Impact of Machine Learning on Business Processes: A Bibliometric Analysis,2024,book-chapter,en,89,10.1007/978-3-031-73545-5_121,https://openalex.org/W4405131368,,Faisal Aburub;Sulieman Ibraheem Mohammad;Khaldoon Jahmani;Asokan Vasudevan;Ala’a M. Al-Momani;Firas Nawwaf Ibraheem Barhoom;Mohammad Motasem Alrfai;Mazen Alzyoud;Abdullah Ibrahim Mohammad,Faisal Aburub;Sulieman Ibraheem Mohammad;Khaldoon Jahmani;Asokan Vasudevan;Ala’a M. Al-Momani;Firas Nawwaf Ibraheem Barhoom;Mohammad Motasem Alrfai;Mazen Alzyoud;Abdullah Ibrahim Mohammad,Petra University;INTI International University;Zarqa University;Jadara University;INTI International University;Amman Arab University;Universiti Sains Malaysia;Irbid National University;Al al-Bayt University;Al-Balqa Applied University,Faisal Aburub,"Studies in systems, decision and control","Studies in systems, decision and control",,,1299,1309,,,Computer science,https://openalex.org/W2147371011;https://openalex.org/W3084813718;https://openalex.org/W3160856016;https://openalex.org/W3170725296;https://openalex.org/W4205141813;https://openalex.org/W4206929493;https://openalex.org/W4210285549;https://openalex.org/W4226213040;https://openalex.org/W4226216859;https://openalex.org/W4226296954;https://openalex.org/W4239059848;https://openalex.org/W4256671596;https://openalex.org/W4283793198;https://openalex.org/W4285224342;https://openalex.org/W4290755137;https://openalex.org/W4292959163;https://openalex.org/W4292959208;https://openalex.org/W4293214651;https://openalex.org/W4294636343;https://openalex.org/W4304606386;https://openalex.org/W4304606464;https://openalex.org/W4309040008;https://openalex.org/W4309582879;https://openalex.org/W4320011710;https://openalex.org/W4320149785;https://openalex.org/W4321499414;https://openalex.org/W4322733823;https://openalex.org/W4328024576;https://openalex.org/W4328024750;https://openalex.org/W4360778050;https://openalex.org/W4376622728;https://openalex.org/W4385671851;https://openalex.org/W4386010746;https://openalex.org/W4388004267;https://openalex.org/W4388029131;https://openalex.org/W4388180055;https://openalex.org/W4390747040;https://openalex.org/W4390747253;https://openalex.org/W4390974949;https://openalex.org/W4399087030;https://openalex.org/W4399087083;https://openalex.org/W4399087105;https://openalex.org/W4399087177;https://openalex.org/W4399087399;https://openalex.org/W4399087412;https://openalex.org/W4399109533;https://openalex.org/W4399250438;https://openalex.org/W4399250471;https://openalex.org/W4399250488;https://openalex.org/W4399250506;https://openalex.org/W4399250524;https://openalex.org/W4399250528;https://openalex.org/W4399260120;https://openalex.org/W4399260158;https://openalex.org/W4399260446;https://openalex.org/W4401388217;https://openalex.org/W4401388396;https://openalex.org/W4401388738;https://openalex.org/W4401389382;https://openalex.org/W4406593706;https://openalex.org/W4406593728;https://openalex.org/W4406593761;https://openalex.org/W4406593811;https://openalex.org/W4406593830;https://openalex.org/W4406593855;https://openalex.org/W4406593889;https://openalex.org/W4406677734;https://openalex.org/W4412586642;https://openalex.org/W4412616985;https://openalex.org/W4412616995;https://openalex.org/W4412617123;https://openalex.org/W4412617196,OPENALEX,"Faisal Aburub, 2024, Studies in systems, decision and control","Faisal Aburub, 2024, Studies in systems, decision and control"
+Applications of artificial intelligence and machine learning in the financial services industry: A bibliometric review,2023,review,en,113,10.1016/j.heliyon.2023.e23492,https://openalex.org/W4389670785,38187262,Debidutta Pattnaik;Sougata Ray;Raghu Raman,Debidutta Pattnaik;Sougata Ray;Raghu Raman,International Management Institute;International Management Institute;Amrita Vishwa Vidyapeetham,Debidutta Pattnaik,Heliyon,Heliyon,10,1,e23492,e23492,"This bibliometric review examines the research state of artificial intelligence (AI) and machine learning (ML) applications in the Banking, Financial Services, and Insurance (BFSI) sector. The study focuses on Scopus-indexed articles to identify key research clusters. Following the Preferred Reporting Items for Systematic Reviews and Meta-Analyses (PRISMA) protocol, 39,498 articles were screened, resulting in 1045 articles meeting the inclusion criteria. N-gram analysis identified 177 unique terms in the article titles and abstracts. Co-occurrence analysis revealed nine distinct clusters covering fintech, risk management, anti-money laundering, and actuarial science, among others. These clusters offer a comprehensive overview of the multifaceted research landscape. The identified clusters can guide future research and inform study design. Policymakers, researchers, and practitioners in the BFSI sector can benefit from the study's findings, which identify research gaps and opportunities. This study contributes to the growing literature on bibliometrics, providing insights into AI and ML applications in the BFSI sector. The findings have practical implications, advancing our understanding of AI and ML's role in benefiting academia and industry.",,Scopus;Bibliometrics;Financial services;Systematic review;Web of science;Original research;Computer science;Business;MEDLINE;Political science;Library science;Finance;Law,https://openalex.org/W1896042795;https://openalex.org/W1965577080;https://openalex.org/W1971757271;https://openalex.org/W2022605399;https://openalex.org/W2037378589;https://openalex.org/W2038295678;https://openalex.org/W2039526160;https://openalex.org/W2060249914;https://openalex.org/W2064648688;https://openalex.org/W2064946026;https://openalex.org/W2084582960;https://openalex.org/W2106997360;https://openalex.org/W2143297831;https://openalex.org/W2143723415;https://openalex.org/W2147448014;https://openalex.org/W2151044110;https://openalex.org/W2156742813;https://openalex.org/W2171656377;https://openalex.org/W2185896400;https://openalex.org/W2287059042;https://openalex.org/W2330735624;https://openalex.org/W2518773311;https://openalex.org/W2612196085;https://openalex.org/W2742460930;https://openalex.org/W2767795179;https://openalex.org/W2780299545;https://openalex.org/W2795321837;https://openalex.org/W2799494244;https://openalex.org/W2804327630;https://openalex.org/W2883964862;https://openalex.org/W2890434712;https://openalex.org/W2898505289;https://openalex.org/W2900285243;https://openalex.org/W2919652104;https://openalex.org/W2953178564;https://openalex.org/W2964266530;https://openalex.org/W2977520682;https://openalex.org/W2978896080;https://openalex.org/W2984254864;https://openalex.org/W3007615437;https://openalex.org/W3007883824;https://openalex.org/W3026280043;https://openalex.org/W3026650415;https://openalex.org/W3046629791;https://openalex.org/W3047230602;https://openalex.org/W3047520959;https://openalex.org/W3085053389;https://openalex.org/W3086924043;https://openalex.org/W3091163231;https://openalex.org/W3092542259;https://openalex.org/W3093195402;https://openalex.org/W3100431062;https://openalex.org/W3109489865;https://openalex.org/W3112354324;https://openalex.org/W3112896429;https://openalex.org/W3115683849;https://openalex.org/W3116796363;https://openalex.org/W3117086259;https://openalex.org/W3120298458;https://openalex.org/W3122739625;https://openalex.org/W3123594716;https://openalex.org/W3125211656;https://openalex.org/W3125328255;https://openalex.org/W3125895112;https://openalex.org/W3126288553;https://openalex.org/W3133970970;https://openalex.org/W3134008570;https://openalex.org/W3134642500;https://openalex.org/W3135152838;https://openalex.org/W3135420303;https://openalex.org/W3136631171;https://openalex.org/W3139261556;https://openalex.org/W3146142859;https://openalex.org/W3148740534;https://openalex.org/W3149488304;https://openalex.org/W3165478349;https://openalex.org/W3166472517;https://openalex.org/W3168104213;https://openalex.org/W3177828825;https://openalex.org/W3184840371;https://openalex.org/W3185964676;https://openalex.org/W3198357836;https://openalex.org/W3198495944;https://openalex.org/W3199461169;https://openalex.org/W3199592373;https://openalex.org/W3209643071;https://openalex.org/W3212160720;https://openalex.org/W3214758903;https://openalex.org/W4200236940;https://openalex.org/W4200247608;https://openalex.org/W4200333906;https://openalex.org/W4205145754;https://openalex.org/W4205200408;https://openalex.org/W4205359906;https://openalex.org/W4205781500;https://openalex.org/W4205844635;https://openalex.org/W4207027020;https://openalex.org/W4210669237;https://openalex.org/W4210859647;https://openalex.org/W4213415872;https://openalex.org/W4220755099;https://openalex.org/W4220905253;https://openalex.org/W4220968399;https://openalex.org/W4221044666;https://openalex.org/W4224272950;https://openalex.org/W4225143248;https://openalex.org/W4229375993;https://openalex.org/W4280617747;https://openalex.org/W4281256213;https://openalex.org/W4281651535;https://openalex.org/W4281712444;https://openalex.org/W4281858363;https://openalex.org/W4281878156;https://openalex.org/W4286267577;https://openalex.org/W4288073997;https://openalex.org/W4313478940;https://openalex.org/W4323928863;https://openalex.org/W4385155135;https://openalex.org/W4385579627;https://openalex.org/W4385732811;https://openalex.org/W4386246508;https://openalex.org/W6643206498;https://openalex.org/W6685233297;https://openalex.org/W6755670483;https://openalex.org/W6781267923;https://openalex.org/W6787097816;https://openalex.org/W6804571031;https://openalex.org/W6806029913;https://openalex.org/W6838752380;https://openalex.org/W6840134568;https://openalex.org/W7029865937,OPENALEX,"Debidutta Pattnaik, 2023, Heliyon","Debidutta Pattnaik, 2023, Heliyon"
+Research hotspot and trend analysis in the diagnosis of inflammatory bowel disease: A machine learning bibliometric analysis from 2012 to 2021,2022,article,en,37,10.3389/fimmu.2022.972079,https://openalex.org/W4295564163,36189197,Chuan Liu;Rong Yu;Jixiang Zhang;Shuchun Wei;Fumin Xue;Yingyun Guo;Pengzhan He;Lining Shang;Weiguo Dong,Chuan Liu;Rong Yu;Jixiang Zhang;Shuchun Wei;Fumin Xue;Yingyun Guo;Pengzhan He;Lining Shang;Weiguo Dong,Wuhan University;Renmin Hospital of Wuhan University;Wuhan University;Renmin Hospital of Wuhan University;Wuhan University;Renmin Hospital of Wuhan University;Wuhan University;Renmin Hospital of Wuhan University;Zhengzhou University;Zhengzhou Children's Hospital;Wuhan University;Renmin Hospital of Wuhan University;Wuhan University;Renmin Hospital of Wuhan University;117th Hospital of People's Liberation Army;Chinese People's Liberation Army;Wuhan University;Renmin Hospital of Wuhan University,Chuan Liu,Frontiers in Immunology,Frontiers in Immunology,13,,972079,972079,"Aims: This study aimed to conduct a bibliometric analysis of the relevant literature on the diagnosis of inflammatory bowel disease (IBD), and show its current status, hot spots, and development trends. Methods: The literature on IBD diagnosis was acquired from the Science Citation Index Expanded of the Web of Science Core Collection. Co-occurrence and cooperation relationship analysis of authors, institutions, countries, journals, references, and keywords in the literature were carried out through CiteSpace software and the Online Analysis platform of Literature Metrology. At the same time, the relevant knowledge maps were drawn, and the keywords cluster analysis and emergence analysis were performed. Results: 14,742 related articles were included, showing that the number of articles in this field has increased in recent years. The results showed that PEYRIN-BIROULET L from the University Hospital of Nancy-Brabois was the author with the most cumulative number of articles. The institution with the most articles was Mayo Clin, and the United States was far ahead in the article output and had a dominant role. Keywords analysis showed that there was a total of 818 keywords, which were mainly focused on the research of related diseases caused or coexisted by IBD, such as colorectal cancer and autoimmune diseases, and the diagnosis and treatment methods of IBD. Emerging analysis showed that future research hotspots and trends might be the treatment of IBD and precision medicine. Conclusion: This research was the first bibliometric analysis of publications in the field of IBD diagnosis using visualization software and data information mining, and obtained the current status, hotspots, and development of this field. The future research hotspot might be the precision medicine of IBD, and the mechanism needed to be explored in depth to provide a theoretical basis for its clinical application.",,Inflammatory bowel disease;Bibliometrics;Web of science;Medicine;Citation analysis;Science Citation Index;Disease;Inflammatory Bowel Diseases;Citation;Data science;Library science;Pathology;Computer science;Meta-analysis,https://openalex.org/W1521478692;https://openalex.org/W1547943993;https://openalex.org/W1549889185;https://openalex.org/W1927464939;https://openalex.org/W1945170588;https://openalex.org/W1971571303;https://openalex.org/W1973532288;https://openalex.org/W1979184889;https://openalex.org/W1979692160;https://openalex.org/W1983046204;https://openalex.org/W1983521971;https://openalex.org/W1983675676;https://openalex.org/W1984922769;https://openalex.org/W2004608617;https://openalex.org/W2015336843;https://openalex.org/W2020581972;https://openalex.org/W2022310238;https://openalex.org/W2035742267;https://openalex.org/W2047208232;https://openalex.org/W2057141381;https://openalex.org/W2074237094;https://openalex.org/W2077187057;https://openalex.org/W2082603871;https://openalex.org/W2105857910;https://openalex.org/W2132631086;https://openalex.org/W2141670388;https://openalex.org/W2147601118;https://openalex.org/W2182578492;https://openalex.org/W2192243577;https://openalex.org/W2345534034;https://openalex.org/W2399617849;https://openalex.org/W2463821702;https://openalex.org/W2489043195;https://openalex.org/W2511893521;https://openalex.org/W2536753757;https://openalex.org/W2573160687;https://openalex.org/W2594589478;https://openalex.org/W2604695899;https://openalex.org/W2736113009;https://openalex.org/W2738099263;https://openalex.org/W2766046358;https://openalex.org/W2811014713;https://openalex.org/W2833021694;https://openalex.org/W2888061430;https://openalex.org/W2891254452;https://openalex.org/W2899460086;https://openalex.org/W2901589202;https://openalex.org/W2902428922;https://openalex.org/W2910890040;https://openalex.org/W2911864255;https://openalex.org/W2944052939;https://openalex.org/W2945296140;https://openalex.org/W2964195342;https://openalex.org/W2988829901;https://openalex.org/W3003805058;https://openalex.org/W3007279380;https://openalex.org/W3036284786;https://openalex.org/W3045010464;https://openalex.org/W3047314519;https://openalex.org/W3119499431;https://openalex.org/W3130073663;https://openalex.org/W3136532060;https://openalex.org/W3157971178;https://openalex.org/W3159023541;https://openalex.org/W3160502707;https://openalex.org/W3164095857;https://openalex.org/W3183907644;https://openalex.org/W3207530308;https://openalex.org/W3207562633;https://openalex.org/W4200087325;https://openalex.org/W4200382227;https://openalex.org/W4200473181;https://openalex.org/W4211138554;https://openalex.org/W4238591974;https://openalex.org/W4250842626;https://openalex.org/W4281672764;https://openalex.org/W6640614079,OPENALEX,"Chuan Liu, 2022, Frontiers in Immunology","Chuan Liu, 2022, Frontiers in Immunology"
+Machine learning applications for sustainable manufacturing: a bibliometric-based review for future research,2021,review,en,97,10.1108/jeim-09-2020-0361,https://openalex.org/W3158613175,,Anbesh Jamwal;Rajeev Agrawal;Monica Sharma;Anil Kumar;Prof Vikas Kumar;Jose Arturo Garza‐Reyes,Anbesh Jamwal;Rajeev Agrawal;Monica Sharma;Anil Kumar;Prof Vikas Kumar;Jose Arturo Garza‐Reyes,Malaviya National Institute of Technology Jaipur;Malaviya National Institute of Technology Jaipur;Malaviya National Institute of Technology Jaipur;London Metropolitan University;University of the West of England;University of Derby,Anbesh Jamwal,Journal of Enterprise Information Management,Journal of Enterprise Information Management,35,2,566,596,"Purpose The role of data analytics is significantly important in manufacturing industries as it holds the key to address sustainability challenges and handle the large amount of data generated from different types of manufacturing operations. The present study, therefore, aims to conduct a systematic and bibliometric-based review in the applications of machine learning (ML) techniques for sustainable manufacturing (SM). Design/methodology/approach In the present study, the authors use a bibliometric review approach that is focused on the statistical analysis of published scientific documents with an unbiased objective of the current status and future research potential of ML applications in sustainable manufacturing. Findings The present study highlights how manufacturing industries can benefit from ML techniques when applied to address SM issues. Based on the findings, a ML-SM framework is proposed. The framework will be helpful to researchers, policymakers and practitioners to provide guidelines on the successful management of SM practices. Originality/value A comprehensive and bibliometric review of opportunities for ML techniques in SM with a framework is still limited in the available literature. This study addresses the bibliometric analysis of ML applications in SM, which further adds to the originality.",,Originality;Sustainability;Analytics;Bibliometrics;Management science;Computer science;Data science;Engineering;Knowledge management;Process management;Data mining;Sociology;Social science;Biology;Qualitative research;Ecology,https://openalex.org/W1117743625;https://openalex.org/W1975428977;https://openalex.org/W1978611080;https://openalex.org/W1982445933;https://openalex.org/W2015550419;https://openalex.org/W2024983677;https://openalex.org/W2028372401;https://openalex.org/W2028837775;https://openalex.org/W2056499735;https://openalex.org/W2061724928;https://openalex.org/W2067835942;https://openalex.org/W2069423954;https://openalex.org/W2094189035;https://openalex.org/W2098953300;https://openalex.org/W2129924558;https://openalex.org/W2133658853;https://openalex.org/W2155132830;https://openalex.org/W2163743285;https://openalex.org/W2190869063;https://openalex.org/W2276201574;https://openalex.org/W2303531378;https://openalex.org/W2366778135;https://openalex.org/W2464234006;https://openalex.org/W2531224885;https://openalex.org/W2551343411;https://openalex.org/W2574375405;https://openalex.org/W2601486059;https://openalex.org/W2742516448;https://openalex.org/W2758606443;https://openalex.org/W2763846966;https://openalex.org/W2788989613;https://openalex.org/W2791288760;https://openalex.org/W2808847377;https://openalex.org/W2885831476;https://openalex.org/W2890098390;https://openalex.org/W2891387304;https://openalex.org/W2905864531;https://openalex.org/W2916460808;https://openalex.org/W2947402339;https://openalex.org/W2947788863;https://openalex.org/W2963296061;https://openalex.org/W2965501895;https://openalex.org/W2968279542;https://openalex.org/W2969750664;https://openalex.org/W2990079491;https://openalex.org/W3004548543;https://openalex.org/W3007397514;https://openalex.org/W3033629518;https://openalex.org/W3036992121;https://openalex.org/W3039091875;https://openalex.org/W3039465098;https://openalex.org/W3039627084;https://openalex.org/W3041975366;https://openalex.org/W3042971228;https://openalex.org/W3048281029;https://openalex.org/W3113379038;https://openalex.org/W3115033935;https://openalex.org/W3120619572;https://openalex.org/W3125505924;https://openalex.org/W4211163385,OPENALEX,"Anbesh Jamwal, 2021, Journal of Enterprise Information Management","Anbesh Jamwal, 2021, Journal of Enterprise Information Management"
+Digital transformation in tourism: bibliometric literature review based on machine learning approach,2023,article,en,96,10.1108/ejim-09-2022-0531,https://openalex.org/W4361299052,,Peter Madzík;Lukáš Falát;Lukáš Copuš;Marco Valeri,Peter Madzík;Lukáš Falát;Lukáš Copuš;Marco Valeri,Comenius University Bratislava;University of Žilina;Comenius University Bratislava;University Niccolò Cusano,Peter Madzík,European Journal of Innovation Management,European Journal of Innovation Management,26,7,177,205,"Purpose This bibliometric study provides an overview of research related to digital transformation (DT) in the tourism industry from 2013 to 2022. The goals of the research are as follows: (1) to identify the development of academic papers related to DT in the tourism industry, (2) to analyze dominant research topics and the development of research interest and research impact over time and (3) to analyze the change in research topics during the pandemic. Design/methodology/approach In this study, the authors processed 3,683 papers retrieved from the Web of Science and Scopus. The authors performed different types of bibliometric analyses to identify the development of papers related to DT in the tourism industry. To reveal latent topics, the authors implemented topic modeling based on latent Dirichlet allocation with Gibbs sampling. Findings The authors identified eight topics related to DT in the tourism industry: City and urban planning, Social media, Data analytics, Sustainable and economic development, Technology-based experience and interaction, Cultural heritage, Digital destination marketing and Smart tourism management. The authors also identified seven topics related to DT in the tourism industry during the Covid-19 pandemic; the largest ones are smart analytics, marketing strategies and sustainability. Originality/value To identify research topics and their development over time, the authors applied a novel methodological approach – a smart literature review. This machine learning approach is able to analyze a huge amount of documents. At the same time, it can also identify topics that would remain unrevealed by a standard bibliometric analysis.",,Latent Dirichlet allocation;Originality;Tourism;Scopus;Topic model;Social media;Digital transformation;Analytics;Data science;Bibliometrics;Computer science;Knowledge management;Marketing;Sociology;Business;Political science;World Wide Web;Social science;Qualitative research;Artificial intelligence;Law;MEDLINE,https://openalex.org/W202426229;https://openalex.org/W623754725;https://openalex.org/W1084343582;https://openalex.org/W1609508549;https://openalex.org/W1826077916;https://openalex.org/W1965001395;https://openalex.org/W1977821585;https://openalex.org/W1985691092;https://openalex.org/W1986297682;https://openalex.org/W2040915741;https://openalex.org/W2044734026;https://openalex.org/W2059979238;https://openalex.org/W2063904661;https://openalex.org/W2069781291;https://openalex.org/W2077407395;https://openalex.org/W2089199234;https://openalex.org/W2108680868;https://openalex.org/W2133260307;https://openalex.org/W2143250669;https://openalex.org/W2148535836;https://openalex.org/W2150220236;https://openalex.org/W2158804744;https://openalex.org/W2161374186;https://openalex.org/W2265611211;https://openalex.org/W2284774080;https://openalex.org/W2476338024;https://openalex.org/W2499940354;https://openalex.org/W2534913524;https://openalex.org/W2567052792;https://openalex.org/W2574989679;https://openalex.org/W2606875775;https://openalex.org/W2613620747;https://openalex.org/W2735332871;https://openalex.org/W2747564439;https://openalex.org/W2768455259;https://openalex.org/W2771359204;https://openalex.org/W2772812561;https://openalex.org/W2783264548;https://openalex.org/W2785926151;https://openalex.org/W2790148163;https://openalex.org/W2884365163;https://openalex.org/W2900951404;https://openalex.org/W2902513771;https://openalex.org/W2903375072;https://openalex.org/W2908815325;https://openalex.org/W2909796576;https://openalex.org/W2912800036;https://openalex.org/W2917486745;https://openalex.org/W2937594066;https://openalex.org/W2962686197;https://openalex.org/W2970135849;https://openalex.org/W2974541658;https://openalex.org/W2978346165;https://openalex.org/W2990436242;https://openalex.org/W2991179304;https://openalex.org/W3017089210;https://openalex.org/W3020637112;https://openalex.org/W3028352916;https://openalex.org/W3033915886;https://openalex.org/W3035276234;https://openalex.org/W3035597798;https://openalex.org/W3037591541;https://openalex.org/W3038273726;https://openalex.org/W3043590597;https://openalex.org/W3091831113;https://openalex.org/W3092336047;https://openalex.org/W3094868074;https://openalex.org/W3095898096;https://openalex.org/W3105556866;https://openalex.org/W3108703075;https://openalex.org/W3118615836;https://openalex.org/W3131635118;https://openalex.org/W3155924591;https://openalex.org/W3163089655;https://openalex.org/W3192110884;https://openalex.org/W3198752715;https://openalex.org/W3208276111;https://openalex.org/W3208843561;https://openalex.org/W3213644999;https://openalex.org/W4221129123;https://openalex.org/W4230471757;https://openalex.org/W4255846079;https://openalex.org/W4281720136;https://openalex.org/W4282961548;https://openalex.org/W4283155197;https://openalex.org/W4283163087;https://openalex.org/W4283219953;https://openalex.org/W4283575946;https://openalex.org/W4283587087;https://openalex.org/W4283808859;https://openalex.org/W4291270656;https://openalex.org/W4293235962;https://openalex.org/W4296285773;https://openalex.org/W4302990361;https://openalex.org/W4306382498;https://openalex.org/W4393175063;https://openalex.org/W6650853526,OPENALEX,"Peter Madzík, 2023, European Journal of Innovation Management","Peter Madzík, 2023, European Journal of Innovation Management"
+Machine Learning and Artificial Intelligence in Circular Economy: A Bibliometric Analysis and Systematic Literature Review,2022,article,en,108,10.33166/aetic.2022.02.002,https://openalex.org/W4225394315,,Abdulla All Noman;Umma Habiba Akter;Tahmid Hasan Pranto;AKM Bahalul Haque,Abdulla All Noman;Umma Habiba Akter;Tahmid Hasan Pranto;AKM Bahalul Haque,North South University;North South University;North South University;Lappeenranta-Lahti University of Technology,Abdulla All Noman,Annals of Emerging Technologies in Computing,Annals of Emerging Technologies in Computing,6,2,13,40,"With unorganized, unplanned and improper use of limited raw materials, an abundant amount of waste is being produced, which is harmful to our environment and ecosystem. While traditional linear production lines fail to address far-reaching issues like waste production and a shorter product life cycle, a prospective concept, namely circular economy (CE), has shown promising prospects to be adopted at industrial and governmental levels. CE aims to complete the product life cycle loop by bringing out the highest values from raw materials in the design phase and later on by reusing, recycling, and remanufacturing. Innovative technologies like artificial intelligence (AI) and machine learning(ML) provide vital assistance in effectively adopting and implementing CE in real-world practices. This study explores the adoption and integration of applied AI techniques in CE. First, we conducted bibliometric analysis on a collection of 104 SCOPUS indexed documents exploring the critical research criteria in AI and CE. Forty papers were picked to conduct a systematic literature review from these documents. The selected documents were further divided into six categories: sustainable development, reverse logistics, waste management, supply chain management, recycle & reuse, and manufacturing development. Comprehensive research insights and trends have been extracted and delineated. Finally, the research gap needing further attention has been identified and the future research directions have also been discussed.",,Remanufacturing;Reuse;Circular economy;Scopus;Product (mathematics);Reverse logistics;Life-cycle assessment;Supply chain;Computer science;Production (economics);New product development;Business;Artificial intelligence;Manufacturing engineering;Engineering;Marketing;Waste management;Economics;Political science;Mathematics;Law;Ecology;Macroeconomics;Geometry;Biology;MEDLINE,https://openalex.org/W129336749;https://openalex.org/W1021000864;https://openalex.org/W1539532232;https://openalex.org/W1565680682;https://openalex.org/W1732240353;https://openalex.org/W1980757397;https://openalex.org/W1981678541;https://openalex.org/W1982564000;https://openalex.org/W1984377442;https://openalex.org/W2032093585;https://openalex.org/W2077139171;https://openalex.org/W2168155916;https://openalex.org/W2173791728;https://openalex.org/W2198256821;https://openalex.org/W2303531378;https://openalex.org/W2520668169;https://openalex.org/W2565277564;https://openalex.org/W2592734766;https://openalex.org/W2735575534;https://openalex.org/W2736219668;https://openalex.org/W2745880093;https://openalex.org/W2753436765;https://openalex.org/W2756283300;https://openalex.org/W2756966076;https://openalex.org/W2890522215;https://openalex.org/W2897570098;https://openalex.org/W2903445525;https://openalex.org/W2913927778;https://openalex.org/W2919810952;https://openalex.org/W2939663913;https://openalex.org/W2947011708;https://openalex.org/W2949138301;https://openalex.org/W2952577115;https://openalex.org/W2955437544;https://openalex.org/W2966506874;https://openalex.org/W2966648806;https://openalex.org/W2970869624;https://openalex.org/W2972579622;https://openalex.org/W2987161473;https://openalex.org/W2987691368;https://openalex.org/W2998431313;https://openalex.org/W2998585003;https://openalex.org/W3011287826;https://openalex.org/W3013727784;https://openalex.org/W3014334385;https://openalex.org/W3014341985;https://openalex.org/W3016773298;https://openalex.org/W3017795897;https://openalex.org/W3020159756;https://openalex.org/W3021483748;https://openalex.org/W3021514663;https://openalex.org/W3022158042;https://openalex.org/W3028508503;https://openalex.org/W3033849459;https://openalex.org/W3036543018;https://openalex.org/W3039480138;https://openalex.org/W3042647574;https://openalex.org/W3082897346;https://openalex.org/W3089215304;https://openalex.org/W3089649929;https://openalex.org/W3091532666;https://openalex.org/W3092150212;https://openalex.org/W3094805524;https://openalex.org/W3097839885;https://openalex.org/W3100920799;https://openalex.org/W3108884865;https://openalex.org/W3110398427;https://openalex.org/W3110857549;https://openalex.org/W3111762745;https://openalex.org/W3114749054;https://openalex.org/W3118633827;https://openalex.org/W3118670782;https://openalex.org/W3122358591;https://openalex.org/W3122790749;https://openalex.org/W3129523205;https://openalex.org/W3130026625;https://openalex.org/W3130226006;https://openalex.org/W3131122480;https://openalex.org/W3132330847;https://openalex.org/W3134388662;https://openalex.org/W3135028703;https://openalex.org/W3135798940;https://openalex.org/W3137357157;https://openalex.org/W3139411728;https://openalex.org/W3143158417;https://openalex.org/W3146907769;https://openalex.org/W3147956902;https://openalex.org/W3148451833;https://openalex.org/W3158947599;https://openalex.org/W3161815634;https://openalex.org/W3162044998;https://openalex.org/W3168614558;https://openalex.org/W3169653105;https://openalex.org/W3170077347;https://openalex.org/W3171226157;https://openalex.org/W3172997754;https://openalex.org/W3202972492;https://openalex.org/W4229597643;https://openalex.org/W4234321069;https://openalex.org/W4251359136;https://openalex.org/W4252562554;https://openalex.org/W4285542071;https://openalex.org/W4307061405;https://openalex.org/W4312278356,OPENALEX,"Abdulla All Noman, 2022, Annals of Emerging Technologies in Computing","Abdulla All Noman, 2022, Annals of Emerging Technologies in Computing"
+Machine-Learning-Based Disease Diagnosis: A Comprehensive Review,2022,review,en,553,10.3390/healthcare10030541,https://openalex.org/W4220862305,35327018,Md Manjurul Ahsan;Shahana Akter Luna;Zahed Siddique,Md Manjurul Ahsan;Shahana Akter Luna;Zahed Siddique,University of Oklahoma;Dhaka Medical College and Hospital;University of Oklahoma,Md Manjurul Ahsan,Healthcare,Healthcare,10,3,541,541,"Globally, there is a substantial unmet need to diagnose various diseases effectively. The complexity of the different disease mechanisms and underlying symptoms of the patient population presents massive challenges in developing the early diagnosis tool and effective treatment. Machine learning (ML), an area of artificial intelligence (AI), enables researchers, physicians, and patients to solve some of these issues. Based on relevant research, this review explains how machine learning (ML) is being used to help in the early identification of numerous diseases. Initially, a bibliometric analysis of the publication is carried out using data from the Scopus and Web of Science (WOS) databases. The bibliometric study of 1216 publications was undertaken to determine the most prolific authors, nations, organizations, and most cited articles. The review then summarizes the most recent trends and approaches in machine-learning-based disease diagnosis (MLBDD), considering the following factors: algorithm, disease types, data type, application, and evaluation metrics. Finally, in this paper, we highlight key results and provides insight into future trends and opportunities in the MLBDD area.",,Scopus;Machine learning;Artificial intelligence;Computer science;Identification (biology);Disease;Web of science;Data science;MEDLINE;Medicine;Pathology;Meta-analysis;Law;Biology;Botany;Political science,https://openalex.org/W807187018;https://openalex.org/W1075124913;https://openalex.org/W1536883614;https://openalex.org/W1581627189;https://openalex.org/W1965746216;https://openalex.org/W1967320885;https://openalex.org/W1978639885;https://openalex.org/W1994670735;https://openalex.org/W2014418634;https://openalex.org/W2041677347;https://openalex.org/W2060947741;https://openalex.org/W2061079740;https://openalex.org/W2069914810;https://openalex.org/W2073052156;https://openalex.org/W2092594036;https://openalex.org/W2113325369;https://openalex.org/W2114536962;https://openalex.org/W2126414602;https://openalex.org/W2129374946;https://openalex.org/W2168490582;https://openalex.org/W2169384781;https://openalex.org/W2182573986;https://openalex.org/W2203920572;https://openalex.org/W2283772232;https://openalex.org/W2370924594;https://openalex.org/W2408866005;https://openalex.org/W2466438457;https://openalex.org/W2533982810;https://openalex.org/W2559256361;https://openalex.org/W2561962159;https://openalex.org/W2573624449;https://openalex.org/W2588755956;https://openalex.org/W2611248927;https://openalex.org/W2620540240;https://openalex.org/W2621028221;https://openalex.org/W2736804899;https://openalex.org/W2744692634;https://openalex.org/W2748902594;https://openalex.org/W2749212198;https://openalex.org/W2750178884;https://openalex.org/W2752073414;https://openalex.org/W2766920682;https://openalex.org/W2781824996;https://openalex.org/W2800028583;https://openalex.org/W2800197878;https://openalex.org/W2805394410;https://openalex.org/W2806091641;https://openalex.org/W2848154351;https://openalex.org/W2885568874;https://openalex.org/W2886034601;https://openalex.org/W2889556559;https://openalex.org/W2894660534;https://openalex.org/W2895906293;https://openalex.org/W2899479069;https://openalex.org/W2906622753;https://openalex.org/W2920853473;https://openalex.org/W2939881857;https://openalex.org/W2942594154;https://openalex.org/W2943491685;https://openalex.org/W2949574507;https://openalex.org/W2949767632;https://openalex.org/W2965858371;https://openalex.org/W2967240347;https://openalex.org/W2969822717;https://openalex.org/W2977192698;https://openalex.org/W2979164675;https://openalex.org/W2995209114;https://openalex.org/W2995942064;https://openalex.org/W3000707849;https://openalex.org/W3001481174;https://openalex.org/W3005486005;https://openalex.org/W3010274200;https://openalex.org/W3011149445;https://openalex.org/W3011921457;https://openalex.org/W3013507463;https://openalex.org/W3013601031;https://openalex.org/W3016610966;https://openalex.org/W3017382074;https://openalex.org/W3017644243;https://openalex.org/W3018492956;https://openalex.org/W3018662283;https://openalex.org/W3019449959;https://openalex.org/W3021399285;https://openalex.org/W3025200925;https://openalex.org/W3033712884;https://openalex.org/W3033721673;https://openalex.org/W3033732377;https://openalex.org/W3035162004;https://openalex.org/W3036032735;https://openalex.org/W3036552116;https://openalex.org/W3037666819;https://openalex.org/W3041936671;https://openalex.org/W3042127975;https://openalex.org/W3047434002;https://openalex.org/W3047700074;https://openalex.org/W3081746618;https://openalex.org/W3085331204;https://openalex.org/W3089651655;https://openalex.org/W3091940685;https://openalex.org/W3094329596;https://openalex.org/W3094377101;https://openalex.org/W3094910079;https://openalex.org/W3096802791;https://openalex.org/W3096956107;https://openalex.org/W3100981678;https://openalex.org/W3105081694;https://openalex.org/W3109097605;https://openalex.org/W3112328469;https://openalex.org/W3127668365;https://openalex.org/W3131806186;https://openalex.org/W3135243128;https://openalex.org/W3138980969;https://openalex.org/W3162351260;https://openalex.org/W3165688482;https://openalex.org/W3173933139;https://openalex.org/W3175644683;https://openalex.org/W3177781640;https://openalex.org/W3185256938;https://openalex.org/W3191228666;https://openalex.org/W3194248593;https://openalex.org/W3195607207;https://openalex.org/W3198350258;https://openalex.org/W3199499508;https://openalex.org/W3200191661;https://openalex.org/W3200757042;https://openalex.org/W3202272080;https://openalex.org/W4211214771;https://openalex.org/W4225632040;https://openalex.org/W4244895750;https://openalex.org/W4245025224;https://openalex.org/W4246554954;https://openalex.org/W6714245873;https://openalex.org/W6732181618;https://openalex.org/W6752007736;https://openalex.org/W6782621685;https://openalex.org/W6784883126,OPENALEX,"Md Manjurul Ahsan, 2022, Healthcare","Md Manjurul Ahsan, 2022, Healthcare"
+Drones in agriculture: A review and bibliometric analysis,2022,review,en,652,10.1016/j.compag.2022.107017,https://openalex.org/W4280610169,,Abderahman Rejeb;Alireza Abdollahi;Karim Rejeb;Horst Treiblmaier,Abderahman Rejeb;Alireza Abdollahi;Karim Rejeb;Horst Treiblmaier,University of Rome Tor Vergata;Kharazmi University;University of Carthage;MODUL University Vienna,Abderahman Rejeb,Computers and Electronics in Agriculture,Computers and Electronics in Agriculture,198,,107017,107017,"Drones, also called Unmanned Aerial Vehicles (UAV), have witnessed a remarkable development in recent decades. In agriculture, they have changed farming practices by offering farmers substantial cost savings, increased operational efficiency, and better profitability. Over the past decades, the topic of agricultural drones has attracted remarkable academic attention. We therefore conduct a comprehensive review based on bibliometrics to summarize and structure existing academic literature and reveal current research trends and hotspots. We apply bibliometric techniques and analyze the literature surrounding agricultural drones to summarize and assess previous research. Our analysis indicates that remote sensing, precision agriculture, deep learning, machine learning, and the Internet of Things are critical topics related to agricultural drones. The co-citation analysis reveals six broad research clusters in the literature. This study is one of the first attempts to summarize drone research in agriculture and suggest future research directions.",,Drone;Bibliometrics;Agriculture;Citation;Data science;Precision agriculture;Profitability index;Computer science;Geography;Business;Library science;Archaeology;Genetics;Finance;Biology,https://openalex.org/W30209551;https://openalex.org/W82576261;https://openalex.org/W982801857;https://openalex.org/W1123106775;https://openalex.org/W1200922351;https://openalex.org/W1442930683;https://openalex.org/W1462825729;https://openalex.org/W1518672027;https://openalex.org/W1559528524;https://openalex.org/W1577297395;https://openalex.org/W1594573182;https://openalex.org/W1645840676;https://openalex.org/W1848144067;https://openalex.org/W1871840861;https://openalex.org/W1955749066;https://openalex.org/W1966538856;https://openalex.org/W1966579280;https://openalex.org/W1968314959;https://openalex.org/W1968565953;https://openalex.org/W1969234587;https://openalex.org/W1978331315;https://openalex.org/W1979086491;https://openalex.org/W1979329989;https://openalex.org/W1980140622;https://openalex.org/W1980467157;https://openalex.org/W1985345354;https://openalex.org/W1989600108;https://openalex.org/W1991739869;https://openalex.org/W1996933319;https://openalex.org/W2002008272;https://openalex.org/W2005207065;https://openalex.org/W2005404611;https://openalex.org/W2006588449;https://openalex.org/W2009918649;https://openalex.org/W2012816307;https://openalex.org/W2016718980;https://openalex.org/W2019400639;https://openalex.org/W2022193520;https://openalex.org/W2030083859;https://openalex.org/W2030843614;https://openalex.org/W2039409148;https://openalex.org/W2040403200;https://openalex.org/W2042553430;https://openalex.org/W2054397552;https://openalex.org/W2055186043;https://openalex.org/W2059862423;https://openalex.org/W2062982970;https://openalex.org/W2063472265;https://openalex.org/W2064636932;https://openalex.org/W2068139671;https://openalex.org/W2069209512;https://openalex.org/W2071190035;https://openalex.org/W2071427061;https://openalex.org/W2071525319;https://openalex.org/W2072611758;https://openalex.org/W2072866698;https://openalex.org/W2074464158;https://openalex.org/W2080091930;https://openalex.org/W2082278455;https://openalex.org/W2085635066;https://openalex.org/W2087991080;https://openalex.org/W2097536090;https://openalex.org/W2103911239;https://openalex.org/W2110562193;https://openalex.org/W2116277900;https://openalex.org/W2117007244;https://openalex.org/W2119059400;https://openalex.org/W2122348296;https://openalex.org/W2129047267;https://openalex.org/W2129936978;https://openalex.org/W2133125644;https://openalex.org/W2134852861;https://openalex.org/W2143192685;https://openalex.org/W2145982493;https://openalex.org/W2150220236;https://openalex.org/W2150664932;https://openalex.org/W2151499786;https://openalex.org/W2165854046;https://openalex.org/W2188767531;https://openalex.org/W2201333553;https://openalex.org/W2207083369;https://openalex.org/W2243003515;https://openalex.org/W2275696275;https://openalex.org/W2313974443;https://openalex.org/W2315894413;https://openalex.org/W2319859377;https://openalex.org/W2328015724;https://openalex.org/W2342626385;https://openalex.org/W2395869423;https://openalex.org/W2413512417;https://openalex.org/W2462474087;https://openalex.org/W2467491686;https://openalex.org/W2471543519;https://openalex.org/W2479938810;https://openalex.org/W2513851811;https://openalex.org/W2515492367;https://openalex.org/W2520082337;https://openalex.org/W2522615148;https://openalex.org/W2539185528;https://openalex.org/W2550198355;https://openalex.org/W2565531507;https://openalex.org/W2584232616;https://openalex.org/W2587807122;https://openalex.org/W2593778105;https://openalex.org/W2605401590;https://openalex.org/W2607615935;https://openalex.org/W2613697771;https://openalex.org/W2615516218;https://openalex.org/W2618732405;https://openalex.org/W2624387057;https://openalex.org/W2646675373;https://openalex.org/W2648242067;https://openalex.org/W2729164367;https://openalex.org/W2736116482;https://openalex.org/W2742577398;https://openalex.org/W2751567280;https://openalex.org/W2754367764;https://openalex.org/W2757806273;https://openalex.org/W2765366036;https://openalex.org/W2767327746;https://openalex.org/W2767657507;https://openalex.org/W2768508481;https://openalex.org/W2771058985;https://openalex.org/W2787441870;https://openalex.org/W2790858865;https://openalex.org/W2792286873;https://openalex.org/W2793263498;https://openalex.org/W2793328538;https://openalex.org/W2800002789;https://openalex.org/W2804241935;https://openalex.org/W2806576037;https://openalex.org/W2810670912;https://openalex.org/W2811148000;https://openalex.org/W2883113516;https://openalex.org/W2884040439;https://openalex.org/W2884438462;https://openalex.org/W2884690740;https://openalex.org/W2885770726;https://openalex.org/W2888404827;https://openalex.org/W2888766590;https://openalex.org/W2889454130;https://openalex.org/W2890513934;https://openalex.org/W2890637087;https://openalex.org/W2896242594;https://openalex.org/W2898498213;https://openalex.org/W2899338010;https://openalex.org/W2900330501;https://openalex.org/W2900477065;https://openalex.org/W2902949125;https://openalex.org/W2903808251;https://openalex.org/W2904027073;https://openalex.org/W2904462474;https://openalex.org/W2907017276;https://openalex.org/W2907617364;https://openalex.org/W2908941153;https://openalex.org/W2911400664;https://openalex.org/W2911821804;https://openalex.org/W2916442355;https://openalex.org/W2917505878;https://openalex.org/W2917901091;https://openalex.org/W2922028018;https://openalex.org/W2922184469;https://openalex.org/W2922765813;https://openalex.org/W2930102931;https://openalex.org/W2941400914;https://openalex.org/W2944442503;https://openalex.org/W2945925278;https://openalex.org/W2947019422;https://openalex.org/W2950604226;https://openalex.org/W2954187519;https://openalex.org/W2963375395;https://openalex.org/W2967267206;https://openalex.org/W2968911939;https://openalex.org/W2979735399;https://openalex.org/W2981116508;https://openalex.org/W2982300869;https://openalex.org/W2983056308;https://openalex.org/W2984342008;https://openalex.org/W2986499130;https://openalex.org/W2995142316;https://openalex.org/W2996332308;https://openalex.org/W2997693041;https://openalex.org/W3000652771;https://openalex.org/W3003262233;https://openalex.org/W3004568742;https://openalex.org/W3005863531;https://openalex.org/W3007651920;https://openalex.org/W3010202682;https://openalex.org/W3010319118;https://openalex.org/W3011934858;https://openalex.org/W3012177467;https://openalex.org/W3014601011;https://openalex.org/W3015980439;https://openalex.org/W3016515244;https://openalex.org/W3016687513;https://openalex.org/W3019576236;https://openalex.org/W3022517580;https://openalex.org/W3022843305;https://openalex.org/W3023299871;https://openalex.org/W3024363786;https://openalex.org/W3025751491;https://openalex.org/W3027501833;https://openalex.org/W3027760474;https://openalex.org/W3029349200;https://openalex.org/W3037404681;https://openalex.org/W3044902155;https://openalex.org/W3047600962;https://openalex.org/W3048734519;https://openalex.org/W3081638962;https://openalex.org/W3082964614;https://openalex.org/W3084320300;https://openalex.org/W3084725230;https://openalex.org/W3087534926;https://openalex.org/W3092075612;https://openalex.org/W3096341508;https://openalex.org/W3096910885;https://openalex.org/W3097356548;https://openalex.org/W3102181181;https://openalex.org/W3103288130;https://openalex.org/W3107505554;https://openalex.org/W3110142540;https://openalex.org/W3111134030;https://openalex.org/W3112498453;https://openalex.org/W3112840199;https://openalex.org/W3113227330;https://openalex.org/W3113794631;https://openalex.org/W3118250323;https://openalex.org/W3120867123;https://openalex.org/W3121188342;https://openalex.org/W3123067979;https://openalex.org/W3127263314;https://openalex.org/W3127745513;https://openalex.org/W3128370569;https://openalex.org/W3134831088;https://openalex.org/W3137799724;https://openalex.org/W3138616181;https://openalex.org/W3144431321;https://openalex.org/W3144736582;https://openalex.org/W3147567656;https://openalex.org/W3153024839;https://openalex.org/W3160658661;https://openalex.org/W3161974380;https://openalex.org/W3162513718;https://openalex.org/W3168768653;https://openalex.org/W3171832445;https://openalex.org/W3175153879;https://openalex.org/W3183160471;https://openalex.org/W3184942785;https://openalex.org/W3194775834;https://openalex.org/W3202738716;https://openalex.org/W3202822501;https://openalex.org/W3204034260;https://openalex.org/W3210604023;https://openalex.org/W3210761258;https://openalex.org/W3211232398;https://openalex.org/W4200153829;https://openalex.org/W4200372155;https://openalex.org/W4200421609;https://openalex.org/W4200504340;https://openalex.org/W4206329493;https://openalex.org/W4206706039;https://openalex.org/W4206803631;https://openalex.org/W4207021741;https://openalex.org/W4210513753;https://openalex.org/W4213147678;https://openalex.org/W4233879093;https://openalex.org/W4246046260;https://openalex.org/W4246134726;https://openalex.org/W4246507676;https://openalex.org/W4247257102;https://openalex.org/W4247332467;https://openalex.org/W4254194539;https://openalex.org/W4254908733;https://openalex.org/W4254928904;https://openalex.org/W4256681118;https://openalex.org/W4312000376;https://openalex.org/W4312272867;https://openalex.org/W4390155953;https://openalex.org/W6601236186;https://openalex.org/W6603319068;https://openalex.org/W6634582789;https://openalex.org/W6645026925;https://openalex.org/W6666487912;https://openalex.org/W6677203387;https://openalex.org/W6677653467;https://openalex.org/W6679159076;https://openalex.org/W6686676667;https://openalex.org/W6695147765;https://openalex.org/W6712358891;https://openalex.org/W6719102434;https://openalex.org/W6733170546;https://openalex.org/W6746178488;https://openalex.org/W6748866122;https://openalex.org/W6750084823;https://openalex.org/W6755177111;https://openalex.org/W6756010107;https://openalex.org/W6756194706;https://openalex.org/W6762323692;https://openalex.org/W6766954107;https://openalex.org/W6769155457;https://openalex.org/W6772088442;https://openalex.org/W6774560190;https://openalex.org/W6780704571;https://openalex.org/W6781459431;https://openalex.org/W6791557914;https://openalex.org/W6794790404;https://openalex.org/W6796844681;https://openalex.org/W6802344170;https://openalex.org/W6803202188;https://openalex.org/W6806997867,OPENALEX,"Abderahman Rejeb, 2022, Computers and Electronics in Agriculture","Abderahman Rejeb, 2022, Computers and Electronics in Agriculture"
+Data mining and machine learning techniques applied to public health problems: A bibliometric analysis from 2009 to 2018,2019,article,en,127,10.1016/j.cie.2019.106120,https://openalex.org/W2979610116,,Bruno Samways dos Santos;María Teresinha Arns Steiner;Amanda Trojan Fenerich;Rafael Henrique Palma Lima,Bruno Samways dos Santos;María Teresinha Arns Steiner;Amanda Trojan Fenerich;Rafael Henrique Palma Lima,Pontifícia Universidade Católica do Paraná;Pontifícia Universidade Católica do Paraná;Pontifícia Universidade Católica do Paraná;Universidade Tecnológica Federal do Paraná,Bruno Samways dos Santos,Computers & Industrial Engineering,Computers & Industrial Engineering,138,,106120,106120,,,Scopus;Computer science;Context (archaeology);Public health;Data science;Support vector machine;Web of science;The Internet;Field (mathematics);Bibliometrics;Data mining;Artificial intelligence;MEDLINE;World Wide Web;Medicine;Mathematics;Geography;Political science;Law;Archaeology;Pure mathematics;Nursing,https://openalex.org/W1512104599;https://openalex.org/W1514609038;https://openalex.org/W1562463929;https://openalex.org/W1571935154;https://openalex.org/W1573600402;https://openalex.org/W1874217810;https://openalex.org/W1929181352;https://openalex.org/W1980640719;https://openalex.org/W1988023854;https://openalex.org/W2000127653;https://openalex.org/W2020974619;https://openalex.org/W2026343919;https://openalex.org/W2036965053;https://openalex.org/W2052264970;https://openalex.org/W2053276830;https://openalex.org/W2062580623;https://openalex.org/W2079591709;https://openalex.org/W2081284664;https://openalex.org/W2088712730;https://openalex.org/W2095315710;https://openalex.org/W2102614609;https://openalex.org/W2106618845;https://openalex.org/W2107035852;https://openalex.org/W2118414527;https://openalex.org/W2120054760;https://openalex.org/W2141161236;https://openalex.org/W2147953360;https://openalex.org/W2149228247;https://openalex.org/W2151103962;https://openalex.org/W2159181336;https://openalex.org/W2159663239;https://openalex.org/W2163598528;https://openalex.org/W2168894761;https://openalex.org/W2170112669;https://openalex.org/W2171469118;https://openalex.org/W2250240141;https://openalex.org/W2471643592;https://openalex.org/W2501156986;https://openalex.org/W2519289376;https://openalex.org/W2529025493;https://openalex.org/W2553160069;https://openalex.org/W2560678864;https://openalex.org/W2565522107;https://openalex.org/W2569214105;https://openalex.org/W2587326473;https://openalex.org/W2588978790;https://openalex.org/W2606945656;https://openalex.org/W2610984530;https://openalex.org/W2614092723;https://openalex.org/W2638254231;https://openalex.org/W2732050589;https://openalex.org/W2734832579;https://openalex.org/W2739988252;https://openalex.org/W2745642918;https://openalex.org/W2751427740;https://openalex.org/W2755058106;https://openalex.org/W2765883401;https://openalex.org/W2768650472;https://openalex.org/W2769135762;https://openalex.org/W2773642388;https://openalex.org/W2775182341;https://openalex.org/W2779908660;https://openalex.org/W2782172275;https://openalex.org/W2782182435;https://openalex.org/W2790360578;https://openalex.org/W2791730151;https://openalex.org/W2792307024;https://openalex.org/W2792705987;https://openalex.org/W2796774316;https://openalex.org/W2801570955;https://openalex.org/W2810021747;https://openalex.org/W2810207020;https://openalex.org/W2810623657;https://openalex.org/W2811095531;https://openalex.org/W2883860074;https://openalex.org/W2885069035;https://openalex.org/W2887903337;https://openalex.org/W2892090722;https://openalex.org/W2894726598;https://openalex.org/W2900399448;https://openalex.org/W2901460192;https://openalex.org/W2902282961;https://openalex.org/W2905241670;https://openalex.org/W2905983446;https://openalex.org/W2906028509;https://openalex.org/W3125505924;https://openalex.org/W4232575633;https://openalex.org/W4243782038;https://openalex.org/W6633796851;https://openalex.org/W6684327724;https://openalex.org/W6684456340;https://openalex.org/W6740206376;https://openalex.org/W6746800349;https://openalex.org/W6747672686;https://openalex.org/W6755542333,OPENALEX,"Bruno Samways dos Santos, 2019, Computers & Industrial Engineering","Bruno Samways dos Santos, 2019, Computers & Industrial Engineering"
+Using content-based and bibliometric features for machine learning models to predict citation counts in the biomedical literature,2010,article,en,110,10.1007/s11192-010-0160-5,https://openalex.org/W2021944660,,Lawrence D. Fu;Constantin Aliferis,Lawrence D. Fu;Constantin Aliferis,Columbia University Irving Medical Center;New York University;Columbia University Irving Medical Center;New York University,Lawrence D. Fu,Scientometrics,Scientometrics,85,1,257,270,,,Citation;Computer science;Citation analysis;Information retrieval;Term (time);Data science;Machine learning;Artificial intelligence;Library science;Quantum mechanics;Physics,https://openalex.org/W93570834;https://openalex.org/W1493036841;https://openalex.org/W1511527373;https://openalex.org/W1564518192;https://openalex.org/W1969666528;https://openalex.org/W2008516411;https://openalex.org/W2014147337;https://openalex.org/W2026273736;https://openalex.org/W2043465687;https://openalex.org/W2048402950;https://openalex.org/W2080547938;https://openalex.org/W2081228826;https://openalex.org/W2098162425;https://openalex.org/W2120450109;https://openalex.org/W2133091666;https://openalex.org/W2138745909;https://openalex.org/W2139212933;https://openalex.org/W2140584250;https://openalex.org/W2154703852;https://openalex.org/W4313635346;https://openalex.org/W6680669223,OPENALEX,"Lawrence D. Fu, 2010, Scientometrics","Lawrence D. Fu, 2010, Scientometrics"
+Twenty years of airport efficiency and productivity studies: A machine learning bibliometric analysis,2022,article,en,18,10.1016/j.rtbm.2021.100771,https://openalex.org/W4220858521,,Kok Fong See;Tolga Ülkü;Peter Forsyth;Hans‐Martin Niemeier,Kok Fong See;Tolga Ülkü;Peter Forsyth;Hans‐Martin Niemeier,Universiti Sains Malaysia;IU International University of Applied Sciences;Monash University;Hochschule Bremen,Kok Fong See,Research in Transportation Business & Management,Research in Transportation Business & Management,46,,100771,100771,,,Productivity;Regional science;Trend analysis;Operations research;Geography;Economics;Computer science;Engineering;Economic growth;Machine learning,https://openalex.org/W1492662576;https://openalex.org/W1521265526;https://openalex.org/W1680284932;https://openalex.org/W1785767393;https://openalex.org/W1834539437;https://openalex.org/W1853117886;https://openalex.org/W1949140393;https://openalex.org/W1952329094;https://openalex.org/W1965664701;https://openalex.org/W1970406065;https://openalex.org/W1971326325;https://openalex.org/W1971341831;https://openalex.org/W1973124146;https://openalex.org/W1983961430;https://openalex.org/W1994690593;https://openalex.org/W1996194536;https://openalex.org/W2001090628;https://openalex.org/W2003998626;https://openalex.org/W2010753709;https://openalex.org/W2013301240;https://openalex.org/W2013580065;https://openalex.org/W2014588860;https://openalex.org/W2015437123;https://openalex.org/W2021781078;https://openalex.org/W2024829323;https://openalex.org/W2029676573;https://openalex.org/W2030962188;https://openalex.org/W2033834012;https://openalex.org/W2039027543;https://openalex.org/W2039747275;https://openalex.org/W2041875847;https://openalex.org/W2045296237;https://openalex.org/W2047946574;https://openalex.org/W2048655823;https://openalex.org/W2052840737;https://openalex.org/W2054644951;https://openalex.org/W2055843672;https://openalex.org/W2059432226;https://openalex.org/W2061367770;https://openalex.org/W2064046459;https://openalex.org/W2065804670;https://openalex.org/W2071353900;https://openalex.org/W2076252304;https://openalex.org/W2076452041;https://openalex.org/W2078480198;https://openalex.org/W2084660657;https://openalex.org/W2087966778;https://openalex.org/W2088547614;https://openalex.org/W2089643336;https://openalex.org/W2120852299;https://openalex.org/W2123064290;https://openalex.org/W2129763896;https://openalex.org/W2135455887;https://openalex.org/W2162553855;https://openalex.org/W2167872491;https://openalex.org/W2217240826;https://openalex.org/W2239964825;https://openalex.org/W2244411506;https://openalex.org/W2264891321;https://openalex.org/W2275696275;https://openalex.org/W2288255456;https://openalex.org/W2298424960;https://openalex.org/W2307521489;https://openalex.org/W2313871195;https://openalex.org/W2372548785;https://openalex.org/W2508496529;https://openalex.org/W2516304104;https://openalex.org/W2522281906;https://openalex.org/W2559370790;https://openalex.org/W2591173772;https://openalex.org/W2655325244;https://openalex.org/W2740801217;https://openalex.org/W2751782454;https://openalex.org/W2755950973;https://openalex.org/W2762642752;https://openalex.org/W2809358845;https://openalex.org/W2916347510;https://openalex.org/W2953107155;https://openalex.org/W2968251180;https://openalex.org/W2990688366;https://openalex.org/W3000071719;https://openalex.org/W3121992726;https://openalex.org/W3125707221;https://openalex.org/W3153953735;https://openalex.org/W4294215472;https://openalex.org/W6637127635;https://openalex.org/W6654008965;https://openalex.org/W6656735895;https://openalex.org/W6662884306;https://openalex.org/W6672649571;https://openalex.org/W6695147765;https://openalex.org/W6744400058,OPENALEX,"Kok Fong See, 2022, Research in Transportation Business & Management","Kok Fong See, 2022, Research in Transportation Business & Management"
+Understanding product returns: A systematic literature review using machine learning and bibliometric analysis,2021,article,en,80,10.1016/j.ijpe.2021.108340,https://openalex.org/W3205155573,,Quang Huy Duong;Li Zhou;Meng Meng;Truong Van Nguyen;Petros Ieromonachou;Tiep Duy Nguyen,Quang Huy Duong;Li Zhou;Meng Meng;Truong Van Nguyen;Petros Ieromonachou;Tiep Duy Nguyen,University of Greenwich;University of Greenwich;University of Bath;Brunel University of London;University of Greenwich;University of Greenwich,Quang Huy Duong,International Journal of Production Economics,International Journal of Production Economics,243,,108340,108340,,,Computer science;Context (archaeology);Bespoke;Product (mathematics);Cluster analysis;Marketing;Data science;Knowledge management;Artificial intelligence;Business;Biology;Paleontology;Mathematics;Geometry;Advertising,https://openalex.org/W104939753;https://openalex.org/W150292108;https://openalex.org/W206359983;https://openalex.org/W1497772944;https://openalex.org/W1520584404;https://openalex.org/W1540967267;https://openalex.org/W1581625869;https://openalex.org/W1601951354;https://openalex.org/W1880262756;https://openalex.org/W1947595544;https://openalex.org/W1964623804;https://openalex.org/W1967139445;https://openalex.org/W1967625562;https://openalex.org/W1969123556;https://openalex.org/W1970859146;https://openalex.org/W1971463466;https://openalex.org/W1974434592;https://openalex.org/W1982256043;https://openalex.org/W1982924738;https://openalex.org/W1982935960;https://openalex.org/W1989229635;https://openalex.org/W2001701100;https://openalex.org/W2002317935;https://openalex.org/W2003860137;https://openalex.org/W2005207065;https://openalex.org/W2005311637;https://openalex.org/W2005570417;https://openalex.org/W2006852464;https://openalex.org/W2006940952;https://openalex.org/W2008054637;https://openalex.org/W2011923969;https://openalex.org/W2019932115;https://openalex.org/W2020833085;https://openalex.org/W2022160839;https://openalex.org/W2022920407;https://openalex.org/W2023171327;https://openalex.org/W2029123070;https://openalex.org/W2029798215;https://openalex.org/W2030227729;https://openalex.org/W2030252188;https://openalex.org/W2031628688;https://openalex.org/W2032072016;https://openalex.org/W2040280177;https://openalex.org/W2040513702;https://openalex.org/W2041777999;https://openalex.org/W2045108252;https://openalex.org/W2047911768;https://openalex.org/W2049458779;https://openalex.org/W2050529056;https://openalex.org/W2050547803;https://openalex.org/W2051930841;https://openalex.org/W2053313148;https://openalex.org/W2053313509;https://openalex.org/W2057386011;https://openalex.org/W2061115987;https://openalex.org/W2064967389;https://openalex.org/W2069940389;https://openalex.org/W2073145055;https://openalex.org/W2075217160;https://openalex.org/W2080108864;https://openalex.org/W2081653786;https://openalex.org/W2082034461;https://openalex.org/W2087792930;https://openalex.org/W2088193903;https://openalex.org/W2089609741;https://openalex.org/W2090420549;https://openalex.org/W2094995270;https://openalex.org/W2095229032;https://openalex.org/W2100019901;https://openalex.org/W2102298099;https://openalex.org/W2107743791;https://openalex.org/W2111877104;https://openalex.org/W2112186058;https://openalex.org/W2116126561;https://openalex.org/W2117355159;https://openalex.org/W2119702521;https://openalex.org/W2121248249;https://openalex.org/W2125208917;https://openalex.org/W2125910575;https://openalex.org/W2126022285;https://openalex.org/W2128821753;https://openalex.org/W2132327276;https://openalex.org/W2132784107;https://openalex.org/W2136612012;https://openalex.org/W2137174507;https://openalex.org/W2137593399;https://openalex.org/W2138184479;https://openalex.org/W2141616240;https://openalex.org/W2144947015;https://openalex.org/W2147152072;https://openalex.org/W2150060171;https://openalex.org/W2150220236;https://openalex.org/W2151024273;https://openalex.org/W2153729696;https://openalex.org/W2155774482;https://openalex.org/W2156822248;https://openalex.org/W2160170318;https://openalex.org/W2160444496;https://openalex.org/W2161169387;https://openalex.org/W2164617481;https://openalex.org/W2165713616;https://openalex.org/W2183705853;https://openalex.org/W2215353773;https://openalex.org/W2245932802;https://openalex.org/W2288874350;https://openalex.org/W2340695878;https://openalex.org/W2440237703;https://openalex.org/W2467872127;https://openalex.org/W2480377045;https://openalex.org/W2481463970;https://openalex.org/W2482679439;https://openalex.org/W2510695141;https://openalex.org/W2563961554;https://openalex.org/W2568407129;https://openalex.org/W2570282734;https://openalex.org/W2606989030;https://openalex.org/W2732521237;https://openalex.org/W2738289515;https://openalex.org/W2740182096;https://openalex.org/W2755872041;https://openalex.org/W2769482885;https://openalex.org/W2769984510;https://openalex.org/W2781611303;https://openalex.org/W2783840809;https://openalex.org/W2806331492;https://openalex.org/W2807209880;https://openalex.org/W2883001636;https://openalex.org/W2885251002;https://openalex.org/W2888750138;https://openalex.org/W2890992194;https://openalex.org/W2892463090;https://openalex.org/W2894490845;https://openalex.org/W2898564950;https://openalex.org/W2901278912;https://openalex.org/W2901627956;https://openalex.org/W2901664574;https://openalex.org/W2904513285;https://openalex.org/W2909182647;https://openalex.org/W2911874551;https://openalex.org/W2912115945;https://openalex.org/W2917471231;https://openalex.org/W2935608639;https://openalex.org/W2937040248;https://openalex.org/W2939285397;https://openalex.org/W2941478914;https://openalex.org/W2942978268;https://openalex.org/W2951434526;https://openalex.org/W2953043123;https://openalex.org/W2953226774;https://openalex.org/W2954642792;https://openalex.org/W2955203191;https://openalex.org/W2959456427;https://openalex.org/W2965971711;https://openalex.org/W2969197168;https://openalex.org/W2979646543;https://openalex.org/W2984994429;https://openalex.org/W2986887219;https://openalex.org/W2992392140;https://openalex.org/W2995551760;https://openalex.org/W2996339339;https://openalex.org/W2997869386;https://openalex.org/W2998626673;https://openalex.org/W3000910650;https://openalex.org/W3002119723;https://openalex.org/W3003964569;https://openalex.org/W3004938766;https://openalex.org/W3006670468;https://openalex.org/W3010416066;https://openalex.org/W3012116377;https://openalex.org/W3012374868;https://openalex.org/W3012501803;https://openalex.org/W3014283919;https://openalex.org/W3015337523;https://openalex.org/W3015749997;https://openalex.org/W3017951096;https://openalex.org/W3018179126;https://openalex.org/W3022047015;https://openalex.org/W3022128117;https://openalex.org/W3022261864;https://openalex.org/W3022778240;https://openalex.org/W3022958555;https://openalex.org/W3024961770;https://openalex.org/W3026226282;https://openalex.org/W3026663849;https://openalex.org/W3034835549;https://openalex.org/W3037477013;https://openalex.org/W3038456961;https://openalex.org/W3040708147;https://openalex.org/W3043168668;https://openalex.org/W3047489808;https://openalex.org/W3048647615;https://openalex.org/W3080681202;https://openalex.org/W3082963869;https://openalex.org/W3083555389;https://openalex.org/W3083895391;https://openalex.org/W3087787590;https://openalex.org/W3088014247;https://openalex.org/W3094700648;https://openalex.org/W3095370396;https://openalex.org/W3097599689;https://openalex.org/W3099350049;https://openalex.org/W3111121152;https://openalex.org/W3111528201;https://openalex.org/W3112484444;https://openalex.org/W3121219238;https://openalex.org/W3123223435;https://openalex.org/W3123278189;https://openalex.org/W3123308521;https://openalex.org/W3131542013;https://openalex.org/W3132311892;https://openalex.org/W3135064254;https://openalex.org/W3136788966;https://openalex.org/W3137429312;https://openalex.org/W3145145494;https://openalex.org/W3152332785;https://openalex.org/W3156894835;https://openalex.org/W3159148328;https://openalex.org/W3163609607;https://openalex.org/W3168454824;https://openalex.org/W3170619139;https://openalex.org/W3177279685;https://openalex.org/W4231510805;https://openalex.org/W4233135949;https://openalex.org/W4236170518;https://openalex.org/W4255497883;https://openalex.org/W4285719527;https://openalex.org/W6608371920;https://openalex.org/W6639619044;https://openalex.org/W6670699361;https://openalex.org/W6678276291;https://openalex.org/W6679070811;https://openalex.org/W6696274433;https://openalex.org/W6773651783;https://openalex.org/W6774786534;https://openalex.org/W6775937791;https://openalex.org/W6781078373;https://openalex.org/W6782932187;https://openalex.org/W6784570525;https://openalex.org/W6786623845;https://openalex.org/W6787076512;https://openalex.org/W6791865867;https://openalex.org/W6796375415;https://openalex.org/W6796824591;https://openalex.org/W6797864088;https://openalex.org/W6815875558,OPENALEX,"Quang Huy Duong, 2021, International Journal of Production Economics","Quang Huy Duong, 2021, International Journal of Production Economics"
+A visualized bibliometric analysis of mapping research trends of machine learning in engineering (MLE),2021,article,en,70,10.1016/j.eswa.2021.115728,https://openalex.org/W3193226555,,Miao Su;Hui Peng;Shaofan Li,Miao Su;Hui Peng;Shaofan Li,"University of California, Berkeley;Changsha University of Science and Technology;Changsha University of Science and Technology;University of California, Berkeley",Miao Su,Expert Systems with Applications,Expert Systems with Applications,186,,115728,115728,,,Computer science;Data science;Machine learning;Artificial intelligence;Data mining;Information retrieval,https://openalex.org/W1480376833;https://openalex.org/W1482021765;https://openalex.org/W1496929357;https://openalex.org/W1572181180;https://openalex.org/W1663973292;https://openalex.org/W1723619723;https://openalex.org/W1740585449;https://openalex.org/W1750490368;https://openalex.org/W1809800090;https://openalex.org/W1843099843;https://openalex.org/W1975428268;https://openalex.org/W1976405057;https://openalex.org/W1977411522;https://openalex.org/W1989906353;https://openalex.org/W1999461467;https://openalex.org/W2015648984;https://openalex.org/W2016864600;https://openalex.org/W2023261859;https://openalex.org/W2031360841;https://openalex.org/W2045732268;https://openalex.org/W2056401416;https://openalex.org/W2063922127;https://openalex.org/W2069262928;https://openalex.org/W2069929199;https://openalex.org/W2071923040;https://openalex.org/W2079390796;https://openalex.org/W2091365875;https://openalex.org/W2101234009;https://openalex.org/W2103537693;https://openalex.org/W2111072639;https://openalex.org/W2119821739;https://openalex.org/W2136922672;https://openalex.org/W2137881949;https://openalex.org/W2148603752;https://openalex.org/W2150220236;https://openalex.org/W2153635508;https://openalex.org/W2154400911;https://openalex.org/W2156909104;https://openalex.org/W2218047931;https://openalex.org/W2239232218;https://openalex.org/W2268331518;https://openalex.org/W2270470215;https://openalex.org/W2290425607;https://openalex.org/W2295400067;https://openalex.org/W2404692435;https://openalex.org/W2480364715;https://openalex.org/W2518557595;https://openalex.org/W2556345765;https://openalex.org/W2559969670;https://openalex.org/W2560228494;https://openalex.org/W2581063857;https://openalex.org/W2584696667;https://openalex.org/W2592084954;https://openalex.org/W2603112626;https://openalex.org/W2604842920;https://openalex.org/W2618530766;https://openalex.org/W2621019941;https://openalex.org/W2725541287;https://openalex.org/W2729101176;https://openalex.org/W2747278505;https://openalex.org/W2759284092;https://openalex.org/W2762840986;https://openalex.org/W2766140847;https://openalex.org/W2771590529;https://openalex.org/W2803678638;https://openalex.org/W2809899558;https://openalex.org/W2811102151;https://openalex.org/W2811266281;https://openalex.org/W2866575265;https://openalex.org/W2883434573;https://openalex.org/W2889666927;https://openalex.org/W2905485021;https://openalex.org/W2908064175;https://openalex.org/W2911964244;https://openalex.org/W2916772210;https://openalex.org/W2919115771;https://openalex.org/W2929130519;https://openalex.org/W2939407295;https://openalex.org/W2952136798;https://openalex.org/W2953301966;https://openalex.org/W2963453445;https://openalex.org/W2969066554;https://openalex.org/W2970304580;https://openalex.org/W2979048634;https://openalex.org/W2981650146;https://openalex.org/W2993535041;https://openalex.org/W2995621105;https://openalex.org/W2996219887;https://openalex.org/W3103799692;https://openalex.org/W3133945275;https://openalex.org/W3145506661;https://openalex.org/W3147809485;https://openalex.org/W4239510810;https://openalex.org/W4247162069;https://openalex.org/W4298304654;https://openalex.org/W6675354045;https://openalex.org/W6730587673;https://openalex.org/W6764868099;https://openalex.org/W6771633300,OPENALEX,"Miao Su, 2021, Expert Systems with Applications","Miao Su, 2021, Expert Systems with Applications"
+"Examining the research taxonomy of artificial intelligence, deep learning & machine learning in the financial sphere—a bibliometric analysis",2023,article,en,78,10.1007/s11135-023-01673-0,https://openalex.org/W4367671427,37359968,Ajithakumari Vijayappan Nair Biju;Ann Susan Thomas;J Thasneem,Ajithakumari Vijayappan Nair Biju;Ann Susan Thomas;J Thasneem,University of Kerala;University of Kerala;University of Kerala,Ajithakumari Vijayappan Nair Biju,Quality & Quantity,Quality & Quantity,58,1,849,878,,,Archetype;Artificial intelligence;Extant taxon;Empirical research;Social sphere;Finance;Zhàng;Machine learning;China;Sociology;Computer science;Economics;Political science;Social science;Mathematics;Statistics;Law;Art;Literature;Biology;Evolutionary biology,https://openalex.org/W150292108;https://openalex.org/W643606810;https://openalex.org/W1021000864;https://openalex.org/W1999102038;https://openalex.org/W2004076523;https://openalex.org/W2012533078;https://openalex.org/W2015780725;https://openalex.org/W2048658075;https://openalex.org/W2069613886;https://openalex.org/W2079228007;https://openalex.org/W2084674986;https://openalex.org/W2095293504;https://openalex.org/W2097933633;https://openalex.org/W2102152810;https://openalex.org/W2103441516;https://openalex.org/W2120109270;https://openalex.org/W2131681506;https://openalex.org/W2137503943;https://openalex.org/W2148905674;https://openalex.org/W2159722025;https://openalex.org/W2164856000;https://openalex.org/W2167456135;https://openalex.org/W2171567624;https://openalex.org/W2269863304;https://openalex.org/W2327706228;https://openalex.org/W2342352817;https://openalex.org/W2344786740;https://openalex.org/W2403312433;https://openalex.org/W2514828644;https://openalex.org/W2592542840;https://openalex.org/W2593936570;https://openalex.org/W2606916050;https://openalex.org/W2613650002;https://openalex.org/W2621796148;https://openalex.org/W2624385633;https://openalex.org/W2626389465;https://openalex.org/W2734777338;https://openalex.org/W2735575534;https://openalex.org/W2755950973;https://openalex.org/W2766088648;https://openalex.org/W2776003688;https://openalex.org/W2783850934;https://openalex.org/W2786341358;https://openalex.org/W2788025656;https://openalex.org/W2789364533;https://openalex.org/W2791987208;https://openalex.org/W2803148772;https://openalex.org/W2807909115;https://openalex.org/W2886191303;https://openalex.org/W2889880961;https://openalex.org/W2898153843;https://openalex.org/W2898514850;https://openalex.org/W2905074124;https://openalex.org/W2906573737;https://openalex.org/W2911450871;https://openalex.org/W2911543806;https://openalex.org/W2912066933;https://openalex.org/W2917490808;https://openalex.org/W2919115771;https://openalex.org/W2923437336;https://openalex.org/W2940136728;https://openalex.org/W2946494228;https://openalex.org/W2967019654;https://openalex.org/W2968923792;https://openalex.org/W2969625533;https://openalex.org/W2969839986;https://openalex.org/W2973702823;https://openalex.org/W2984563716;https://openalex.org/W2990450011;https://openalex.org/W2992191029;https://openalex.org/W2992584342;https://openalex.org/W2997443965;https://openalex.org/W2999884159;https://openalex.org/W3000463950;https://openalex.org/W3000895385;https://openalex.org/W3005880472;https://openalex.org/W3011387630;https://openalex.org/W3013063141;https://openalex.org/W3016378723;https://openalex.org/W3017193407;https://openalex.org/W3029156716;https://openalex.org/W3035669514;https://openalex.org/W3035797136;https://openalex.org/W3042981023;https://openalex.org/W3043220749;https://openalex.org/W3044711781;https://openalex.org/W3048283392;https://openalex.org/W3082157970;https://openalex.org/W3084037690;https://openalex.org/W3097106009;https://openalex.org/W3099768174;https://openalex.org/W3106886953;https://openalex.org/W3118423825;https://openalex.org/W3122779978;https://openalex.org/W3124071524;https://openalex.org/W3126032681;https://openalex.org/W3126443786;https://openalex.org/W3126729572;https://openalex.org/W3135028703;https://openalex.org/W3165340137;https://openalex.org/W3168924973;https://openalex.org/W3170454297;https://openalex.org/W3186529101;https://openalex.org/W3194250276;https://openalex.org/W3198357836;https://openalex.org/W4200065055;https://openalex.org/W4211211006;https://openalex.org/W4230692838;https://openalex.org/W6903600625,OPENALEX,"Ajithakumari Vijayappan Nair Biju, 2023, Quality & Quantity","Ajithakumari Vijayappan Nair Biju, 2023, Quality & Quantity"
+Mapping the Role and Impact of Artificial Intelligence and Machine Learning Applications in Supply Chain Digital Transformation: A Bibliometric Analysis,2022,article,en,94,10.1007/s12063-022-00335-y,https://openalex.org/W4312223667,,Jeetu Rana;Yash Daultani,Jeetu Rana;Yash Daultani,Indian Institute of Management Lucknow;Indian Institute of Management Lucknow,Jeetu Rana,Operations Management Research,Operations Management Research,16,4,1641,1666,,,Supply chain;Computer science;Scope (computer science);Digital transformation;Data science;Emerging technologies;Industry 4.0;Supply chain management;Knowledge management;Process management;Artificial intelligence;Business;Data mining;Marketing;World Wide Web;Programming language,https://openalex.org/W972842902;https://openalex.org/W2011542859;https://openalex.org/W2015415650;https://openalex.org/W2058729910;https://openalex.org/W2070032609;https://openalex.org/W2090353581;https://openalex.org/W2104925392;https://openalex.org/W2113348250;https://openalex.org/W2166304961;https://openalex.org/W2291128798;https://openalex.org/W2470242011;https://openalex.org/W2751325923;https://openalex.org/W2753155801;https://openalex.org/W2758571161;https://openalex.org/W2765422372;https://openalex.org/W2789444712;https://openalex.org/W2888648656;https://openalex.org/W2890622118;https://openalex.org/W2892727770;https://openalex.org/W2902553738;https://openalex.org/W2947436355;https://openalex.org/W2954217333;https://openalex.org/W2963453445;https://openalex.org/W2989523152;https://openalex.org/W3001124561;https://openalex.org/W3013165905;https://openalex.org/W3028158573;https://openalex.org/W3081491601;https://openalex.org/W3089035854;https://openalex.org/W3089252064;https://openalex.org/W3131345956;https://openalex.org/W3170102960;https://openalex.org/W3177949898;https://openalex.org/W3192208786;https://openalex.org/W3193620804;https://openalex.org/W3194250276;https://openalex.org/W3197052056;https://openalex.org/W3205172848;https://openalex.org/W3209152117;https://openalex.org/W4220894906;https://openalex.org/W4256681118;https://openalex.org/W4289855647,OPENALEX,"Jeetu Rana, 2022, Operations Management Research","Jeetu Rana, 2022, Operations Management Research"
+The application of machine learning to air pollution research: A bibliometric analysis,2023,article,en,55,10.1016/j.ecoenv.2023.114911,https://openalex.org/W4365812881,37154080,Yunzhe Li;Zhipeng Sha;Aohan Tang;K. W. T. Goulding;Xuejun Liu,Yunzhe Li;Zhipeng Sha;Aohan Tang;K. W. T. Goulding;Xuejun Liu,China Agricultural University;China Agricultural University;China Agricultural University;Rothamsted Research;China Agricultural University,Yunzhe Li,Ecotoxicology and Environmental Safety,Ecotoxicology and Environmental Safety,257,,114911,114911,"Machine learning (ML) is an advanced computer algorithm that simulates the human learning process to solve problems. With an explosion of monitoring data and the increasing demand for fast and accurate prediction, ML models have been rapidly developed and applied in air pollution research. In order to explore the status of ML applications in air pollution research, a bibliometric analysis was made based on 2962 articles published from 1990 to 2021. The number of publications increased sharply after 2017, comprising approximately 75% of the total. Institutions in China and United States contributed half of all publications with most research being conducted by individual groups rather than global collaborations. Cluster analysis revealed four main research topics for the application of ML: chemical characterization of pollutants, short-term forecasting, detection improvement and optimizing emission control. The rapid development of ML algorithms has increased the capability to explore the chemical characteristics of multiple pollutants, analyze chemical reactions and their driving factors, and simulate scenarios. Combined with multi-field data, ML models are a powerful tool for analyzing atmospheric chemical processes and evaluating the management of air quality and deserve greater attention in future.",,Air pollution;Pollutant;Air pollutants;Pollution;Air quality index;Environmental science;Computer science;Process (computing);Field (mathematics);Meteorology;Machine learning;Operations research;Mathematics;Chemistry;Geography;Operating system;Pure mathematics;Organic chemistry;Biology;Ecology,https://openalex.org/W1968015368;https://openalex.org/W1968840994;https://openalex.org/W1970214772;https://openalex.org/W1972993779;https://openalex.org/W1973798705;https://openalex.org/W1983097169;https://openalex.org/W1995265224;https://openalex.org/W2006881475;https://openalex.org/W2009329344;https://openalex.org/W2017936885;https://openalex.org/W2024550526;https://openalex.org/W2026083729;https://openalex.org/W2042460614;https://openalex.org/W2081990052;https://openalex.org/W2088217228;https://openalex.org/W2089273527;https://openalex.org/W2094183206;https://openalex.org/W2101896997;https://openalex.org/W2110725020;https://openalex.org/W2143481518;https://openalex.org/W2150220236;https://openalex.org/W2268953907;https://openalex.org/W2323483937;https://openalex.org/W2471323753;https://openalex.org/W2543678400;https://openalex.org/W2559599946;https://openalex.org/W2620300958;https://openalex.org/W2760506659;https://openalex.org/W2784031884;https://openalex.org/W2800133189;https://openalex.org/W2901899013;https://openalex.org/W2903595533;https://openalex.org/W2912731314;https://openalex.org/W2990513755;https://openalex.org/W2990965051;https://openalex.org/W2991648381;https://openalex.org/W2994917295;https://openalex.org/W3010308848;https://openalex.org/W3013384466;https://openalex.org/W3021168369;https://openalex.org/W3034234413;https://openalex.org/W3034249623;https://openalex.org/W3038966175;https://openalex.org/W3041036705;https://openalex.org/W3044025067;https://openalex.org/W3046577772;https://openalex.org/W3071204575;https://openalex.org/W3081625936;https://openalex.org/W3093369049;https://openalex.org/W3094330861;https://openalex.org/W3094905049;https://openalex.org/W3106341490;https://openalex.org/W3107146702;https://openalex.org/W3115103108;https://openalex.org/W3119223558;https://openalex.org/W3119665391;https://openalex.org/W3120019038;https://openalex.org/W3120228528;https://openalex.org/W3129151888;https://openalex.org/W3134223197;https://openalex.org/W3135551422;https://openalex.org/W3158635464;https://openalex.org/W3165356482;https://openalex.org/W3183100395;https://openalex.org/W3193638860;https://openalex.org/W3197238626;https://openalex.org/W3203663665;https://openalex.org/W3215556695;https://openalex.org/W3216978572;https://openalex.org/W4206454612;https://openalex.org/W4210248900;https://openalex.org/W4210270671;https://openalex.org/W4211205884;https://openalex.org/W4220705625;https://openalex.org/W4221000442;https://openalex.org/W4221045736;https://openalex.org/W4224240129;https://openalex.org/W4280628125;https://openalex.org/W4281644131;https://openalex.org/W4285807826;https://openalex.org/W4286500596;https://openalex.org/W4292318061;https://openalex.org/W4304124303;https://openalex.org/W4310225776;https://openalex.org/W4311635257;https://openalex.org/W4315631859;https://openalex.org/W6671079822;https://openalex.org/W6791520476;https://openalex.org/W6799744991,OPENALEX,"Yunzhe Li, 2023, Ecotoxicology and Environmental Safety","Yunzhe Li, 2023, Ecotoxicology and Environmental Safety"
+Deep learning for healthcare applications based on physiological signals: A review,2018,review,en,1016,10.1016/j.cmpb.2018.04.005,https://openalex.org/W2797694788,29852952,Oliver Faust;Yuki Hagiwara;Tan Jen Hong;Oh Shu Lih;U. Rajendra Acharya,Oliver Faust;Yuki Hagiwara;Tan Jen Hong;Oh Shu Lih;U. Rajendra Acharya,Sheffield Hallam University;Ngee Ann Polytechnic;Ngee Ann Polytechnic;Ngee Ann Polytechnic;University of Malaya;Ngee Ann Polytechnic;Singapore University of Social Sciences,Oliver Faust,Computer Methods and Programs in Biomedicine,Computer Methods and Programs in Biomedicine,161,,1,13,,,Deep learning;Computer science;Artificial intelligence;Machine learning;Quality (philosophy);Big data;Health care;Data science;Data mining;Epistemology;Economics;Philosophy;Economic growth,https://openalex.org/W60493759;https://openalex.org/W89197320;https://openalex.org/W119403003;https://openalex.org/W121410702;https://openalex.org/W140777655;https://openalex.org/W150292108;https://openalex.org/W197865394;https://openalex.org/W210506677;https://openalex.org/W363355628;https://openalex.org/W599959547;https://openalex.org/W1480980134;https://openalex.org/W1490308602;https://openalex.org/W1491697777;https://openalex.org/W1495061682;https://openalex.org/W1528285574;https://openalex.org/W1538131130;https://openalex.org/W1551271717;https://openalex.org/W1603219075;https://openalex.org/W1617232655;https://openalex.org/W1813659000;https://openalex.org/W1819910625;https://openalex.org/W1883664232;https://openalex.org/W1916292342;https://openalex.org/W1948981500;https://openalex.org/W1966262416;https://openalex.org/W1968274879;https://openalex.org/W1972148060;https://openalex.org/W1977210227;https://openalex.org/W1977931720;https://openalex.org/W1984020445;https://openalex.org/W1994422401;https://openalex.org/W1998523455;https://openalex.org/W2002055708;https://openalex.org/W2004104731;https://openalex.org/W2007945931;https://openalex.org/W2009787667;https://openalex.org/W2017337590;https://openalex.org/W2026430219;https://openalex.org/W2032536435;https://openalex.org/W2036801659;https://openalex.org/W2038569194;https://openalex.org/W2042716610;https://openalex.org/W2043596210;https://openalex.org/W2044170013;https://openalex.org/W2044455804;https://openalex.org/W2050265252;https://openalex.org/W2055735905;https://openalex.org/W2055821135;https://openalex.org/W2064675550;https://openalex.org/W2070804684;https://openalex.org/W2082480549;https://openalex.org/W2084174584;https://openalex.org/W2089034242;https://openalex.org/W2095409369;https://openalex.org/W2099579406;https://openalex.org/W2099899182;https://openalex.org/W2100495367;https://openalex.org/W2101591109;https://openalex.org/W2103308415;https://openalex.org/W2105577021;https://openalex.org/W2109930285;https://openalex.org/W2110798204;https://openalex.org/W2112796928;https://openalex.org/W2113141977;https://openalex.org/W2116570678;https://openalex.org/W2118023920;https://openalex.org/W2119351517;https://openalex.org/W2126698740;https://openalex.org/W2127430888;https://openalex.org/W2128935152;https://openalex.org/W2131103247;https://openalex.org/W2131442495;https://openalex.org/W2131740154;https://openalex.org/W2133565549;https://openalex.org/W2133693888;https://openalex.org/W2136897104;https://openalex.org/W2136922672;https://openalex.org/W2137317612;https://openalex.org/W2138580453;https://openalex.org/W2138857742;https://openalex.org/W2141330748;https://openalex.org/W2144691514;https://openalex.org/W2150665176;https://openalex.org/W2150765527;https://openalex.org/W2153677276;https://openalex.org/W2153912116;https://openalex.org/W2156694087;https://openalex.org/W2162480886;https://openalex.org/W2162800060;https://openalex.org/W2164082066;https://openalex.org/W2164179736;https://openalex.org/W2164700406;https://openalex.org/W2165061769;https://openalex.org/W2165611870;https://openalex.org/W2168231600;https://openalex.org/W2169812774;https://openalex.org/W2169931829;https://openalex.org/W2170635294;https://openalex.org/W2176823577;https://openalex.org/W2181785117;https://openalex.org/W2202063965;https://openalex.org/W2244991220;https://openalex.org/W2254715784;https://openalex.org/W2273832011;https://openalex.org/W2277546892;https://openalex.org/W2291961022;https://openalex.org/W2293585160;https://openalex.org/W2311607323;https://openalex.org/W2314438496;https://openalex.org/W2322503732;https://openalex.org/W2323693010;https://openalex.org/W2328786298;https://openalex.org/W2329160650;https://openalex.org/W2334909404;https://openalex.org/W2337970775;https://openalex.org/W2342619534;https://openalex.org/W2395817516;https://openalex.org/W2411311483;https://openalex.org/W2414309931;https://openalex.org/W2488164446;https://openalex.org/W2504629029;https://openalex.org/W2507528282;https://openalex.org/W2508171209;https://openalex.org/W2516710120;https://openalex.org/W2518549849;https://openalex.org/W2527796983;https://openalex.org/W2545231353;https://openalex.org/W2555541061;https://openalex.org/W2557283755;https://openalex.org/W2559655401;https://openalex.org/W2561645127;https://openalex.org/W2564965427;https://openalex.org/W2584401907;https://openalex.org/W2602226095;https://openalex.org/W2604272474;https://openalex.org/W2605056515;https://openalex.org/W2606856422;https://openalex.org/W2607671730;https://openalex.org/W2610332124;https://openalex.org/W2610751394;https://openalex.org/W2617052765;https://openalex.org/W2617669016;https://openalex.org/W2621205740;https://openalex.org/W2626621447;https://openalex.org/W2684229413;https://openalex.org/W2702116941;https://openalex.org/W2735293316;https://openalex.org/W2735394685;https://openalex.org/W2741907166;https://openalex.org/W2742829803;https://openalex.org/W2743850381;https://openalex.org/W2743916180;https://openalex.org/W2745699887;https://openalex.org/W2748902594;https://openalex.org/W2752548164;https://openalex.org/W2754780393;https://openalex.org/W2759483166;https://openalex.org/W2762044763;https://openalex.org/W2765746460;https://openalex.org/W2766090099;https://openalex.org/W2781924583;https://openalex.org/W2794164352;https://openalex.org/W2796901959;https://openalex.org/W2811380766;https://openalex.org/W2919115771;https://openalex.org/W2949416428;https://openalex.org/W2949608135;https://openalex.org/W2963173190;https://openalex.org/W2963453445;https://openalex.org/W2963855931;https://openalex.org/W2971266385;https://openalex.org/W2990138404;https://openalex.org/W3099350049;https://openalex.org/W3144756387;https://openalex.org/W3146198738;https://openalex.org/W3147744617;https://openalex.org/W3148545908;https://openalex.org/W3155136669;https://openalex.org/W3170927446;https://openalex.org/W4206131474;https://openalex.org/W4243310154;https://openalex.org/W4289257419;https://openalex.org/W4297683907;https://openalex.org/W4301409532;https://openalex.org/W6603612187;https://openalex.org/W6604713538;https://openalex.org/W6604801135;https://openalex.org/W6608057492;https://openalex.org/W6608523365;https://openalex.org/W6628812637;https://openalex.org/W6631448583;https://openalex.org/W6632100814;https://openalex.org/W6633033121;https://openalex.org/W6636590548;https://openalex.org/W6637050416;https://openalex.org/W6638304892;https://openalex.org/W6638622882;https://openalex.org/W6644620936;https://openalex.org/W6651415378;https://openalex.org/W6658231613;https://openalex.org/W6661596742;https://openalex.org/W6662878696;https://openalex.org/W6664716535;https://openalex.org/W6671509538;https://openalex.org/W6675119322;https://openalex.org/W6675770872;https://openalex.org/W6675944832;https://openalex.org/W6676481782;https://openalex.org/W6676840641;https://openalex.org/W6679062898;https://openalex.org/W6679178811;https://openalex.org/W6679203416;https://openalex.org/W6680300913;https://openalex.org/W6684057482;https://openalex.org/W6684192940;https://openalex.org/W6684859321;https://openalex.org/W6690864253;https://openalex.org/W6691839725;https://openalex.org/W6700310320;https://openalex.org/W6704516918;https://openalex.org/W6712047944;https://openalex.org/W6725013779;https://openalex.org/W6725250787;https://openalex.org/W6726816342;https://openalex.org/W6729143337;https://openalex.org/W6731289271;https://openalex.org/W6735404033;https://openalex.org/W6736817290;https://openalex.org/W6736885271;https://openalex.org/W6738370415;https://openalex.org/W6741002207;https://openalex.org/W6741089596;https://openalex.org/W6742171722;https://openalex.org/W6742388267;https://openalex.org/W6742673142;https://openalex.org/W6742953368;https://openalex.org/W6744046843;https://openalex.org/W6744155752;https://openalex.org/W6744536435;https://openalex.org/W6745129231;https://openalex.org/W6745410362;https://openalex.org/W6745481233,OPENALEX,"Oliver Faust, 2018, Computer Methods and Programs in Biomedicine","Oliver Faust, 2018, Computer Methods and Programs in Biomedicine"
+Industry 4.0: A bibliometric analysis and detailed overview,2018,article,en,544,10.1016/j.engappai.2018.11.007,https://openalex.org/W2904029666,,Pranab K. Muhuri;Amit K. Shukla;Ajith Abraham,Pranab K. Muhuri;Amit K. Shukla;Ajith Abraham,South Asian University;South Asian University;Machine Intelligence Research Labs,Pranab K. Muhuri,Engineering Applications of Artificial Intelligence,Engineering Applications of Artificial Intelligence,78,,218,235,,,Computer science;Field (mathematics);Bibliometrics;Industrial Revolution;Automation;Data science;Citation;Citation analysis;Subject (documents);Operations research;Engineering management;Library science;Pure mathematics;Mechanical engineering;Engineering;Mathematics;Political science;Law,https://openalex.org/W203466237;https://openalex.org/W368346290;https://openalex.org/W599150255;https://openalex.org/W752225299;https://openalex.org/W762013013;https://openalex.org/W916305875;https://openalex.org/W1613130854;https://openalex.org/W1627723619;https://openalex.org/W1761827578;https://openalex.org/W1865772772;https://openalex.org/W1911193768;https://openalex.org/W1967904196;https://openalex.org/W1969324951;https://openalex.org/W1972727474;https://openalex.org/W1975309891;https://openalex.org/W1996654773;https://openalex.org/W2001377707;https://openalex.org/W2003443078;https://openalex.org/W2014939786;https://openalex.org/W2020623523;https://openalex.org/W2020851875;https://openalex.org/W2021227483;https://openalex.org/W2029608738;https://openalex.org/W2035922091;https://openalex.org/W2044049559;https://openalex.org/W2053401910;https://openalex.org/W2053730785;https://openalex.org/W2069134922;https://openalex.org/W2070665593;https://openalex.org/W2078500726;https://openalex.org/W2100297710;https://openalex.org/W2110837847;https://openalex.org/W2133720971;https://openalex.org/W2175330946;https://openalex.org/W2177391779;https://openalex.org/W2220043696;https://openalex.org/W2241928397;https://openalex.org/W2253828178;https://openalex.org/W2254680660;https://openalex.org/W2254884657;https://openalex.org/W2262056676;https://openalex.org/W2263682169;https://openalex.org/W2269884114;https://openalex.org/W2270075604;https://openalex.org/W2275696275;https://openalex.org/W2286121906;https://openalex.org/W2286131889;https://openalex.org/W2286737823;https://openalex.org/W2286761208;https://openalex.org/W2291031992;https://openalex.org/W2295939521;https://openalex.org/W2296597512;https://openalex.org/W2303531378;https://openalex.org/W2309748694;https://openalex.org/W2314026516;https://openalex.org/W2317016330;https://openalex.org/W2321296019;https://openalex.org/W2322277786;https://openalex.org/W2325381945;https://openalex.org/W2329719719;https://openalex.org/W2330421065;https://openalex.org/W2330559246;https://openalex.org/W2334044903;https://openalex.org/W2339884137;https://openalex.org/W2341523100;https://openalex.org/W2364839527;https://openalex.org/W2396381190;https://openalex.org/W2400465853;https://openalex.org/W2401926108;https://openalex.org/W2402219588;https://openalex.org/W2409048579;https://openalex.org/W2419409856;https://openalex.org/W2429580764;https://openalex.org/W2463378445;https://openalex.org/W2464269931;https://openalex.org/W2465639267;https://openalex.org/W2467389505;https://openalex.org/W2491710580;https://openalex.org/W2493545044;https://openalex.org/W2493990996;https://openalex.org/W2497722157;https://openalex.org/W2498966538;https://openalex.org/W2507539066;https://openalex.org/W2507578125;https://openalex.org/W2509189416;https://openalex.org/W2510192511;https://openalex.org/W2510221533;https://openalex.org/W2510393639;https://openalex.org/W2511169723;https://openalex.org/W2512081298;https://openalex.org/W2514802974;https://openalex.org/W2517238017;https://openalex.org/W2517803083;https://openalex.org/W2518724857;https://openalex.org/W2518789614;https://openalex.org/W2519166994;https://openalex.org/W2519832518;https://openalex.org/W2520848981;https://openalex.org/W2522676763;https://openalex.org/W2522848878;https://openalex.org/W2528223815;https://openalex.org/W2529256613;https://openalex.org/W2530636115;https://openalex.org/W2530806083;https://openalex.org/W2531117592;https://openalex.org/W2531237699;https://openalex.org/W2532493213;https://openalex.org/W2533615014;https://openalex.org/W2535680912;https://openalex.org/W2536185349;https://openalex.org/W2538959687;https://openalex.org/W2541556211;https://openalex.org/W2543552616;https://openalex.org/W2549899326;https://openalex.org/W2550063643;https://openalex.org/W2550133903;https://openalex.org/W2550758296;https://openalex.org/W2551586735;https://openalex.org/W2553173084;https://openalex.org/W2560319175;https://openalex.org/W2562031796;https://openalex.org/W2562594539;https://openalex.org/W2564000999;https://openalex.org/W2565337694;https://openalex.org/W2566246429;https://openalex.org/W2576683550;https://openalex.org/W2578148477;https://openalex.org/W2579952554;https://openalex.org/W2581003607;https://openalex.org/W2587530705;https://openalex.org/W2588128257;https://openalex.org/W2588244098;https://openalex.org/W2588265266;https://openalex.org/W2588941434;https://openalex.org/W2589106234;https://openalex.org/W2589264714;https://openalex.org/W2591879378;https://openalex.org/W2593168467;https://openalex.org/W2596115488;https://openalex.org/W2597937851;https://openalex.org/W2598195321;https://openalex.org/W2598614965;https://openalex.org/W2602722581;https://openalex.org/W2603008685;https://openalex.org/W2604047614;https://openalex.org/W2605350360;https://openalex.org/W2605396005;https://openalex.org/W2605617766;https://openalex.org/W2605859962;https://openalex.org/W2606007596;https://openalex.org/W2606614575;https://openalex.org/W2606712829;https://openalex.org/W2606989030;https://openalex.org/W2607075461;https://openalex.org/W2608221962;https://openalex.org/W2608262991;https://openalex.org/W2609360423;https://openalex.org/W2611169024;https://openalex.org/W2611323262;https://openalex.org/W2612675686;https://openalex.org/W2613375872;https://openalex.org/W2613380780;https://openalex.org/W2613912370;https://openalex.org/W2614052420;https://openalex.org/W2614975689;https://openalex.org/W2616355932;https://openalex.org/W2616523515;https://openalex.org/W2617265072;https://openalex.org/W2620020536;https://openalex.org/W2620329938;https://openalex.org/W2621054412;https://openalex.org/W2624392934;https://openalex.org/W2626956230;https://openalex.org/W2719680015;https://openalex.org/W2724841973;https://openalex.org/W2726515824;https://openalex.org/W2732476220;https://openalex.org/W2735814933;https://openalex.org/W2736636266;https://openalex.org/W2737303052;https://openalex.org/W2737372384;https://openalex.org/W2739032862;https://openalex.org/W2740921263;https://openalex.org/W2741064167;https://openalex.org/W2744510879;https://openalex.org/W2744853437;https://openalex.org/W2746457839;https://openalex.org/W2749711070;https://openalex.org/W2751290343;https://openalex.org/W2751753082;https://openalex.org/W2753925308;https://openalex.org/W2761696772;https://openalex.org/W2762368300;https://openalex.org/W2766150889;https://openalex.org/W2768676168;https://openalex.org/W2769306953;https://openalex.org/W2782820507;https://openalex.org/W2794589122;https://openalex.org/W2801175696;https://openalex.org/W2883410550;https://openalex.org/W2883434573;https://openalex.org/W2945709249;https://openalex.org/W3131309719;https://openalex.org/W3163415141;https://openalex.org/W3168424793;https://openalex.org/W4251052400;https://openalex.org/W6608224410;https://openalex.org/W6618280753;https://openalex.org/W6638999957;https://openalex.org/W6641888110;https://openalex.org/W6654157452;https://openalex.org/W6659594763;https://openalex.org/W6664116224;https://openalex.org/W6668582800;https://openalex.org/W6676442457;https://openalex.org/W6689959475;https://openalex.org/W6695147765;https://openalex.org/W6696310485;https://openalex.org/W6697572475;https://openalex.org/W6698943286;https://openalex.org/W6707461644;https://openalex.org/W6714205199;https://openalex.org/W6725597126;https://openalex.org/W6728302343;https://openalex.org/W6728605396;https://openalex.org/W6728734409;https://openalex.org/W6729061309;https://openalex.org/W6730059907;https://openalex.org/W6730401236;https://openalex.org/W6731578184;https://openalex.org/W6733625734;https://openalex.org/W6736518168;https://openalex.org/W6737950052;https://openalex.org/W6738590483;https://openalex.org/W6738761505;https://openalex.org/W6741953183;https://openalex.org/W6745258282;https://openalex.org/W6747493315;https://openalex.org/W6762670007;https://openalex.org/W7018576685,OPENALEX,"Pranab K. Muhuri, 2018, Engineering Applications of Artificial Intelligence","Pranab K. Muhuri, 2018, Engineering Applications of Artificial Intelligence"
+Machine Learning-Driven Multidomain Nanomaterial Design: From Bibliometric Analysis to Applications,2024,article,en,65,10.1021/acsanm.4c04940,https://openalex.org/W4404592056,,Hong Wang;Hengyu Cao;Liang Yang,Hong Wang;Hengyu Cao;Liang Yang,Yan'an University;Yan'an University;Yan'an University,Hong Wang,ACS Applied Nano Materials,ACS Applied Nano Materials,7,23,26579,26600,"Machine learning (ML), as an advanced data analysis tool, simulates the learning process of the human brain, enabling the extraction of features, discovery of patterns, and making accurate predictions or decisions from complex data. In the field of nanomaterial design, the application of ML technology not only accelerates the discovery and performance optimization of nanomaterials but also promotes the innovation of materials science research methods. Bibliometrics, as a research method based on quantitative analysis, provides us with a macro perspective to observe and understand the application of ML technology in nanomaterial design by statistically analyzing various indicators in the scientific literature. This paper quantitatively analyzes the literature related to ML-driven nanomaterial design from seven dimensions, revealing the importance and necessity of ML technology in nanomaterial design. It also systematically analyzes the diversified applications of the combination of ML technology and nanomaterial technology with the design of suitable ML algorithms being key to enhancing the performance of nanomaterials. In addition, this paper discusses current challenges and future development directions, including data quality and data set construction, algorithm innovation and optimization, and the deepening of interdisciplinary cooperation. This review not only provides researchers with a macro perspective to observe the current state and development trends of the field but also provides ideas and suggestions for future research. This is of significant importance and value for promoting scientific progress in the field of nanomaterial design, fostering the in-depth development of interdisciplinary research, and accelerating the innovative application of material technologies.",,Computer science;Nanotechnology;Data science;Materials science,https://openalex.org/W1876947117;https://openalex.org/W2150220236;https://openalex.org/W2339093665;https://openalex.org/W2498987500;https://openalex.org/W2609132363;https://openalex.org/W2731422849;https://openalex.org/W2780966672;https://openalex.org/W2782058610;https://openalex.org/W2804226360;https://openalex.org/W2883482411;https://openalex.org/W2884430236;https://openalex.org/W2884985123;https://openalex.org/W2894463230;https://openalex.org/W2904207857;https://openalex.org/W2944415948;https://openalex.org/W2952126818;https://openalex.org/W2963453445;https://openalex.org/W2985869506;https://openalex.org/W2996191685;https://openalex.org/W3007217854;https://openalex.org/W3007991303;https://openalex.org/W3012301245;https://openalex.org/W3016152816;https://openalex.org/W3031399045;https://openalex.org/W3040552910;https://openalex.org/W3045163139;https://openalex.org/W3094089673;https://openalex.org/W3095028680;https://openalex.org/W3107412307;https://openalex.org/W3113917069;https://openalex.org/W3118215188;https://openalex.org/W3120960655;https://openalex.org/W3127253295;https://openalex.org/W3134788569;https://openalex.org/W3184635088;https://openalex.org/W3209974011;https://openalex.org/W3214207699;https://openalex.org/W3216978572;https://openalex.org/W4200303692;https://openalex.org/W4200480891;https://openalex.org/W4200587103;https://openalex.org/W4205977780;https://openalex.org/W4220710693;https://openalex.org/W4220908012;https://openalex.org/W4220911441;https://openalex.org/W4220940332;https://openalex.org/W4280583100;https://openalex.org/W4283312514;https://openalex.org/W4283373613;https://openalex.org/W4285890348;https://openalex.org/W4288969942;https://openalex.org/W4289317700;https://openalex.org/W4293056493;https://openalex.org/W4294287005;https://openalex.org/W4295441317;https://openalex.org/W4295779105;https://openalex.org/W4295864679;https://openalex.org/W4296071376;https://openalex.org/W4306645378;https://openalex.org/W4309668086;https://openalex.org/W4313680957;https://openalex.org/W4319830947;https://openalex.org/W4323033656;https://openalex.org/W4323304766;https://openalex.org/W4376126638;https://openalex.org/W4378417902;https://openalex.org/W4378675844;https://openalex.org/W4379094177;https://openalex.org/W4379645088;https://openalex.org/W4380078168;https://openalex.org/W4380758787;https://openalex.org/W4381827788;https://openalex.org/W4382240865;https://openalex.org/W4383199314;https://openalex.org/W4384661668;https://openalex.org/W4386042036;https://openalex.org/W4386204390;https://openalex.org/W4388049043;https://openalex.org/W4388070567;https://openalex.org/W4389328776;https://openalex.org/W4390607201;https://openalex.org/W4390750649;https://openalex.org/W4390919496;https://openalex.org/W4391014981;https://openalex.org/W4391560002;https://openalex.org/W4391848991;https://openalex.org/W4391876345;https://openalex.org/W4391918971;https://openalex.org/W4392346759;https://openalex.org/W4392799655;https://openalex.org/W4393132067;https://openalex.org/W4394893529;https://openalex.org/W4394945461;https://openalex.org/W4397292025;https://openalex.org/W4398137864;https://openalex.org/W4398177352;https://openalex.org/W4398770837;https://openalex.org/W4399661414;https://openalex.org/W4400244247;https://openalex.org/W4400477326;https://openalex.org/W4400804197;https://openalex.org/W4401990043;https://openalex.org/W4402519652;https://openalex.org/W4403378563,OPENALEX,"Hong Wang, 2024, ACS Applied Nano Materials","Hong Wang, 2024, ACS Applied Nano Materials"
+A Comprehensive Overview of the COVID-19 Literature: Machine Learning–Based Bibliometric Analysis,2020,review,en,64,10.2196/23703,https://openalex.org/W3109709573,33600346,Alaa Abd‐Alrazaq;Jens Schneider;Borbála Mifsud;Tanvir Alam;Mowafa Househ;Mounir Hamdi;Zubair Shah,Alaa Abd‐Alrazaq;Jens Schneider;Borbála Mifsud;Tanvir Alam;Mowafa Househ;Mounir Hamdi;Zubair Shah,Hamad bin Khalifa University;Qatar Foundation;Hamad bin Khalifa University;Qatar Foundation;Hamad bin Khalifa University;Qatar Foundation;Hamad bin Khalifa University;Qatar Foundation;Hamad bin Khalifa University;Qatar Foundation;Hamad bin Khalifa University;Qatar Foundation;Hamad bin Khalifa University;Qatar Foundation,Alaa Abd‐Alrazaq,Journal of Medical Internet Research,Journal of Medical Internet Research,23,3,e23703,e23703,"BACKGROUND: Shortly after the emergence of COVID-19, researchers rapidly mobilized to study numerous aspects of the disease such as its evolution, clinical manifestations, effects, treatments, and vaccinations. This led to a rapid increase in the number of COVID-19-related publications. Identifying trends and areas of interest using traditional review methods (eg, scoping and systematic reviews) for such a large domain area is challenging. OBJECTIVE: We aimed to conduct an extensive bibliometric analysis to provide a comprehensive overview of the COVID-19 literature. METHODS: We used the COVID-19 Open Research Dataset (CORD-19) that consists of a large number of research articles related to all coronaviruses. We used a machine learning-based method to analyze the most relevant COVID-19-related articles and extracted the most prominent topics. Specifically, we used a clustering algorithm to group published articles based on the similarity of their abstracts to identify research hotspots and current research directions. We have made our software accessible to the community via GitHub. RESULTS: Of the 196,630 publications retrieved from the database, we included 28,904 in our analysis. The mean number of weekly publications was 990 (SD 789.3). The country that published the highest number of COVID-19-related articles was China (2950/17,270, 17.08%). The highest number of articles were published in bioRxiv. Lei Liu affiliated with the Southern University of Science and Technology in China published the highest number of articles (n=46). Based on titles and abstracts alone, we were able to identify 1515 surveys, 733 systematic reviews, 512 cohort studies, 480 meta-analyses, and 362 randomized control trials. We identified 19 different topics covered among the publications reviewed. The most dominant topic was public health response, followed by clinical care practices during the COVID-19 pandemic, clinical characteristics and risk factors, and epidemic models for its spread. CONCLUSIONS: We provide an overview of the COVID-19 literature and have identified current hotspots and research directions. Our findings can be useful for the research community to help prioritize research needs and recognize leading COVID-19 researchers, institutes, countries, and publishers. Our study shows that an AI-based bibliometric analysis has the potential to rapidly explore a large corpus of academic publications during a public health crisis. We believe that this work can be used to analyze other eHealth-related literature to help clinicians, administrators, and policy makers to obtain a holistic view of the literature and be able to categorize different topics of the existing research for further analyses. It can be further scaled (for instance, in time) to clinical summary documentation. Publishers should avoid noise in the data by developing a way to trace the evolution of individual publications and unique authors.",,Coronavirus disease 2019 (COVID-19);Bibliometrics;Data science;Systematic review;MEDLINE;Severe acute respiratory syndrome coronavirus 2 (SARS-CoV-2);Cluster analysis;2019-20 coronavirus outbreak;Computer science;Library science;Medicine;Artificial intelligence;Disease;Political science;Infectious disease (medical specialty);Pathology;Law;Outbreak,https://openalex.org/W2902756944;https://openalex.org/W3004172287;https://openalex.org/W3008963226;https://openalex.org/W3011075241;https://openalex.org/W3011866596;https://openalex.org/W3011940380;https://openalex.org/W3012080801;https://openalex.org/W3012333977;https://openalex.org/W3012882790;https://openalex.org/W3012921363;https://openalex.org/W3013585706;https://openalex.org/W3013627312;https://openalex.org/W3013917296;https://openalex.org/W3013933578;https://openalex.org/W3014667363;https://openalex.org/W3014874133;https://openalex.org/W3014989172;https://openalex.org/W3015137485;https://openalex.org/W3015320793;https://openalex.org/W3015506441;https://openalex.org/W3015538318;https://openalex.org/W3016713881;https://openalex.org/W3016743394;https://openalex.org/W3016853506;https://openalex.org/W3016998206;https://openalex.org/W3017185760;https://openalex.org/W3017771577;https://openalex.org/W3017981638;https://openalex.org/W3020236154;https://openalex.org/W3020571666;https://openalex.org/W3022417061;https://openalex.org/W3022605724;https://openalex.org/W3022687260;https://openalex.org/W3022853666;https://openalex.org/W3023309767;https://openalex.org/W3023617420;https://openalex.org/W3023730836;https://openalex.org/W3023787531;https://openalex.org/W3023837380;https://openalex.org/W3024219744;https://openalex.org/W3025004229;https://openalex.org/W3025009722;https://openalex.org/W3025195557;https://openalex.org/W3025398491;https://openalex.org/W3025798952;https://openalex.org/W3025947019;https://openalex.org/W3027888856;https://openalex.org/W3028532970;https://openalex.org/W3028746115;https://openalex.org/W3029693220;https://openalex.org/W3030072408;https://openalex.org/W3030381168;https://openalex.org/W3030569139;https://openalex.org/W3031378866;https://openalex.org/W3031399436;https://openalex.org/W3032567804;https://openalex.org/W3032906137;https://openalex.org/W3033399633;https://openalex.org/W3033402847;https://openalex.org/W3033459419;https://openalex.org/W3033490986;https://openalex.org/W3033511704;https://openalex.org/W3033656034;https://openalex.org/W3033995497;https://openalex.org/W3034094473;https://openalex.org/W3034168389;https://openalex.org/W3034823399;https://openalex.org/W3035086245;https://openalex.org/W3035358684;https://openalex.org/W3035738908;https://openalex.org/W3036441990;https://openalex.org/W3036565334;https://openalex.org/W3036603673;https://openalex.org/W3036720715;https://openalex.org/W3036766830;https://openalex.org/W3037019683;https://openalex.org/W3037645176;https://openalex.org/W3037651109;https://openalex.org/W3038553353;https://openalex.org/W3039652957;https://openalex.org/W3040374382;https://openalex.org/W3040542574;https://openalex.org/W3040775624;https://openalex.org/W3040877555;https://openalex.org/W3041093092;https://openalex.org/W3041250651;https://openalex.org/W3041821205;https://openalex.org/W3041878244;https://openalex.org/W3042091277;https://openalex.org/W3042239856;https://openalex.org/W3042248855;https://openalex.org/W3042399641;https://openalex.org/W3042710560;https://openalex.org/W3042898756;https://openalex.org/W3042924126;https://openalex.org/W3043065230;https://openalex.org/W3043224541;https://openalex.org/W3043415253;https://openalex.org/W3043618167;https://openalex.org/W3043697210;https://openalex.org/W3043746245;https://openalex.org/W3043764490;https://openalex.org/W3044209152;https://openalex.org/W3044846600;https://openalex.org/W3044892471;https://openalex.org/W3045956845;https://openalex.org/W3047747926;https://openalex.org/W3086236016;https://openalex.org/W3124760710;https://openalex.org/W4220693343;https://openalex.org/W4225989008;https://openalex.org/W4230559783;https://openalex.org/W4236122429;https://openalex.org/W4236624053;https://openalex.org/W4239351965;https://openalex.org/W4250704681,OPENALEX,"Alaa Abd‐Alrazaq, 2020, Journal of Medical Internet Research","Alaa Abd‐Alrazaq, 2020, Journal of Medical Internet Research"
+Machine learning techniques and data for stock market forecasting: A literature review,2022,review,en,491,10.1016/j.eswa.2022.116659,https://openalex.org/W4212791338,,Mahinda Mailagaha Kumbure;Christoph Lohrmann;Pasi Luukka;Jari Porras,Mahinda Mailagaha Kumbure;Christoph Lohrmann;Pasi Luukka;Jari Porras,Lappeenranta-Lahti University of Technology;Lappeenranta-Lahti University of Technology;Lappeenranta-Lahti University of Technology;Lappeenranta-Lahti University of Technology,Mahinda Mailagaha Kumbure,Expert Systems with Applications,Expert Systems with Applications,197,,116659,116659,"In this literature review, we investigate machine learning techniques that are applied for stock market prediction. A focus area in this literature review is the stock markets investigated in the literature as well as the types of variables used as input in the machine learning techniques used for predicting these markets. We examined 138 journal articles published between 2000 and 2019. The main contributions of this review are: (1) an extensive examination of the data, in particular, the markets and stock indices covered in the predictions, as well as the 2173 unique variables used for stock market predictions, including technical indicators, macro-economic variables, and fundamental indicators, and (2) an in-depth review of the machine learning techniques and their variants deployed for the predictions. In addition, we provide a bibliometric analysis of these journal articles, highlighting the most influential works and articles.",,Computer science;Machine learning;Stock market;Stock (firearms);Artificial intelligence;Macro;Stock market prediction;Econometrics;Economics;Engineering;Paleontology;Horse;Programming language;Mechanical engineering;Biology,https://openalex.org/W789578048;https://openalex.org/W855508711;https://openalex.org/W1024511229;https://openalex.org/W1494124194;https://openalex.org/W1558502133;https://openalex.org/W1697853073;https://openalex.org/W1807452827;https://openalex.org/W1815264562;https://openalex.org/W1866279363;https://openalex.org/W1949087994;https://openalex.org/W1966577984;https://openalex.org/W1975675278;https://openalex.org/W1975770397;https://openalex.org/W1978049199;https://openalex.org/W1978520392;https://openalex.org/W1979290264;https://openalex.org/W1979395212;https://openalex.org/W1980836123;https://openalex.org/W1984500452;https://openalex.org/W1986078433;https://openalex.org/W1986145156;https://openalex.org/W1988518729;https://openalex.org/W1988715797;https://openalex.org/W1994668012;https://openalex.org/W1995319408;https://openalex.org/W1997342558;https://openalex.org/W1997994299;https://openalex.org/W2001751530;https://openalex.org/W2003555953;https://openalex.org/W2004463884;https://openalex.org/W2005346797;https://openalex.org/W2005424446;https://openalex.org/W2011327086;https://openalex.org/W2011368107;https://openalex.org/W2011782945;https://openalex.org/W2012079387;https://openalex.org/W2013722099;https://openalex.org/W2017537474;https://openalex.org/W2017812666;https://openalex.org/W2021938316;https://openalex.org/W2023959308;https://openalex.org/W2025053102;https://openalex.org/W2031505816;https://openalex.org/W2031820816;https://openalex.org/W2032170121;https://openalex.org/W2039381705;https://openalex.org/W2039935421;https://openalex.org/W2041403160;https://openalex.org/W2041723890;https://openalex.org/W2042105482;https://openalex.org/W2043379390;https://openalex.org/W2043805990;https://openalex.org/W2046346480;https://openalex.org/W2047080235;https://openalex.org/W2048370582;https://openalex.org/W2049916782;https://openalex.org/W2050801485;https://openalex.org/W2053615983;https://openalex.org/W2056981468;https://openalex.org/W2058777398;https://openalex.org/W2065060269;https://openalex.org/W2066456070;https://openalex.org/W2066795664;https://openalex.org/W2066995518;https://openalex.org/W2070181657;https://openalex.org/W2080265874;https://openalex.org/W2083036265;https://openalex.org/W2085692898;https://openalex.org/W2085708398;https://openalex.org/W2089809028;https://openalex.org/W2090637028;https://openalex.org/W2098063401;https://openalex.org/W2101420345;https://openalex.org/W2101825885;https://openalex.org/W2103997983;https://openalex.org/W2104444668;https://openalex.org/W2108591703;https://openalex.org/W2111255674;https://openalex.org/W2121224351;https://openalex.org/W2124493593;https://openalex.org/W2125804487;https://openalex.org/W2126172796;https://openalex.org/W2128633294;https://openalex.org/W2129413312;https://openalex.org/W2144217557;https://openalex.org/W2144487825;https://openalex.org/W2145316193;https://openalex.org/W2145344497;https://openalex.org/W2148074536;https://openalex.org/W2162389778;https://openalex.org/W2168577773;https://openalex.org/W2168894761;https://openalex.org/W2202071898;https://openalex.org/W2210245339;https://openalex.org/W2260992041;https://openalex.org/W2301106258;https://openalex.org/W2324196090;https://openalex.org/W2345563409;https://openalex.org/W2385866669;https://openalex.org/W2400770063;https://openalex.org/W2409641346;https://openalex.org/W2468989783;https://openalex.org/W2479166638;https://openalex.org/W2500104392;https://openalex.org/W2523498403;https://openalex.org/W2554780437;https://openalex.org/W2566564364;https://openalex.org/W2571399401;https://openalex.org/W2580110346;https://openalex.org/W2582365220;https://openalex.org/W2585869517;https://openalex.org/W2587781392;https://openalex.org/W2593740144;https://openalex.org/W2593842564;https://openalex.org/W2594142095;https://openalex.org/W2601643873;https://openalex.org/W2607162077;https://openalex.org/W2624385633;https://openalex.org/W2625540161;https://openalex.org/W2728943311;https://openalex.org/W2751263409;https://openalex.org/W2754191969;https://openalex.org/W2762976654;https://openalex.org/W2768174908;https://openalex.org/W2773057751;https://openalex.org/W2780013296;https://openalex.org/W2784381726;https://openalex.org/W2789399411;https://openalex.org/W2791077645;https://openalex.org/W2791844767;https://openalex.org/W2792307024;https://openalex.org/W2793037577;https://openalex.org/W2797889333;https://openalex.org/W2806709681;https://openalex.org/W2809282474;https://openalex.org/W2810156540;https://openalex.org/W2833425706;https://openalex.org/W2845688424;https://openalex.org/W2865675487;https://openalex.org/W2874218187;https://openalex.org/W2886621583;https://openalex.org/W2888821844;https://openalex.org/W2891929938;https://openalex.org/W2894041752;https://openalex.org/W2895790973;https://openalex.org/W2897733922;https://openalex.org/W2897787857;https://openalex.org/W2900329809;https://openalex.org/W2902087482;https://openalex.org/W2902640113;https://openalex.org/W2906628967;https://openalex.org/W2910107358;https://openalex.org/W2910401125;https://openalex.org/W2912784131;https://openalex.org/W2917600866;https://openalex.org/W2920934919;https://openalex.org/W2922995703;https://openalex.org/W2931437238;https://openalex.org/W2936018573;https://openalex.org/W2938308298;https://openalex.org/W2945346514;https://openalex.org/W2946975908;https://openalex.org/W2947053643;https://openalex.org/W2947836816;https://openalex.org/W2949202718;https://openalex.org/W2949785328;https://openalex.org/W2949985842;https://openalex.org/W2950213400;https://openalex.org/W2950843237;https://openalex.org/W2964523010;https://openalex.org/W2970016095;https://openalex.org/W2975308768;https://openalex.org/W2979835384;https://openalex.org/W2987294427;https://openalex.org/W2993958139;https://openalex.org/W2997512255;https://openalex.org/W2998216295;https://openalex.org/W3002756429;https://openalex.org/W3009650506;https://openalex.org/W3016597555;https://openalex.org/W3019427697;https://openalex.org/W3036172083;https://openalex.org/W3041929891;https://openalex.org/W3046223032;https://openalex.org/W3081799531;https://openalex.org/W3084045086;https://openalex.org/W3110420963;https://openalex.org/W3120269867;https://openalex.org/W3122305330;https://openalex.org/W3123909942;https://openalex.org/W3124185353;https://openalex.org/W3124818628;https://openalex.org/W3125462345;https://openalex.org/W3130367027;https://openalex.org/W3152934775;https://openalex.org/W3155398915;https://openalex.org/W3162417502;https://openalex.org/W3193962426;https://openalex.org/W4211007335;https://openalex.org/W4231546411;https://openalex.org/W4300511110;https://openalex.org/W6662584374;https://openalex.org/W6663058530;https://openalex.org/W6693203454;https://openalex.org/W6704825425;https://openalex.org/W6744414302;https://openalex.org/W6771550436;https://openalex.org/W6788313817;https://openalex.org/W7066667914,OPENALEX,"Mahinda Mailagaha Kumbure, 2022, Expert Systems with Applications","Mahinda Mailagaha Kumbure, 2022, Expert Systems with Applications"
+Effect of Dietary Patterns on Inflammatory Bowel Disease: A Machine Learning Bibliometric and Visualization Analysis,2023,article,en,14,10.3390/nu15153442,https://openalex.org/W4385555437,37571379,Haodong He;Chuan Liu;Meilin Chen;Xingzhou Guo;Xiangyun Li;Zixuan Xiang;Fei Liao;Weiguo Dong,Haodong He;Chuan Liu;Meilin Chen;Xingzhou Guo;Xiangyun Li;Zixuan Xiang;Fei Liao;Weiguo Dong,Wuhan University;Renmin Hospital of Wuhan University;Wuhan University;Renmin Hospital of Wuhan University;Wuhan University;Renmin Hospital of Wuhan University;Wuhan University;Renmin Hospital of Wuhan University;Wuhan University;Renmin Hospital of Wuhan University;Wuhan University;Renmin Hospital of Wuhan University;Wuhan University;Renmin Hospital of Wuhan University;Wuhan University;Renmin Hospital of Wuhan University,Haodong He,Nutrients,Nutrients,15,15,3442,3442,"AIMS: This study aimed to analyze the related research on the influence of dietary patterns on IBD carried out over the past 30 years to obtain the context of the research field and to provide a scientific basis and guidance for the prevention and treatment of IBD. METHODS: The literature on the effects of dietary patterns on inflammatory bowel disease published over the past three decades was retrieved from the Web of Science Core Collection (WoSCC) database. CiteSpace, VOSviewer, the R software (version 4.3.0) bibliometrix package, the OALM platform, and other tools were used for the analyses. RESULTS: The growth of scientific papers related to this topic can be divided into two stages: before and after 2006. Overall, the growth of the relevant literature was in line with Price's literature growth curve. Subrata Ghosh and Antonio Gasbarrini are the authors with the highest academic influence in the field, and Lee D.'s research results are widely recognized by researchers in this field. Among the 72 countries involved in the study, the United States contributed the most, while China developed rapidly with regard to research being carried out in this area. From a regional perspective, countries and institutions in North America, Europe, and East Asia have made the most significant contributions to this field and have the closest cooperation. Among the 1074 articles included in the study, the most influential ones tended to consider the mechanism of the effect of dietary patterns on IBD from the perspective of the microbiome. Multiple tools were used for keyword analysis and mutual verification. The results showed that NF-κB, the Mediterranean diet, fatty acids, fecal microbiota, etc., are the focus and trends of current research. CONCLUSIONS: A Mediterranean-like dietary pattern may be a good dietary habit for IBD patients. Carbohydrates, fatty acids, and inulin-type fructans are closely related to IBD. Fatty acid, gut microbiota, NF-κB, oxidative stress, and endoplasmic reticulum stress are the hot topics in the study of the effects of dietary patterns on IBD and will be emerging research trends.",,Context (archaeology);Web of science;Bibliometrics;China;Perspective (graphical);Field (mathematics);Inflammatory bowel disease;Disease;Data science;Medicine;Geography;Library science;Computer science;Pathology;Artificial intelligence;Meta-analysis;Archaeology;Mathematics;Pure mathematics,https://openalex.org/W1941424948;https://openalex.org/W1968105193;https://openalex.org/W2004608617;https://openalex.org/W2020443042;https://openalex.org/W2030631780;https://openalex.org/W2069882434;https://openalex.org/W2074413036;https://openalex.org/W2087292184;https://openalex.org/W2090742607;https://openalex.org/W2097875133;https://openalex.org/W2112416468;https://openalex.org/W2134657806;https://openalex.org/W2151798187;https://openalex.org/W2165067288;https://openalex.org/W2166562121;https://openalex.org/W2229919701;https://openalex.org/W2625068954;https://openalex.org/W2739837760;https://openalex.org/W2766046358;https://openalex.org/W2803683171;https://openalex.org/W2803958193;https://openalex.org/W2909668868;https://openalex.org/W2948489634;https://openalex.org/W2958757303;https://openalex.org/W2979096324;https://openalex.org/W2980536183;https://openalex.org/W3009103391;https://openalex.org/W3026487817;https://openalex.org/W3092547488;https://openalex.org/W3116239144;https://openalex.org/W4200015646;https://openalex.org/W4210830167;https://openalex.org/W4281563844;https://openalex.org/W4281851373;https://openalex.org/W4293000213;https://openalex.org/W4295564163;https://openalex.org/W4296076189;https://openalex.org/W4319442149;https://openalex.org/W4377695147,OPENALEX,"Haodong He, 2023, Nutrients","Haodong He, 2023, Nutrients"
+Machine learning techniques applied to construction: A hybrid bibliometric analysis of advances and future directions,2022,article,en,83,10.1016/j.autcon.2022.104532,https://openalex.org/W4292600288,,José García;Gabriel Villavicencio;Francisco Altimiras;Broderick Crawford;Ricardo Soto;Vinicius Minatogawa;Matheus Franco;David Martínez-Muñoz;Víctor Yepes,José García;Gabriel Villavicencio;Francisco Altimiras;Broderick Crawford;Ricardo Soto;Vinicius Minatogawa;Matheus Franco;David Martínez-Muñoz;Víctor Yepes,Pontificia Universidad Católica de Valparaíso,José García,Automation in Construction,Automation in Construction,142,,104532,104532,,,Computer science;Engineering;Data science;Machine learning;Artificial intelligence,https://openalex.org/W1158935686;https://openalex.org/W1842075455;https://openalex.org/W1902027874;https://openalex.org/W2002844166;https://openalex.org/W2008306839;https://openalex.org/W2134731454;https://openalex.org/W2135455887;https://openalex.org/W2195180028;https://openalex.org/W2321654184;https://openalex.org/W2424728784;https://openalex.org/W2494645788;https://openalex.org/W2507244352;https://openalex.org/W2537411327;https://openalex.org/W2590209538;https://openalex.org/W2625378322;https://openalex.org/W2748643398;https://openalex.org/W2755950973;https://openalex.org/W2757455114;https://openalex.org/W2786672974;https://openalex.org/W2787948291;https://openalex.org/W2795876296;https://openalex.org/W2796105695;https://openalex.org/W2796506861;https://openalex.org/W2800343216;https://openalex.org/W2800346298;https://openalex.org/W2806229851;https://openalex.org/W2809438835;https://openalex.org/W2809503103;https://openalex.org/W2814406141;https://openalex.org/W2886369963;https://openalex.org/W2890028683;https://openalex.org/W2890167402;https://openalex.org/W2892086004;https://openalex.org/W2894336343;https://openalex.org/W2896457183;https://openalex.org/W2898234019;https://openalex.org/W2909580866;https://openalex.org/W2912530595;https://openalex.org/W2915074154;https://openalex.org/W2921796625;https://openalex.org/W2936891363;https://openalex.org/W2940384555;https://openalex.org/W2941147690;https://openalex.org/W2943692341;https://openalex.org/W2944114041;https://openalex.org/W2946640301;https://openalex.org/W2955558066;https://openalex.org/W2966746360;https://openalex.org/W2968561194;https://openalex.org/W2972445383;https://openalex.org/W2978627518;https://openalex.org/W2983902176;https://openalex.org/W2985669209;https://openalex.org/W2990574233;https://openalex.org/W2990784565;https://openalex.org/W2995753587;https://openalex.org/W3004315419;https://openalex.org/W3012222204;https://openalex.org/W3015152352;https://openalex.org/W3015671042;https://openalex.org/W3026226589;https://openalex.org/W3030588023;https://openalex.org/W3038415525;https://openalex.org/W3122614502;https://openalex.org/W3131952439;https://openalex.org/W3153764057;https://openalex.org/W3158648516;https://openalex.org/W3163259028;https://openalex.org/W3170735608;https://openalex.org/W3173025278;https://openalex.org/W3183876120;https://openalex.org/W3194473882;https://openalex.org/W3198355034;https://openalex.org/W3202282233;https://openalex.org/W3215757687;https://openalex.org/W3216986367;https://openalex.org/W4200521387;https://openalex.org/W4210273991;https://openalex.org/W4210312791;https://openalex.org/W4210403381;https://openalex.org/W4221142221;https://openalex.org/W4231510805;https://openalex.org/W4231863044;https://openalex.org/W4233164864;https://openalex.org/W4241104219;https://openalex.org/W6606062967;https://openalex.org/W6639619044;https://openalex.org/W6640399235;https://openalex.org/W6679396105;https://openalex.org/W6713214251;https://openalex.org/W6720450344;https://openalex.org/W6724009921;https://openalex.org/W6729054752;https://openalex.org/W6738893313;https://openalex.org/W6748489449;https://openalex.org/W6752256386;https://openalex.org/W6753397543;https://openalex.org/W6754692489;https://openalex.org/W6761880298;https://openalex.org/W6766646568;https://openalex.org/W6767616814;https://openalex.org/W6775744832;https://openalex.org/W6788784772;https://openalex.org/W6796932044;https://openalex.org/W6798663949;https://openalex.org/W6800665057;https://openalex.org/W6804393915;https://openalex.org/W6807102060,OPENALEX,"José García, 2022, Automation in Construction","José García, 2022, Automation in Construction"
+"Conceptual Structure and Current Trends in Artificial Intelligence, Machine Learning, and Deep Learning Research in Sports: A Bibliometric Review",2022,review,en,64,10.3390/ijerph20010173,https://openalex.org/W4312172943,36612493,Carlo Dindorf;Eva Bartaguiz;Freya Gassmann;Michael Fröhlich,Carlo Dindorf;Eva Bartaguiz;Freya Gassmann;Michael Fröhlich,University of Kaiserslautern;Rheinland-Pfälzische Technische Universität Kaiserslautern-Landau;University of Kaiserslautern;Rheinland-Pfälzische Technische Universität Kaiserslautern-Landau;University of Kaiserslautern;University of Koblenz and Landau;Rheinland-Pfälzische Technische Universität Kaiserslautern-Landau;University of Kaiserslautern;Rheinland-Pfälzische Technische Universität Kaiserslautern-Landau,Carlo Dindorf,International Journal of Environmental Research and Public Health,International Journal of Environmental Research and Public Health,20,1,173,173,"Artificial intelligence and its subcategories of machine learning and deep learning are gaining increasing importance and attention in the context of sports research. This has also meant that the number of corresponding publications has become complex and unmanageably large in human terms. In the current state of the research field, there is a lack of bibliometric analysis, which would prove useful for obtaining insights into the large amounts of available literature. Therefore, the present work aims to identify important research issues, elucidate the conceptual structure of the research field, and unpack the evolutionary trends and the direction of hot topics regarding key themes in the research field of artificial intelligence in sports. Using the Scopus database, 1215 documents (reviews and articles) were selected. Bibliometric analysis was performed using VOSviewer and bibliometrix R package. The main findings are as follows: (a) the literature and research interest concerning AI and its subcategories is growing exponentially; (b) the top 20 most cited works comprise 32.52% of the total citations; (c) the top 10 journals are responsible for 28.64% of all published documents; (d) strong collaborative relationships are present, along with small, isolated collaboration networks of individual institutions; (e) the three most productive countries are China, the USA, and Germany; (f) different research themes can be characterized using author keywords with current trend topics, e.g., in the fields of biomechanics, injury prevention or prediction, new algorithms, and learning approaches. AI research activities in the fields of sports pedagogy, sports sociology, and sports economics seem to have played a subordinate role thus far. Overall, the findings of this study expand knowledge on the research situation as well as the development of research topics regarding the use of artificial intelligence in sports, and may guide researchers to identify currently relevant topics and gaps in the research.",,Scopus;Field (mathematics);Context (archaeology);Artificial intelligence;Bibliometrics;Computer science;Data science;Sociology;Political science;Library science;MEDLINE;Mathematics;Pure mathematics;Law;Biology;Paleontology,https://openalex.org/W327991062;https://openalex.org/W1622838444;https://openalex.org/W1767272795;https://openalex.org/W1976546217;https://openalex.org/W1981886524;https://openalex.org/W1990844260;https://openalex.org/W1995987707;https://openalex.org/W2044707851;https://openalex.org/W2056380775;https://openalex.org/W2064675550;https://openalex.org/W2067767241;https://openalex.org/W2072750586;https://openalex.org/W2088037265;https://openalex.org/W2089515781;https://openalex.org/W2101234009;https://openalex.org/W2137687977;https://openalex.org/W2144348409;https://openalex.org/W2146199357;https://openalex.org/W2150220236;https://openalex.org/W2156897283;https://openalex.org/W2160815625;https://openalex.org/W2169282617;https://openalex.org/W2178471959;https://openalex.org/W2267691291;https://openalex.org/W2287065228;https://openalex.org/W2346491476;https://openalex.org/W2397341258;https://openalex.org/W2514295870;https://openalex.org/W2563686712;https://openalex.org/W2620158569;https://openalex.org/W2736217281;https://openalex.org/W2754846726;https://openalex.org/W2755950973;https://openalex.org/W2783089003;https://openalex.org/W2788948370;https://openalex.org/W2792919287;https://openalex.org/W2795342689;https://openalex.org/W2805442627;https://openalex.org/W2883370365;https://openalex.org/W2897764506;https://openalex.org/W2899771611;https://openalex.org/W2903150444;https://openalex.org/W2905808289;https://openalex.org/W2905810301;https://openalex.org/W2908201961;https://openalex.org/W2909645133;https://openalex.org/W2910096450;https://openalex.org/W2911563717;https://openalex.org/W2911964244;https://openalex.org/W2912903863;https://openalex.org/W2913592589;https://openalex.org/W2914043053;https://openalex.org/W2919115771;https://openalex.org/W2939403565;https://openalex.org/W2942736276;https://openalex.org/W2951082895;https://openalex.org/W2952505933;https://openalex.org/W2954570505;https://openalex.org/W2978430085;https://openalex.org/W2981679558;https://openalex.org/W2996735620;https://openalex.org/W3001491100;https://openalex.org/W3007920314;https://openalex.org/W3014781586;https://openalex.org/W3016063666;https://openalex.org/W3033413502;https://openalex.org/W3038128212;https://openalex.org/W3038227888;https://openalex.org/W3038273726;https://openalex.org/W3041517607;https://openalex.org/W3048201280;https://openalex.org/W3048726839;https://openalex.org/W3080187696;https://openalex.org/W3083704612;https://openalex.org/W3113461818;https://openalex.org/W3121153159;https://openalex.org/W3123979837;https://openalex.org/W3125707221;https://openalex.org/W3132317639;https://openalex.org/W3152783591;https://openalex.org/W3154205755;https://openalex.org/W3157070004;https://openalex.org/W3160856016;https://openalex.org/W3165086753;https://openalex.org/W3185030651;https://openalex.org/W3194494914;https://openalex.org/W3195409530;https://openalex.org/W3202628454;https://openalex.org/W3210710412;https://openalex.org/W3215032978;https://openalex.org/W3217221256;https://openalex.org/W4206285355;https://openalex.org/W4207034206;https://openalex.org/W4210440155;https://openalex.org/W4210762790;https://openalex.org/W4220718512;https://openalex.org/W4220765315;https://openalex.org/W4225753362;https://openalex.org/W4226197148;https://openalex.org/W4231639996;https://openalex.org/W4232584455;https://openalex.org/W4244530851;https://openalex.org/W4253385319;https://openalex.org/W4255835337;https://openalex.org/W4280526311;https://openalex.org/W4285055012;https://openalex.org/W6675354045;https://openalex.org/W6704559304;https://openalex.org/W6757720333;https://openalex.org/W6793868969;https://openalex.org/W6801883050;https://openalex.org/W6810378660;https://openalex.org/W7075275322,OPENALEX,"Carlo Dindorf, 2022, International Journal of Environmental Research and Public Health","Carlo Dindorf, 2022, International Journal of Environmental Research and Public Health"
+"Scopus as a curated, high-quality bibliometric data source for academic research in quantitative science studies",2020,article,en,1857,10.1162/qss_a_00019,https://openalex.org/W3001554335,,Jeroen Baas;Michiel Schotten;Andrew Plume;Grégoire Côté;Reza Karimi,Jeroen Baas;Michiel Schotten;Andrew Plume;Grégoire Côté;Reza Karimi,RELX Group (Netherlands);RELX Group (Netherlands);RELX Group (Netherlands);RELX Group (Netherlands);RELX Group (Netherlands),Jeroen Baas,Quantitative Science Studies,Quantitative Science Studies,1,1,377,386,"Scopus is among the largest curated abstract and citation databases, with a wide global and regional coverage of scientific journals, conference proceedings, and books, while ensuring only the highest quality data are indexed through rigorous content selection and re-evaluation by an independent Content Selection and Advisory Board. Additionally, extensive quality assurance processes continuously monitor and improve all data elements in Scopus. Besides enriched metadata records of scientific articles, Scopus offers comprehensive author and institution profiles, obtained from advanced profiling algorithms and manual curation, ensuring high precision and recall. The trustworthiness of Scopus has led to its use as bibliometric data source for large-scale analyses in research assessments, research landscape studies, science policy evaluations, and university rankings. Scopus data have been offered for free for selected studies by the academic research community, such as through application programming interfaces, which have led to many publications employing Scopus data to investigate topics such as researcher mobility, network visualizations, and spatial bibliometrics. In June 2019, the International Center for the Study of Research was launched, with an advisory board consisting of bibliometricians, aiming to work with the scientometric research community and offering a virtual laboratory where researchers will be able to utilize Scopus data.",,Scopus;Bibliometrics;Metadata;Computer science;Data science;Citation;Profiling (computer programming);Information retrieval;Library science;World Wide Web;Political science;MEDLINE;Law;Operating system,https://openalex.org/W1904486621;https://openalex.org/W2000074009;https://openalex.org/W2045313021;https://openalex.org/W2065562675;https://openalex.org/W2081254119;https://openalex.org/W2083714175;https://openalex.org/W2088605208;https://openalex.org/W2091013346;https://openalex.org/W2140190064;https://openalex.org/W2144925873;https://openalex.org/W2154268750;https://openalex.org/W2157485171;https://openalex.org/W2168621403;https://openalex.org/W2176845722;https://openalex.org/W2324810750;https://openalex.org/W2763898449;https://openalex.org/W2796617552;https://openalex.org/W2802390855;https://openalex.org/W2808703721;https://openalex.org/W2884629747;https://openalex.org/W2890459920;https://openalex.org/W2892300837;https://openalex.org/W2905801917;https://openalex.org/W2907285057;https://openalex.org/W2915059225;https://openalex.org/W2950598371;https://openalex.org/W2951889570;https://openalex.org/W2953252885;https://openalex.org/W2953283747;https://openalex.org/W2962744526;https://openalex.org/W2968900048;https://openalex.org/W2969068369;https://openalex.org/W2971378166;https://openalex.org/W2972472097;https://openalex.org/W3101042272;https://openalex.org/W3103952011;https://openalex.org/W3122074984;https://openalex.org/W3134853862;https://openalex.org/W4247068105;https://openalex.org/W4383905441,OPENALEX,"Jeroen Baas, 2020, Quantitative Science Studies","Jeroen Baas, 2020, Quantitative Science Studies"
+Machine Learning and Big Data in the Impact Literature. A Bibliometric Review with Scientific Mapping in Web of Science,2020,review,en,61,10.3390/sym12040495,https://openalex.org/W3013838778,,Jesús López-Belmonte;Adrián Segura Robles;Antonio-José Moreno-Guerrero;María Elena Parra González,Jesús López-Belmonte;Adrián Segura Robles;Antonio-José Moreno-Guerrero;María Elena Parra González,Universidad de Granada;Universidad de Granada;Universidad de Granada;Universidad de Granada,Jesús López-Belmonte,Symmetry,Symmetry,12,4,495,495,"Combined use of machine learning and large data allows us to analyze data and find explanatory models that would not be possible with traditional techniques, which is basic within the principles of symmetry. The present study focuses on the analysis of the scientific production and performance of the Machine Learning and Big Data (MLBD) concepts. A bibliometric methodology of scientific mapping has been used, based on processes of estimation, quantification, analytical tracking, and evaluation of scientific research. A total of 4240 scientific publications from the Web of Science (WoS) have been analyzed. Our results show a constant and ascending evolution of the scientific production on MLBD, 2018 and 2019 being the most productive years. The productions are mainly in English language. The topics are variable in the different periods analyzed, where “machine-learning” is the one that shows the greatest bibliometric indicators, it is found in most of motor topics and is the one that offers the greatest line of continuity between the different periods. It can be concluded that research on MLBD is of interest and relevance to the scientific community, which focuses its studies on the branch of machine-learning.",,Computer science;Big data;Relevance (law);Data science;Artificial intelligence;Machine learning;Data mining;Law;Political science,https://openalex.org/W1500693574;https://openalex.org/W1863277889;https://openalex.org/W1870882775;https://openalex.org/W2075424814;https://openalex.org/W2076063813;https://openalex.org/W2100954244;https://openalex.org/W2105822516;https://openalex.org/W2108680868;https://openalex.org/W2117497767;https://openalex.org/W2128438887;https://openalex.org/W2139087717;https://openalex.org/W2153803020;https://openalex.org/W2163634312;https://openalex.org/W2164364358;https://openalex.org/W2488558416;https://openalex.org/W2576683119;https://openalex.org/W2610052998;https://openalex.org/W2742835787;https://openalex.org/W2757042342;https://openalex.org/W2767547957;https://openalex.org/W2770848963;https://openalex.org/W2772434162;https://openalex.org/W2774008574;https://openalex.org/W2794329575;https://openalex.org/W2900765267;https://openalex.org/W2915147983;https://openalex.org/W2919115771;https://openalex.org/W2931283717;https://openalex.org/W2945453951;https://openalex.org/W2965388179;https://openalex.org/W2975867066;https://openalex.org/W2980095825;https://openalex.org/W2985942842;https://openalex.org/W2992582827;https://openalex.org/W2997933987;https://openalex.org/W3001491100;https://openalex.org/W3041004109;https://openalex.org/W4407271179;https://openalex.org/W6723273074;https://openalex.org/W6741788004,OPENALEX,"Jesús López-Belmonte, 2020, Symmetry","Jesús López-Belmonte, 2020, Symmetry"
+Evolution of Green Finance: A Bibliometric Analysis through Complex Networks and Machine Learning,2023,article,en,60,10.3390/su15020967,https://openalex.org/W4313575091,,Mariana Rêis Maria;Rosângela Ballini;Roney Fraga Souza,Mariana Rêis Maria;Rosângela Ballini;Roney Fraga Souza,Universidade Estadual de Campinas (UNICAMP);Universidade Estadual de Campinas (UNICAMP);Universidade Federal de Mato Grosso,Mariana Rêis Maria,Sustainability,Sustainability,15,2,967,967,"A fundamental structural transformation that must occur to break global temperature rise and advance sustainable development is the green transition to a low-carbon system. However, dismantling the carbon lock-in situation requires substantial investment in green finance. Historically, investments have been concentrated in carbon-intensive technologies. Nonetheless, green finance has blossomed in recent years, and efforts to organise this literature have emerged, but a deeper understanding of this growing field is needed. For this goal, this paper aims to delineate this literature’s existing groups and explore its heterogeneity. From a bibliometric coupling network, we identified the main groups in the literature; then, we described the characteristics of these articles through a novel combination of complex network analysis, topological measures, and a type of unsupervised machine learning technique called structural topic modelling (STM). The use of computational methods to explore literature trends is increasing as it is expected to be compatible with a large amount of information and complement the expert-based knowledge approach. The contribution of this article is twofold: first, identifying the most relevant articles in the network related to each group and, second, the most prestigious topics in the field and their contributions to the literature. A final sample of 3275 articles shows three main groups in the literature. The more mature is mainly related to the distribution of climate finance from the developed to the developing world. In contrast, the most recent ones are related to climate financial risks, green bonds, and the insertion of financial development in energy-emissions-economics models. Researchers and policy-makers can recognise current research challenges and make better decisions with the help of the central research topics and emerging trends identified from STM. The field’s evolution shows a clear movement from an international perspective to a nationally-determined discussion on finance to the green transition.",,Field (mathematics);Bibliometrics;Investment (military);Sample (material);Finance;Artificial intelligence;Computer science;Data science;Economics;Political science;Politics;Data mining;Chemistry;Mathematics;Chromatography;Law;Pure mathematics,https://openalex.org/W229097380;https://openalex.org/W1841824908;https://openalex.org/W1880262756;https://openalex.org/W1907286193;https://openalex.org/W1964959681;https://openalex.org/W1970859146;https://openalex.org/W1976092690;https://openalex.org/W1997712852;https://openalex.org/W2001973399;https://openalex.org/W2009284938;https://openalex.org/W2017987256;https://openalex.org/W2019302301;https://openalex.org/W2026686386;https://openalex.org/W2029863173;https://openalex.org/W2032556264;https://openalex.org/W2035713188;https://openalex.org/W2040546518;https://openalex.org/W2045398038;https://openalex.org/W2048624956;https://openalex.org/W2053499293;https://openalex.org/W2055800293;https://openalex.org/W2055908663;https://openalex.org/W2056541886;https://openalex.org/W2060336209;https://openalex.org/W2069787981;https://openalex.org/W2070779353;https://openalex.org/W2077579219;https://openalex.org/W2083084326;https://openalex.org/W2096885696;https://openalex.org/W2097854309;https://openalex.org/W2104834906;https://openalex.org/W2109890836;https://openalex.org/W2125662152;https://openalex.org/W2131681506;https://openalex.org/W2150220236;https://openalex.org/W2152785505;https://openalex.org/W2158290178;https://openalex.org/W2159855843;https://openalex.org/W2174670974;https://openalex.org/W2174706414;https://openalex.org/W2179362017;https://openalex.org/W2223092947;https://openalex.org/W2259853171;https://openalex.org/W2287244756;https://openalex.org/W2306119308;https://openalex.org/W2330768275;https://openalex.org/W2347125256;https://openalex.org/W2508555133;https://openalex.org/W2555074168;https://openalex.org/W2561644322;https://openalex.org/W2568810957;https://openalex.org/W2586827268;https://openalex.org/W2607002712;https://openalex.org/W2617775694;https://openalex.org/W2755950973;https://openalex.org/W2756564215;https://openalex.org/W2774944491;https://openalex.org/W2781571166;https://openalex.org/W2789511191;https://openalex.org/W2792963110;https://openalex.org/W2796870799;https://openalex.org/W2804677512;https://openalex.org/W2806486862;https://openalex.org/W2884657803;https://openalex.org/W2896699713;https://openalex.org/W2898756147;https://openalex.org/W2906323621;https://openalex.org/W2915161772;https://openalex.org/W2916047775;https://openalex.org/W2940636459;https://openalex.org/W2946881517;https://openalex.org/W2953977783;https://openalex.org/W2963824633;https://openalex.org/W2978802814;https://openalex.org/W3003671649;https://openalex.org/W3003900694;https://openalex.org/W3099768174;https://openalex.org/W3106437531;https://openalex.org/W3154067860;https://openalex.org/W3207458606;https://openalex.org/W3210595485;https://openalex.org/W4226061782;https://openalex.org/W4241563384;https://openalex.org/W4255497883;https://openalex.org/W4283078861;https://openalex.org/W4384347680;https://openalex.org/W6608852248;https://openalex.org/W6639619044;https://openalex.org/W6735852552;https://openalex.org/W6744394771,OPENALEX,"Mariana Rêis Maria, 2023, Sustainability","Mariana Rêis Maria, 2023, Sustainability"
+Unleashing the Potential of Blockchain and Machine Learning: Insights and Emerging Trends From Bibliometric Analysis,2023,article,en,58,10.1109/access.2023.3298371,https://openalex.org/W4385222884,,Nouhaila El Akrami;Mohamed Hanine;Emmanuel Soriano Flores;Daniel Gavilanes Aray;Imran Ashraf,Nouhaila El Akrami;Mohamed Hanine;Emmanuel Soriano Flores;Daniel Gavilanes Aray;Imran Ashraf,Chouaib Doukkali University;Chouaib Doukkali University;Yeungnam University,Nouhaila El Akrami,IEEE Access,IEEE Access,11,,78879,78903,"Blockchain and machine learning (ML) has garnered growing interest as cutting-edge technologies that have witnessed tremendous strides in their respective domains. Blockchain technology provides a decentralized and immutable ledger, enabling secure and transparent transactions without intermediaries. Alternatively, ML is a sub-field of artificial intelligence (AI) that empowers systems to enhance their performance by learning from data. The integration of these data-driven paradigms holds the potential to reinforce data privacy and security, improve data analysis accuracy, and automate complex processes. The confluence of blockchain and ML has sparked increasing interest among scholars and researchers. Therefore, a bibliometric analysis is carried out to investigate the key focus areas, hotspots, potential prospects, and dynamical aspects of the field. This paper evaluates 700 manuscripts drawn from the Web of Science (WoS) core collection database, spanning from 2017 to 2022. The analysis is conducted using advanced bibliometric tools (e.g., Bibliometrix R, VOSviewer, and CiteSpace) to assess various aspects of the research area regarding publication productivity, influential articles, prolific authors, the productivity of academic countries and institutions, as well as the intellectual structure in terms of hot topics and emerging trends. The findings suggest that upcoming research should focus on blockchain technology, AI-powered 5G networks, industrial cyber-physical systems, IoT environments, and autonomous vehicles. This paper provides a valuable foundation for both academic scholars and practitioners as they contemplate future projects on the integration of blockchain and ML.",,Blockchain;Computer science;Data science;Field (mathematics);Bibliometrics;Productivity;Big data;Knowledge management;World Wide Web;Computer security;Macroeconomics;Mathematics;Economics;Operating system;Pure mathematics,https://openalex.org/W1748004804;https://openalex.org/W2086145942;https://openalex.org/W2150220236;https://openalex.org/W2163539724;https://openalex.org/W2201903473;https://openalex.org/W2416848540;https://openalex.org/W2751179194;https://openalex.org/W2755950973;https://openalex.org/W2758225150;https://openalex.org/W2776003688;https://openalex.org/W2805930283;https://openalex.org/W2883790378;https://openalex.org/W2885100636;https://openalex.org/W2886169738;https://openalex.org/W2894710278;https://openalex.org/W2901967082;https://openalex.org/W2907683311;https://openalex.org/W2914212774;https://openalex.org/W2927143629;https://openalex.org/W2944858588;https://openalex.org/W2947400732;https://openalex.org/W2951832089;https://openalex.org/W2962621836;https://openalex.org/W2968042416;https://openalex.org/W2972432684;https://openalex.org/W2974110037;https://openalex.org/W2974429275;https://openalex.org/W2984693664;https://openalex.org/W2986442689;https://openalex.org/W2990688366;https://openalex.org/W2992245519;https://openalex.org/W2997777902;https://openalex.org/W3001491100;https://openalex.org/W3003951943;https://openalex.org/W3009535750;https://openalex.org/W3009627224;https://openalex.org/W3011602168;https://openalex.org/W3012062908;https://openalex.org/W3019945581;https://openalex.org/W3023617420;https://openalex.org/W3026150618;https://openalex.org/W3039940949;https://openalex.org/W3040937085;https://openalex.org/W3047080537;https://openalex.org/W3089288764;https://openalex.org/W3094159242;https://openalex.org/W3118615836;https://openalex.org/W3127873595;https://openalex.org/W3138069867;https://openalex.org/W3156033593;https://openalex.org/W3160856016;https://openalex.org/W3163893137;https://openalex.org/W3164573547;https://openalex.org/W3174012884;https://openalex.org/W3181089261;https://openalex.org/W3182418041;https://openalex.org/W3193492336;https://openalex.org/W3193560119;https://openalex.org/W3202284552;https://openalex.org/W3208801174;https://openalex.org/W3209723277;https://openalex.org/W4210615406;https://openalex.org/W4211068006;https://openalex.org/W4223504512;https://openalex.org/W4225407720;https://openalex.org/W4248175462;https://openalex.org/W4293197680;https://openalex.org/W4293370646;https://openalex.org/W4294215472;https://openalex.org/W4307979480;https://openalex.org/W4309007662;https://openalex.org/W4313404466;https://openalex.org/W4382176573;https://openalex.org/W6754199392,OPENALEX,"Nouhaila El Akrami, 2023, IEEE Access","Nouhaila El Akrami, 2023, IEEE Access"
+Military Applications of Machine Learning: A Bibliometric Perspective,2022,article,en,34,10.3390/math10091397,https://openalex.org/W4224307709,,José Javier Galán-Hernández;Ramón Alberto Carrasco;Antonio LaTorre,José Javier Galán-Hernández;Ramón Alberto Carrasco;Antonio LaTorre,Universidad Complutense de Madrid;Universidad Complutense de Madrid;Universidad Politécnica de Madrid,José Javier Galán-Hernández,Mathematics,Mathematics,10,9,1397,1397,"The military environment generates a large amount of data of great importance, which makes necessary the use of machine learning for its processing. Its ability to learn and predict possible scenarios by analyzing the huge volume of information generated provides automatic learning and decision support. This paper aims to present a model of a machine learning architecture applied to a military organization, carried out and supported by a bibliometric study applied to an architecture model of a nonmilitary organization. For this purpose, a bibliometric analysis up to the year 2021 was carried out, making a strategic diagram and interpreting the results. The information used has been extracted from one of the main databases widely accepted by the scientific community, ISI WoS. No direct military sources were used. This work is divided into five parts: the study of previous research related to machine learning in the military world; the explanation of our research methodology using the SciMat, Excel and VosViewer tools; the use of this methodology based on data mining, preprocessing, cluster normalization, a strategic diagram and the analysis of its results to investigate machine learning in the military context; based on these results, a conceptual architecture of the practical use of ML in the military context is drawn up; and, finally, we present the conclusions, where we will see the most important areas and the latest advances in machine learning applied, in this case, to a military environment, to analyze a large set of data, providing utility, machine learning and decision support.",,Computer science;Artificial intelligence;Machine learning;Data pre-processing;Context (archaeology);Normalization (sociology);Data science;Architecture;Art;Anthropology;Biology;Paleontology;Sociology;Visual arts,https://openalex.org/W1569321962;https://openalex.org/W1847033250;https://openalex.org/W1981886524;https://openalex.org/W1983498087;https://openalex.org/W2040039177;https://openalex.org/W2047604914;https://openalex.org/W2079051740;https://openalex.org/W2114692751;https://openalex.org/W2187552894;https://openalex.org/W2261157879;https://openalex.org/W2320316254;https://openalex.org/W2421444976;https://openalex.org/W2481130031;https://openalex.org/W2747122029;https://openalex.org/W2759601165;https://openalex.org/W2793272303;https://openalex.org/W2795282312;https://openalex.org/W2800158564;https://openalex.org/W2804532080;https://openalex.org/W2844602024;https://openalex.org/W2886619050;https://openalex.org/W2888130761;https://openalex.org/W2888489905;https://openalex.org/W2889180445;https://openalex.org/W2890667190;https://openalex.org/W2897735842;https://openalex.org/W2921881483;https://openalex.org/W2931283717;https://openalex.org/W2944603520;https://openalex.org/W2949869628;https://openalex.org/W2950879898;https://openalex.org/W2953463859;https://openalex.org/W2963323326;https://openalex.org/W2968221061;https://openalex.org/W2980845355;https://openalex.org/W2981123833;https://openalex.org/W2987629254;https://openalex.org/W2994048855;https://openalex.org/W2994166400;https://openalex.org/W2997604005;https://openalex.org/W3007264885;https://openalex.org/W3011690857;https://openalex.org/W3020449132;https://openalex.org/W3020862983;https://openalex.org/W3031768672;https://openalex.org/W3035726715;https://openalex.org/W3036491774;https://openalex.org/W3040330511;https://openalex.org/W3041486090;https://openalex.org/W3048565925;https://openalex.org/W3074911901;https://openalex.org/W3083485545;https://openalex.org/W3084117197;https://openalex.org/W3084159587;https://openalex.org/W3092625934;https://openalex.org/W3101555142;https://openalex.org/W3113225871;https://openalex.org/W3117321795;https://openalex.org/W3117520861;https://openalex.org/W3117678186;https://openalex.org/W3127002054;https://openalex.org/W3127086562;https://openalex.org/W3127777658;https://openalex.org/W3127952267;https://openalex.org/W3132653939;https://openalex.org/W3135028703;https://openalex.org/W3136102896;https://openalex.org/W3137798842;https://openalex.org/W3141009123;https://openalex.org/W3151448454;https://openalex.org/W3153187775;https://openalex.org/W3159310960;https://openalex.org/W3163745152;https://openalex.org/W3170663388;https://openalex.org/W3170927860;https://openalex.org/W3173826505;https://openalex.org/W3179394107;https://openalex.org/W3187459817;https://openalex.org/W3197450565;https://openalex.org/W3198442084;https://openalex.org/W3205106854;https://openalex.org/W3210767309;https://openalex.org/W3215158158;https://openalex.org/W3216417923;https://openalex.org/W3217204768;https://openalex.org/W4200488419;https://openalex.org/W4205954621;https://openalex.org/W4210658299;https://openalex.org/W4212934852;https://openalex.org/W6687347952;https://openalex.org/W6763646235;https://openalex.org/W6764921660;https://openalex.org/W6802908963,OPENALEX,"José Javier Galán-Hernández, 2022, Mathematics","José Javier Galán-Hernández, 2022, Mathematics"
+A review of machine learning for big data analytics: bibliometric approach,2020,review,en,43,10.1080/09537325.2020.1732912,https://openalex.org/W3008105883,,El-Sayed M. El-Alfy;Salahadin Mohammed,El-Sayed M. El-Alfy;Salahadin Mohammed,King Fahd University of Petroleum and Minerals;King Fahd University of Petroleum and Minerals,El-Sayed M. El-Alfy,Technology Analysis and Strategic Management,Technology Analysis and Strategic Management,32,8,984,1005,"The amalgamation of machine learning and big data has led to a revolution in data science with several influencing applications to various domains. To gain insights on the current research trends on machine learning for big data analytics, this study follows a bibliometric analysis methodology of citation data to review and quantitatively assess the explosion and impact of literature and research performance in this vibrant research area, which has witnessed rapid changes and rising interest in business, industry and academia. Using a variety of bibliometric measures and visualisation techniques, the paper examines and identifies several related issues including research productivity and directions, major contributors, publication trends and growth rates, citation and collaboration analysis, and others. The relevant bibliographic units for the study were collected from the Core Collection of the Web of Science bibliographic database. Nearly all the relevant publications prior to February 2018 were included in the analysis. The overwhelming productivity and wide-spread applications in several multidisciplinary domains have been revealed, with one-to-two ratio of journal to conference publications. Three countries (USA, China, India) are dominating the research output with more than two-thirds of the total productivity.",,Data science;Big data;Productivity;Multidisciplinary approach;Bibliometrics;Variety (cybernetics);Web of science;Computer science;Citation;Analytics;Knowledge management;Library science;Political science;Social science;Data mining;Artificial intelligence;Sociology;MEDLINE;Economics;Macroeconomics;Law,https://openalex.org/W93660433;https://openalex.org/W607505555;https://openalex.org/W1503398984;https://openalex.org/W1648296995;https://openalex.org/W1971044734;https://openalex.org/W1984020445;https://openalex.org/W1990476851;https://openalex.org/W2000432868;https://openalex.org/W2002643280;https://openalex.org/W2027540165;https://openalex.org/W2028297439;https://openalex.org/W2031075407;https://openalex.org/W2032031606;https://openalex.org/W2032510388;https://openalex.org/W2036785686;https://openalex.org/W2039027543;https://openalex.org/W2040263621;https://openalex.org/W2041588414;https://openalex.org/W2057923756;https://openalex.org/W2060437593;https://openalex.org/W2069656088;https://openalex.org/W2072750586;https://openalex.org/W2083721602;https://openalex.org/W2084898926;https://openalex.org/W2087295784;https://openalex.org/W2089961246;https://openalex.org/W2091143818;https://openalex.org/W2103956991;https://openalex.org/W2106488040;https://openalex.org/W2111791086;https://openalex.org/W2127414816;https://openalex.org/W2128438887;https://openalex.org/W2150220236;https://openalex.org/W2152204876;https://openalex.org/W2160346582;https://openalex.org/W2189203739;https://openalex.org/W2211439825;https://openalex.org/W2219903032;https://openalex.org/W2261525379;https://openalex.org/W2277011713;https://openalex.org/W2285144687;https://openalex.org/W2303147257;https://openalex.org/W2317595875;https://openalex.org/W2333300949;https://openalex.org/W2410932590;https://openalex.org/W2410952352;https://openalex.org/W2416848540;https://openalex.org/W2487200295;https://openalex.org/W2525984666;https://openalex.org/W2557283755;https://openalex.org/W2576683119;https://openalex.org/W2586281947;https://openalex.org/W2592084954;https://openalex.org/W2619769228;https://openalex.org/W2625392185;https://openalex.org/W2759832051;https://openalex.org/W2765743217;https://openalex.org/W2904029666;https://openalex.org/W2952984634;https://openalex.org/W2994602700;https://openalex.org/W3122195984;https://openalex.org/W4236133481;https://openalex.org/W4236362309;https://openalex.org/W4250810012;https://openalex.org/W6628208857;https://openalex.org/W6681348010,OPENALEX,"El-Sayed M. El-Alfy, 2020, Technology Analysis and Strategic Management","El-Sayed M. El-Alfy, 2020, Technology Analysis and Strategic Management"
+Machine Learning and the Future of Cardiovascular Care,2021,review,en,331,10.1016/j.jacc.2020.11.030,https://openalex.org/W3125603166,33478654,Giorgio Quer;Ramy Arnaout;Ramy Arnaout;Michael Henne;Rima Arnaout;Rima Arnaout,Giorgio Quer;Ramy Arnaout;Ramy Arnaout;Michael Henne;Rima Arnaout;Rima Arnaout,"Twitter (United States);Scripps Research Institute;Beth Israel Deaconess Medical Center;Lahey Medical Center;Beth Israel Deaconess Medical Center;University of California, San Francisco;Lahey Medical Center;Intel (United States);University of California, San Francisco;Beth Israel Deaconess Medical Center;Lahey Medical Center;Beth Israel Deaconess Medical Center;Lahey Medical Center",Giorgio Quer,Journal of the American College of Cardiology,Journal of the American College of Cardiology,77,3,300,313,"The role of physicians has always been to synthesize the data available to them to identify diagnostic patterns that guide treatment and follow response. Today, increasingly sophisticated machine learning algorithms may grow to support clinical experts in some of these tasks. Machine learning has the potential to benefit patients and cardiologists, but only if clinicians take an active role in bringing these new algorithms into practice. The aim of this review is to introduce clinicians who are not data science experts to key concepts in machine learning that will allow them to better understand the field and evaluate new literature and developments. The current published data in machine learning for cardiovascular disease is then summarized, using both a bibliometric survey, with code publicly available to enable similar analysis for any research topic of interest, and select case studies. Finally, several ways that clinicians can and must be involved in this emerging field are presented.",,Medicine;Machine learning;Artificial intelligence;Field (mathematics);Key (lock);Clinical Practice;Data science;Computer science;Nursing;Mathematics;Pure mathematics;Computer security,https://openalex.org/W98627379;https://openalex.org/W1839682376;https://openalex.org/W2032133654;https://openalex.org/W2067843516;https://openalex.org/W2177870565;https://openalex.org/W2273849032;https://openalex.org/W2404901863;https://openalex.org/W2557738935;https://openalex.org/W2567103357;https://openalex.org/W2580957850;https://openalex.org/W2581082771;https://openalex.org/W2592007282;https://openalex.org/W2611001834;https://openalex.org/W2622817237;https://openalex.org/W2752747624;https://openalex.org/W2758343255;https://openalex.org/W2758348074;https://openalex.org/W2784094750;https://openalex.org/W2807593075;https://openalex.org/W2807941755;https://openalex.org/W2810809154;https://openalex.org/W2811374795;https://openalex.org/W2887680499;https://openalex.org/W2887691119;https://openalex.org/W2890189169;https://openalex.org/W2896568293;https://openalex.org/W2899921784;https://openalex.org/W2901226889;https://openalex.org/W2901383458;https://openalex.org/W2902644322;https://openalex.org/W2913238351;https://openalex.org/W2915232829;https://openalex.org/W2917055433;https://openalex.org/W2921335396;https://openalex.org/W2929359750;https://openalex.org/W2934399013;https://openalex.org/W2937671098;https://openalex.org/W2941006887;https://openalex.org/W2945147429;https://openalex.org/W2945976633;https://openalex.org/W2948522751;https://openalex.org/W2955653438;https://openalex.org/W2957824372;https://openalex.org/W2961396908;https://openalex.org/W2962231994;https://openalex.org/W2962734274;https://openalex.org/W2963048752;https://openalex.org/W2963428668;https://openalex.org/W2963823661;https://openalex.org/W2965520043;https://openalex.org/W2966312603;https://openalex.org/W2967681529;https://openalex.org/W2971458492;https://openalex.org/W2973091513;https://openalex.org/W2979640443;https://openalex.org/W2979691446;https://openalex.org/W2981624778;https://openalex.org/W2981963245;https://openalex.org/W2986869417;https://openalex.org/W2991287954;https://openalex.org/W2995412382;https://openalex.org/W2995441112;https://openalex.org/W2997769210;https://openalex.org/W2999575735;https://openalex.org/W2999600747;https://openalex.org/W3000122014;https://openalex.org/W3000524228;https://openalex.org/W3000630830;https://openalex.org/W3001639610;https://openalex.org/W3004327895;https://openalex.org/W3005210932;https://openalex.org/W3005949594;https://openalex.org/W3006475810;https://openalex.org/W3008000699;https://openalex.org/W3016237870;https://openalex.org/W3037340117;https://openalex.org/W3042530487;https://openalex.org/W3083342460;https://openalex.org/W3083804794;https://openalex.org/W3103215654;https://openalex.org/W3104734507;https://openalex.org/W3161999894;https://openalex.org/W6756016900;https://openalex.org/W6758691785;https://openalex.org/W6768954387;https://openalex.org/W6769117056;https://openalex.org/W6769264027;https://openalex.org/W6771213972;https://openalex.org/W6780197325,OPENALEX,"Giorgio Quer, 2021, Journal of the American College of Cardiology","Giorgio Quer, 2021, Journal of the American College of Cardiology"
+Prominent Sampling Techniques Analysis in Machine Learning: Bibliometric Survey and Performance Evaluation,2022,article,en,11,10.1109/pdgc56933.2022.10053294,https://openalex.org/W4322731323,,Gurpreet Singh;Ritwik Chouhan;Jaspreet Singh;Navneet Kaur;Mamta Mamta,Gurpreet Singh;Ritwik Chouhan;Jaspreet Singh;Navneet Kaur;Mamta Mamta,Chandigarh University;Chandigarh University;Chandigarh University;Chandigarh University;Chandigarh University,Gurpreet Singh,,,,,131,137,"The issue of whether data collection can use an effective sampling strategy presents a challenge to the researcher. Researchers must be familiar with the distinctions in order to choose the most suitable sampling technique or method for the particular study under consideration, given the vast number and variety of sampling techniques and methods that are available. The bibliometric analysis also done for the sampling technique with computer science according to country wise and year wise which provide better ideas for future research. The scope of keyword and citation for the document describe with results obtained using the VosViewer software and data from the Web of Science and Scopus databases unsupervised ML techniques are used to solve the sampling problem. There are different types of ML techniques that are applied to sampling, i.e., K-Mean clustering, DBSCAN, Fuzzy clustering, etc. This research also examines the fundamental ideas of probability sampling, as well as various probability sampling approaches and their strengths and weaknesses.",,Computer science;Sampling (signal processing);Cluster analysis;Scope (computer science);Data science;Data mining;Variety (cybernetics);Information retrieval;Machine learning;Strengths and weaknesses;Artificial intelligence;Philosophy;Epistemology;Programming language;Computer vision;Filter (signal processing),https://openalex.org/W2093651020;https://openalex.org/W2560820338;https://openalex.org/W2763552624;https://openalex.org/W2900523186;https://openalex.org/W2913024427;https://openalex.org/W2989416790;https://openalex.org/W3039445169;https://openalex.org/W3084084050;https://openalex.org/W3090905292;https://openalex.org/W3091535517;https://openalex.org/W3096767189;https://openalex.org/W3103257411;https://openalex.org/W3111112492;https://openalex.org/W3160157503;https://openalex.org/W3196214252;https://openalex.org/W3213019218;https://openalex.org/W4281622058;https://openalex.org/W4288754453;https://openalex.org/W4288754496;https://openalex.org/W4293087566;https://openalex.org/W4312705457;https://openalex.org/W6730890844;https://openalex.org/W6758786036,OPENALEX,"Gurpreet Singh, 2022, ","Gurpreet Singh, 2022, "
+An open source machine learning framework for efficient and transparent systematic reviews,2021,article,en,1034,10.1038/s42256-020-00287-7,https://openalex.org/W3111278950,,Rens van de Schoot;Jonathan de Bruin;Raoul Schram;Parisa Zahedi;Jan de Boer;Felix Weijdema;Bianca Kramer;Martijn Huijts;Maarten Hoogerwerf;Gerbrich Ferdinands;Albert Harkema;Joukje Willemsen;Yongchao Ma;Qixiang Fang;Sybren Hindriks;Lars Tummers;Daniel L. Oberski,Rens van de Schoot;Jonathan de Bruin;Raoul Schram;Parisa Zahedi;Jan de Boer;Felix Weijdema;Bianca Kramer;Martijn Huijts;Maarten Hoogerwerf;Gerbrich Ferdinands;Albert Harkema;Joukje Willemsen;Yongchao Ma;Qixiang Fang;Sybren Hindriks;Lars Tummers;Daniel L. Oberski,Utrecht University;Utrecht University;Utrecht University;Utrecht University;Utrecht University;Utrecht University;Utrecht University;Utrecht University;Utrecht University;Utrecht University;Utrecht University;Utrecht University;Utrecht University;Utrecht University;Utrecht University;Utrecht University;Utrecht University;University Medical Center Utrecht,Rens van de Schoot,Nature Machine Intelligence,Nature Machine Intelligence,3,2,125,133,"Abstract To help researchers conduct a systematic review or meta-analysis as efficiently and transparently as possible, we designed a tool to accelerate the step of screening titles and abstracts. For many tasks—including but not limited to systematic reviews and meta-analyses—the scientific literature needs to be checked systematically. Scholars and practitioners currently screen thousands of studies by hand to determine which studies to include in their review or meta-analysis. This is error prone and inefficient because of extremely imbalanced data: only a fraction of the screened studies is relevant. The future of systematic reviewing will be an interaction with machine learning algorithms to deal with the enormous increase of available text. We therefore developed an open source machine learning-aided pipeline applying active learning: ASReview. We demonstrate by means of simulation studies that active learning can yield far more efficient reviewing than manual reviewing while providing high quality. Furthermore, we describe the options of the free and open source research software and present the results from user experience tests. We invite the community to contribute to open source projects such as our own that provide measurable and reproducible improvements over current practice.",,Computer science;Systematic review;Pipeline (software);Machine learning;Open source;Artificial intelligence;Data science;Open source software;Software;Systematic error;Open research;Fraction (chemistry);Best practice;Scientific literature;Software engineering;Risk analysis (engineering);Active learning (machine learning);Software tool;Data source,https://openalex.org/W168362576;https://openalex.org/W1546847154;https://openalex.org/W1767470961;https://openalex.org/W1779982606;https://openalex.org/W1907286193;https://openalex.org/W1998030485;https://openalex.org/W2022826124;https://openalex.org/W2037866349;https://openalex.org/W2043566294;https://openalex.org/W2099087018;https://openalex.org/W2099883114;https://openalex.org/W2100053037;https://openalex.org/W2111011000;https://openalex.org/W2122642665;https://openalex.org/W2151666086;https://openalex.org/W2184378182;https://openalex.org/W2300445845;https://openalex.org/W2555629321;https://openalex.org/W2560438049;https://openalex.org/W2576440140;https://openalex.org/W2593758073;https://openalex.org/W2783658081;https://openalex.org/W2785836523;https://openalex.org/W2797780449;https://openalex.org/W2808847453;https://openalex.org/W2897098357;https://openalex.org/W2961191798;https://openalex.org/W2963929190;https://openalex.org/W2970641574;https://openalex.org/W2981077025;https://openalex.org/W2999536597;https://openalex.org/W2999783216;https://openalex.org/W2999990085;https://openalex.org/W3014524604;https://openalex.org/W3134784144;https://openalex.org/W3139098936;https://openalex.org/W3164951628;https://openalex.org/W3208153248;https://openalex.org/W3209051520;https://openalex.org/W4235216760;https://openalex.org/W4313371821;https://openalex.org/W6675354045;https://openalex.org/W6893603463;https://openalex.org/W6893652876;https://openalex.org/W6968577468;https://openalex.org/W6976917182,OPENALEX,"Rens van de Schoot, 2021, Nature Machine Intelligence","Rens van de Schoot, 2021, Nature Machine Intelligence"
+A Systematic Review and Bibliometric Analysis of Applications of Artificial Intelligence and Machine Learning in Vascular Surgery,2022,review,en,59,10.1016/j.avsg.2022.03.019,https://openalex.org/W4221027537,35339595,Arshia P. Javidan;Allen Li;Michael H. Lee;Thomas L. Forbes;Faysal Naji,Arshia P. Javidan;Allen Li;Michael H. Lee;Thomas L. Forbes;Faysal Naji,University of Toronto;University of Ottawa;University of Toronto;University Health Network;McMaster University,Arshia P. Javidan,Annals of Vascular Surgery,Annals of Vascular Surgery,85,,395,405,,,Medicine;MEDLINE;Systematic review;Data extraction;Artificial intelligence;Vascular surgery;Meta-analysis;Medical physics;Surgery;Machine learning;Internal medicine;Computer science;Cardiac surgery;Political science;Law,https://openalex.org/W1794427698;https://openalex.org/W2177870565;https://openalex.org/W2299177375;https://openalex.org/W2600022899;https://openalex.org/W2745975212;https://openalex.org/W2763556273;https://openalex.org/W2788948370;https://openalex.org/W2809487627;https://openalex.org/W2905434820;https://openalex.org/W2912581524;https://openalex.org/W2919749284;https://openalex.org/W2921613140;https://openalex.org/W2996280595;https://openalex.org/W2997139801;https://openalex.org/W3006863342;https://openalex.org/W3007824786;https://openalex.org/W3013286749;https://openalex.org/W3034855613;https://openalex.org/W3078591268;https://openalex.org/W3137507105;https://openalex.org/W3170220376;https://openalex.org/W4205142556;https://openalex.org/W4225927996;https://openalex.org/W4294214983;https://openalex.org/W6735060455,OPENALEX,"Arshia P. Javidan, 2022, Annals of Vascular Surgery","Arshia P. Javidan, 2022, Annals of Vascular Surgery"
+Bibliometric Survey of Quantum Machine Learning,2020,article,en,34,10.1080/0194262x.2020.1776193,https://openalex.org/W3035953096,,Mandaar B. Pande;Preeti Mulay,Mandaar B. Pande;Preeti Mulay,Symbiosis International University;Symbiosis International University,Mandaar B. Pande,Science & Technology Libraries,Science & Technology Libraries,39,4,369,382,"Quantum Machine Learning (QML) is one of the core research fields in the larger paradigm of Quantum Computing (also known alternatively as Quantum Information). In recent years, researchers have taken deep interest in QML, given the potential time and cost advantages that solutions to real-life problems using QML algorithms provide, in comparison to their classical (or digital) machine learning equivalents. This is still a very new and exciting area of research with new algorithms and their uses being developed almost every other day. Deep research interest in this area has picked up only in the past 5–6 years. Given the background, this paper focuses on studying Scopus and Web of Science databases for the past 6 years (2014–2019) to identify various publication trends in the areas of Quantum Machine Learning. The authors have done an in-depth study of the Scopus and Web of Science publication data pertaining to this area and have come up with interesting insights. The survey covers 276 publications in Scopus and 154 publications in Web of Science. From the Scopus database, it is found that there has been a consistent growth in the number of publications in this period. Four research areas, namely, Physics, Astronomy, Computer Science, and Mathematics, have contributed 68.1% of the research publications. The USA leads the top 10 countries with nearly half (49.2%) of the research publications. A total of 148 patents have been published with 94 of these being published in the last four years (2016–2019). This essentially translates to one patent for every two publications. The Web of Science database, though bringing out 154 publications in the period, shows similar trends across the metrics. We have carried out a comparative study of some of the metrics in Scopus and Web of Science databases. Overall the study identifies the top 10 Institutions, authors, and research journals.",,Scopus;Web of science;Computer science;Artificial intelligence;Data science;Mathematics;Library science;Political science;MEDLINE;Law,https://openalex.org/W118877790;https://openalex.org/W199424061;https://openalex.org/W1492999010;https://openalex.org/W1568345435;https://openalex.org/W1619888535;https://openalex.org/W1988369744;https://openalex.org/W2006226307;https://openalex.org/W2009562587;https://openalex.org/W2012206667;https://openalex.org/W2040792108;https://openalex.org/W2067763535;https://openalex.org/W2084652510;https://openalex.org/W2103956991;https://openalex.org/W2148132004;https://openalex.org/W2168676717;https://openalex.org/W2257937122;https://openalex.org/W2559394418;https://openalex.org/W2781738013;https://openalex.org/W2788945937;https://openalex.org/W2792946961;https://openalex.org/W2796293949;https://openalex.org/W2798434869;https://openalex.org/W2890984812;https://openalex.org/W2892079374;https://openalex.org/W2963468826;https://openalex.org/W2974549418;https://openalex.org/W2981065735;https://openalex.org/W2982169647;https://openalex.org/W2990961515;https://openalex.org/W2995742898;https://openalex.org/W3011907935;https://openalex.org/W3023478445;https://openalex.org/W3100566623;https://openalex.org/W3100931082;https://openalex.org/W3101479050;https://openalex.org/W3101518480;https://openalex.org/W3111297213,OPENALEX,"Mandaar B. Pande, 2020, Science & Technology Libraries","Mandaar B. Pande, 2020, Science & Technology Libraries"
+Early survey with bibliometric analysis on machine learning approaches in controlling COVID-19 outbreaks,2020,article,en,47,10.7717/peerj-cs.313,https://openalex.org/W3108758487,33816964,Haruna Chiroma;Absalom E. Ezugwu;Fatsuma Jauro;Mohammed Ali Al-Garadi;Idris Nasir Abdullahi;Liyana Shuib,Haruna Chiroma;Absalom E. Ezugwu;Fatsuma Jauro;Mohammed Ali Al-Garadi;Idris Nasir Abdullahi;Liyana Shuib,National Yunlin University of Science and Technology;University of KwaZulu-Natal;Ahmadu Bello University;Emory University;Ahmadu Bello University;University of Malaya,Haruna Chiroma,PeerJ Computer Science,PeerJ Computer Science,6,,e313,e313,"BACKGROUND AND OBJECTIVE: The COVID-19 pandemic has caused severe mortality across the globe, with the USA as the current epicenter of the COVID-19 epidemic even though the initial outbreak was in Wuhan, China. Many studies successfully applied machine learning to fight COVID-19 pandemic from a different perspective. To the best of the authors' knowledge, no comprehensive survey with bibliometric analysis has been conducted yet on the adoption of machine learning to fight COVID-19. Therefore, the main goal of this study is to bridge this gap by carrying out an in-depth survey with bibliometric analysis on the adoption of machine learning-based technologies to fight COVID-19 pandemic from a different perspective, including an extensive systematic literature review and bibliometric analysis. METHODS: We applied a literature survey methodology to retrieved data from academic databases and subsequently employed a bibliometric technique to analyze the accessed records. Besides, the concise summary, sources of COVID-19 datasets, taxonomy, synthesis and analysis are presented in this study. It was found that the Convolutional Neural Network (CNN) is mainly utilized in developing COVID-19 diagnosis and prognosis tools, mostly from chest X-ray and chest CT scan images. Similarly, in this study, we performed a bibliometric analysis of machine learning-based COVID-19 related publications in the Scopus and Web of Science citation indexes. Finally, we propose a new perspective for solving the challenges identified as direction for future research. We believe the survey with bibliometric analysis can help researchers easily detect areas that require further development and identify potential collaborators. RESULTS: The findings of the analysis presented in this article reveal that machine learning-based COVID-19 diagnose tools received the most considerable attention from researchers. Specifically, the analyses of results show that energy and resources are more dispenses towards COVID-19 automated diagnose tools while COVID-19 drugs and vaccine development remains grossly underexploited. Besides, the machine learning-based algorithm that is predominantly utilized by researchers in developing the diagnostic tool is CNN mainly from X-rays and CT scan images. CONCLUSIONS: The challenges hindering practical work on the application of machine learning-based technologies to fight COVID-19 and new perspective to solve the identified problems are presented in this article. Furthermore, we believed that the presented survey with bibliometric analysis could make it easier for researchers to identify areas that need further development and possibly identify potential collaborators at author, country and institutional level, with the overall aim of furthering research in the focused area of machine learning application to disease control.",,Coronavirus disease 2019 (COVID-19);Web of science;Bibliometrics;Scopus;Citation;Pandemic;Data science;Computer science;Convolutional neural network;Perspective (graphical);Artificial intelligence;Geography;MEDLINE;Meta-analysis;Data mining;Medicine;Political science;Library science;Pathology;Disease;Infectious disease (medical specialty);Law,https://openalex.org/W1495521362;https://openalex.org/W1689711448;https://openalex.org/W2028070629;https://openalex.org/W2123585936;https://openalex.org/W2131643987;https://openalex.org/W2411433310;https://openalex.org/W2573587735;https://openalex.org/W2754051771;https://openalex.org/W2758783533;https://openalex.org/W2783454406;https://openalex.org/W2784123366;https://openalex.org/W2810292802;https://openalex.org/W2919115771;https://openalex.org/W2964248614;https://openalex.org/W2969304542;https://openalex.org/W2989207397;https://openalex.org/W2993120940;https://openalex.org/W2994859409;https://openalex.org/W2999355706;https://openalex.org/W2999409984;https://openalex.org/W2999901576;https://openalex.org/W3000106795;https://openalex.org/W3001118548;https://openalex.org/W3001152983;https://openalex.org/W3001195213;https://openalex.org/W3002764620;https://openalex.org/W3003465021;https://openalex.org/W3004775012;https://openalex.org/W3005111420;https://openalex.org/W3006110666;https://openalex.org/W3006328792;https://openalex.org/W3006643024;https://openalex.org/W3006882119;https://openalex.org/W3007497549;https://openalex.org/W3007678840;https://openalex.org/W3008207212;https://openalex.org/W3008627141;https://openalex.org/W3008827533;https://openalex.org/W3008985036;https://openalex.org/W3009876049;https://openalex.org/W3009951436;https://openalex.org/W3010522809;https://openalex.org/W3010604545;https://openalex.org/W3010902474;https://openalex.org/W3010956505;https://openalex.org/W3011048075;https://openalex.org/W3011149445;https://openalex.org/W3011588331;https://openalex.org/W3011716991;https://openalex.org/W3011866596;https://openalex.org/W3012038738;https://openalex.org/W3012080801;https://openalex.org/W3012772854;https://openalex.org/W3012843799;https://openalex.org/W3012948061;https://openalex.org/W3013056994;https://openalex.org/W3013130152;https://openalex.org/W3013601031;https://openalex.org/W3013633552;https://openalex.org/W3013758358;https://openalex.org/W3014289208;https://openalex.org/W3014524604;https://openalex.org/W3014725478;https://openalex.org/W3014874133;https://openalex.org/W3015506441;https://openalex.org/W3015698531;https://openalex.org/W3015836412;https://openalex.org/W3016488464;https://openalex.org/W3016822938;https://openalex.org/W3017117984;https://openalex.org/W3017267196;https://openalex.org/W3017403618;https://openalex.org/W3017644243;https://openalex.org/W3017855299;https://openalex.org/W3017886147;https://openalex.org/W3018996808;https://openalex.org/W3019119825;https://openalex.org/W3019186020;https://openalex.org/W3019531985;https://openalex.org/W3020518471;https://openalex.org/W3021234865;https://openalex.org/W3021325664;https://openalex.org/W3021622280;https://openalex.org/W3021871585;https://openalex.org/W3022251615;https://openalex.org/W3022592783;https://openalex.org/W3022714712;https://openalex.org/W3022787740;https://openalex.org/W3022882668;https://openalex.org/W3022885394;https://openalex.org/W3023402713;https://openalex.org/W3023594394;https://openalex.org/W3023618360;https://openalex.org/W3025276991;https://openalex.org/W3025352604;https://openalex.org/W3025899282;https://openalex.org/W3025948831;https://openalex.org/W3026046290;https://openalex.org/W3031396671;https://openalex.org/W3033721958;https://openalex.org/W3038744550;https://openalex.org/W3040660552;https://openalex.org/W3042070269;https://openalex.org/W3042980950;https://openalex.org/W3046199400;https://openalex.org/W3047813901;https://openalex.org/W3048886990;https://openalex.org/W3087552217;https://openalex.org/W3104810384;https://openalex.org/W3165423827;https://openalex.org/W4211114005;https://openalex.org/W6629664863;https://openalex.org/W6678255110;https://openalex.org/W6772181936;https://openalex.org/W6774872622;https://openalex.org/W6776205382;https://openalex.org/W6776496726;https://openalex.org/W6776880506;https://openalex.org/W6960492257;https://openalex.org/W7074171492,OPENALEX,"Haruna Chiroma, 2020, PeerJ Computer Science","Haruna Chiroma, 2020, PeerJ Computer Science"
+Comparing Open-Access Database and Traditional Intensive Care Studies Using Machine Learning: Bibliometric Analysis Study,2024,article,en,13,10.2196/48330,https://openalex.org/W4390860704,38630522,Yuhe Ke;Rui Yang;Nan Liu,Yuhe Ke;Rui Yang;Nan Liu,Singapore General Hospital;National University of Singapore;Duke-NUS Medical School;National University of Singapore;Duke-NUS Medical School,Yuhe Ke,Journal of Medical Internet Research,Journal of Medical Internet Research,26,,e48330,e48330,"BACKGROUND: Intensive care research has predominantly relied on conventional methods like randomized controlled trials. However, the increasing popularity of open-access, free databases in the past decade has opened new avenues for research, offering fresh insights. Leveraging machine learning (ML) techniques enables the analysis of trends in a vast number of studies. OBJECTIVE: This study aims to conduct a comprehensive bibliometric analysis using ML to compare trends and research topics in traditional intensive care unit (ICU) studies and those done with open-access databases (OADs). METHODS: We used ML for the analysis of publications in the Web of Science database in this study. Articles were categorized into ""OAD"" and ""traditional intensive care"" (TIC) studies. OAD studies were included in the Medical Information Mart for Intensive Care (MIMIC), eICU Collaborative Research Database (eICU-CRD), Amsterdam University Medical Centers Database (AmsterdamUMCdb), High Time Resolution ICU Dataset (HiRID), and Pediatric Intensive Care database. TIC studies included all other intensive care studies. Uniform manifold approximation and projection was used to visualize the corpus distribution. The BERTopic technique was used to generate 30 topic-unique identification numbers and to categorize topics into 22 topic families. RESULTS: A total of 227,893 records were extracted. After exclusions, 145,426 articles were identified as TIC and 1301 articles as OAD studies. TIC studies experienced exponential growth over the last 2 decades, culminating in a peak of 16,378 articles in 2021, while OAD studies demonstrated a consistent upsurge since 2018. Sepsis, ventilation-related research, and pediatric intensive care were the most frequently discussed topics. TIC studies exhibited broader coverage than OAD studies, suggesting a more extensive research scope. CONCLUSIONS: This study analyzed ICU research, providing valuable insights from a large number of publications. OAD studies complement TIC studies, focusing on predictive modeling, while TIC studies capture essential qualitative information. Integrating both approaches in a complementary manner is the future direction for ICU research. Additionally, natural language processing techniques offer a transformative alternative for literature review and bibliometric analysis.",,Computer science;Data science;Database;Artificial intelligence;World Wide Web,https://openalex.org/W1678171433;https://openalex.org/W1774591799;https://openalex.org/W2000082121;https://openalex.org/W2001819223;https://openalex.org/W2013282877;https://openalex.org/W2027461913;https://openalex.org/W2033609349;https://openalex.org/W2081498531;https://openalex.org/W2083138209;https://openalex.org/W2095466600;https://openalex.org/W2105110676;https://openalex.org/W2120585598;https://openalex.org/W2132243814;https://openalex.org/W2134236426;https://openalex.org/W2162317738;https://openalex.org/W2162753493;https://openalex.org/W2165010366;https://openalex.org/W2167042818;https://openalex.org/W2302501749;https://openalex.org/W2414793256;https://openalex.org/W2508919546;https://openalex.org/W2610582798;https://openalex.org/W2754520134;https://openalex.org/W2786672974;https://openalex.org/W2804920713;https://openalex.org/W2891400669;https://openalex.org/W2892592994;https://openalex.org/W2896457183;https://openalex.org/W2913544880;https://openalex.org/W2946302516;https://openalex.org/W2954088506;https://openalex.org/W2992764683;https://openalex.org/W2999034209;https://openalex.org/W3000895385;https://openalex.org/W3018508748;https://openalex.org/W3035463372;https://openalex.org/W3042338240;https://openalex.org/W3043119602;https://openalex.org/W3046898838;https://openalex.org/W3086236016;https://openalex.org/W3110795479;https://openalex.org/W3112345976;https://openalex.org/W3131505924;https://openalex.org/W3157923155;https://openalex.org/W3160856016;https://openalex.org/W3161904859;https://openalex.org/W3183848791;https://openalex.org/W3203103016;https://openalex.org/W3217484676;https://openalex.org/W4200365535;https://openalex.org/W4206528363;https://openalex.org/W4206968264;https://openalex.org/W4210241929;https://openalex.org/W4214486514;https://openalex.org/W4221142221;https://openalex.org/W4226086327;https://openalex.org/W4283736289;https://openalex.org/W4293170833;https://openalex.org/W4295472519;https://openalex.org/W4302283577;https://openalex.org/W4312846991;https://openalex.org/W4313439128;https://openalex.org/W4385227045,OPENALEX,"Yuhe Ke, 2024, Journal of Medical Internet Research","Yuhe Ke, 2024, Journal of Medical Internet Research"
+Machine Learning Research Trends in Africa: A 30 Years Overview with Bibliometric Analysis Review,2023,review,en,44,10.1007/s11831-023-09930-z,https://openalex.org/W4367394483,37359741,Absalom E. Ezugwu;Olaide N. Oyelade;Abiodun M. Ikotun;Jeffrey O. Agushaka;Yuh‐Shan Ho,Absalom E. Ezugwu;Olaide N. Oyelade;Abiodun M. Ikotun;Jeffrey O. Agushaka;Yuh‐Shan Ho,North-West University;Ahmadu Bello University;North-West University;North-West University;Asia University,Absalom E. Ezugwu,Archives of Computational Methods in Engineering,Archives of Computational Methods in Engineering,30,7,4177,4207,"The machine learning (ML) paradigm has gained much popularity today. Its algorithmic models are employed in every field, such as natural language processing, pattern recognition, object detection, image recognition, earth observation and many other research areas. In fact, machine learning technologies and their inevitable impact suffice in many technological transformation agendas currently being propagated by many nations, for which the already yielded benefits are outstanding. From a regional perspective, several studies have shown that machine learning technology can help address some of Africa's most pervasive problems, such as poverty alleviation, improving education, delivering quality healthcare services, and addressing sustainability challenges like food security and climate change. In this state-of-the-art paper, a critical bibliometric analysis study is conducted, coupled with an extensive literature survey on recent developments and associated applications in machine learning research with a perspective on Africa. The presented bibliometric analysis study consists of 2761 machine learning-related documents, of which 89% were articles with at least 482 citations published in 903 journals during the past three decades. Furthermore, the collated documents were retrieved from the Science Citation Index EXPANDED, comprising research publications from 54 African countries between 1993 and 2021. The bibliometric study shows the visualization of the current landscape and future trends in machine learning research and its application to facilitate future collaborative research and knowledge exchange among authors from different research institutions scattered across the African continent.",,Popularity;Bibliometrics;Computer science;Data science;Artificial intelligence;Sustainability;Political science;Library science;Ecology;Biology;Law,https://openalex.org/W4952878;https://openalex.org/W48125276;https://openalex.org/W48397770;https://openalex.org/W1468262487;https://openalex.org/W1886355256;https://openalex.org/W1967551258;https://openalex.org/W1976610059;https://openalex.org/W1978331315;https://openalex.org/W1981302612;https://openalex.org/W1985715605;https://openalex.org/W2002732332;https://openalex.org/W2008192368;https://openalex.org/W2010199386;https://openalex.org/W2014928429;https://openalex.org/W2015811642;https://openalex.org/W2017335377;https://openalex.org/W2017689092;https://openalex.org/W2023211236;https://openalex.org/W2036398269;https://openalex.org/W2040395995;https://openalex.org/W2041375131;https://openalex.org/W2044451649;https://openalex.org/W2047066646;https://openalex.org/W2059980912;https://openalex.org/W2068249243;https://openalex.org/W2084290456;https://openalex.org/W2088264916;https://openalex.org/W2091878638;https://openalex.org/W2100599236;https://openalex.org/W2111892395;https://openalex.org/W2112621676;https://openalex.org/W2115743893;https://openalex.org/W2116575643;https://openalex.org/W2116660956;https://openalex.org/W2129435498;https://openalex.org/W2136375252;https://openalex.org/W2137006212;https://openalex.org/W2142537581;https://openalex.org/W2157395790;https://openalex.org/W2165167765;https://openalex.org/W2170353536;https://openalex.org/W2179909967;https://openalex.org/W2188115011;https://openalex.org/W2298779432;https://openalex.org/W2346331195;https://openalex.org/W2399016236;https://openalex.org/W2463898247;https://openalex.org/W2489886790;https://openalex.org/W2516848833;https://openalex.org/W2544947359;https://openalex.org/W2562498401;https://openalex.org/W2588003345;https://openalex.org/W2605165679;https://openalex.org/W2609731728;https://openalex.org/W2611159092;https://openalex.org/W2614850301;https://openalex.org/W2625392185;https://openalex.org/W2741922227;https://openalex.org/W2742428030;https://openalex.org/W2751668559;https://openalex.org/W2754981253;https://openalex.org/W2766624620;https://openalex.org/W2771053518;https://openalex.org/W2780099243;https://openalex.org/W2791363371;https://openalex.org/W2802762937;https://openalex.org/W2804836751;https://openalex.org/W2891503716;https://openalex.org/W2904321320;https://openalex.org/W2910381571;https://openalex.org/W2923537029;https://openalex.org/W2932700025;https://openalex.org/W2943477262;https://openalex.org/W2947174513;https://openalex.org/W2947319370;https://openalex.org/W2949006873;https://openalex.org/W2952799197;https://openalex.org/W2954771128;https://openalex.org/W2962824709;https://openalex.org/W2963837235;https://openalex.org/W2964101383;https://openalex.org/W2982439547;https://openalex.org/W2983289688;https://openalex.org/W2986821611;https://openalex.org/W2991507433;https://openalex.org/W2992584342;https://openalex.org/W2998503008;https://openalex.org/W3000451641;https://openalex.org/W3007397514;https://openalex.org/W3010655531;https://openalex.org/W3011204221;https://openalex.org/W3013998096;https://openalex.org/W3015286549;https://openalex.org/W3019166713;https://openalex.org/W3023402713;https://openalex.org/W3024243470;https://openalex.org/W3033432709;https://openalex.org/W3040736119;https://openalex.org/W3045576536;https://openalex.org/W3046981865;https://openalex.org/W3047486287;https://openalex.org/W3048581266;https://openalex.org/W3082567221;https://openalex.org/W3083228182;https://openalex.org/W3095217282;https://openalex.org/W3098965398;https://openalex.org/W3102027041;https://openalex.org/W3111249508;https://openalex.org/W3111825573;https://openalex.org/W3113742260;https://openalex.org/W3116478932;https://openalex.org/W3120155159;https://openalex.org/W3127432888;https://openalex.org/W3134939182;https://openalex.org/W3135743954;https://openalex.org/W3135875892;https://openalex.org/W3140854437;https://openalex.org/W3143865352;https://openalex.org/W3154627126;https://openalex.org/W3154815491;https://openalex.org/W3159070847;https://openalex.org/W3163849331;https://openalex.org/W3164551595;https://openalex.org/W3165261737;https://openalex.org/W3179655344;https://openalex.org/W3191945353;https://openalex.org/W3193836397;https://openalex.org/W3197928871;https://openalex.org/W3200198461;https://openalex.org/W3200532822;https://openalex.org/W3202607781;https://openalex.org/W3208011655;https://openalex.org/W3211562368;https://openalex.org/W3212019382;https://openalex.org/W3212644427;https://openalex.org/W3215748564;https://openalex.org/W3217085074;https://openalex.org/W4205767840;https://openalex.org/W4210548402;https://openalex.org/W4210634210;https://openalex.org/W4211213810;https://openalex.org/W4220798325;https://openalex.org/W4220920787;https://openalex.org/W4224006918;https://openalex.org/W4224315676;https://openalex.org/W4225616072;https://openalex.org/W4242937284;https://openalex.org/W4283362028;https://openalex.org/W4286436522;https://openalex.org/W4290043213;https://openalex.org/W4295123363;https://openalex.org/W4297124928;https://openalex.org/W4306353712;https://openalex.org/W4312328070;https://openalex.org/W4313825899;https://openalex.org/W4315701234;https://openalex.org/W4317906761;https://openalex.org/W4365814241;https://openalex.org/W4387584778,OPENALEX,"Absalom E. Ezugwu, 2023, Archives of Computational Methods in Engineering","Absalom E. Ezugwu, 2023, Archives of Computational Methods in Engineering"
+"Strategies to Measure Soil Moisture Using Traditional Methods, Automated Sensors, Remote Sensing, and Machine Learning Techniques: Review, Bibliometric Analysis, Applications, Research Findings, and Future Directions",2023,article,en,95,10.1109/access.2023.3243635,https://openalex.org/W4319663647,,Abhilash Singh;Kumar Gaurav;Gaurav Kailash Sonkar;Cheng‐Chi Lee,Abhilash Singh;Kumar Gaurav;Gaurav Kailash Sonkar;Cheng‐Chi Lee,"Indian Institute of Science Education and Research, Bhopal;Indian Institute of Science Education and Research, Bhopal;Indian Institute of Science Education and Research, Bhopal;Fu Jen Catholic University;Asia University",Abhilash Singh,IEEE Access,IEEE Access,11,,13605,13635,"This review provides a detailed synthesis of various in-situ, remote sensing, and machine learning approaches to estimate soil moisture. Bibliometric analysis of the published literature on soil moisture shows that Time-Domain Reflectometry (TDR) is the most widely used in-situ instrument, while remote sensing is the most preferred application, and the random forest is the widely applied algorithm to simulate surface soil moisture. We have applied ten most widely used machine learning models on a publicly available dataset (in-situ soil moisture measurement and satellite images) to predict soil moisture and compared their results. We have briefly discussed the potential of using the upcoming NASA-ISRO Synthetic Aperture Radar (NISAR) mission images to estimate soil moisture. Finally, this review discusses the capabilities of physics-informed and automated machine learning (AutoML) models to predict surface soil moisture at higher spatial and temporal resolutions. This review will assist researchers in investigating the applications of soil moisture in the broad domain of earth sciences.",,Remote sensing;Water content;Synthetic aperture radar;Reflectometry;Environmental science;Moisture;Computer science;Soil science;Machine learning;Meteorology;Time domain;Engineering;Geology;Geography;Computer vision;Geotechnical engineering,https://openalex.org/W607088829;https://openalex.org/W654542702;https://openalex.org/W747352923;https://openalex.org/W1096706567;https://openalex.org/W1451730414;https://openalex.org/W1493904465;https://openalex.org/W1528117200;https://openalex.org/W1570245028;https://openalex.org/W1575584547;https://openalex.org/W1862592918;https://openalex.org/W1873607511;https://openalex.org/W1931431119;https://openalex.org/W1964785899;https://openalex.org/W1968729022;https://openalex.org/W1968946567;https://openalex.org/W1974180061;https://openalex.org/W1974866669;https://openalex.org/W1975682355;https://openalex.org/W1978268894;https://openalex.org/W1985817801;https://openalex.org/W1990869551;https://openalex.org/W1998742682;https://openalex.org/W2003036298;https://openalex.org/W2003104708;https://openalex.org/W2006457820;https://openalex.org/W2013173853;https://openalex.org/W2014238150;https://openalex.org/W2020004539;https://openalex.org/W2021765748;https://openalex.org/W2025515353;https://openalex.org/W2028979033;https://openalex.org/W2033730365;https://openalex.org/W2034956981;https://openalex.org/W2037125412;https://openalex.org/W2037744170;https://openalex.org/W2038782607;https://openalex.org/W2038949241;https://openalex.org/W2039853184;https://openalex.org/W2044927495;https://openalex.org/W2046547379;https://openalex.org/W2047199896;https://openalex.org/W2048069199;https://openalex.org/W2050310403;https://openalex.org/W2052918983;https://openalex.org/W2058891717;https://openalex.org/W2059150651;https://openalex.org/W2059266940;https://openalex.org/W2059933426;https://openalex.org/W2060794423;https://openalex.org/W2062781596;https://openalex.org/W2063907334;https://openalex.org/W2067426984;https://openalex.org/W2071323141;https://openalex.org/W2071440331;https://openalex.org/W2075411628;https://openalex.org/W2076196252;https://openalex.org/W2082162486;https://openalex.org/W2082937524;https://openalex.org/W2084952127;https://openalex.org/W2089333997;https://openalex.org/W2090683582;https://openalex.org/W2090684728;https://openalex.org/W2091213485;https://openalex.org/W2092055157;https://openalex.org/W2092869579;https://openalex.org/W2094807568;https://openalex.org/W2096801161;https://openalex.org/W2100351139;https://openalex.org/W2100401723;https://openalex.org/W2102998469;https://openalex.org/W2109898366;https://openalex.org/W2110614570;https://openalex.org/W2114569030;https://openalex.org/W2116705363;https://openalex.org/W2123744475;https://openalex.org/W2124561353;https://openalex.org/W2126835024;https://openalex.org/W2130515708;https://openalex.org/W2136630510;https://openalex.org/W2138149909;https://openalex.org/W2143682006;https://openalex.org/W2144137496;https://openalex.org/W2144648550;https://openalex.org/W2145846654;https://openalex.org/W2147241431;https://openalex.org/W2147847739;https://openalex.org/W2150220236;https://openalex.org/W2154586386;https://openalex.org/W2155923880;https://openalex.org/W2156909104;https://openalex.org/W2161371786;https://openalex.org/W2163753399;https://openalex.org/W2166884697;https://openalex.org/W2169678197;https://openalex.org/W2270330859;https://openalex.org/W2278075763;https://openalex.org/W2330218200;https://openalex.org/W2338584982;https://openalex.org/W2496225726;https://openalex.org/W2498466302;https://openalex.org/W2509917403;https://openalex.org/W2549384537;https://openalex.org/W2573100662;https://openalex.org/W2582566895;https://openalex.org/W2587345921;https://openalex.org/W2588540686;https://openalex.org/W2623824808;https://openalex.org/W2781501238;https://openalex.org/W2792886864;https://openalex.org/W2795466254;https://openalex.org/W2803867848;https://openalex.org/W2847407800;https://openalex.org/W2888908144;https://openalex.org/W2889554869;https://openalex.org/W2894712623;https://openalex.org/W2901761027;https://openalex.org/W2911964244;https://openalex.org/W2923750943;https://openalex.org/W2937810286;https://openalex.org/W2943184968;https://openalex.org/W2944994884;https://openalex.org/W2948503857;https://openalex.org/W2959400106;https://openalex.org/W2963453445;https://openalex.org/W2966284335;https://openalex.org/W2969248106;https://openalex.org/W2971117720;https://openalex.org/W2982031239;https://openalex.org/W2997833137;https://openalex.org/W2998199582;https://openalex.org/W2998216295;https://openalex.org/W3001491100;https://openalex.org/W3003550074;https://openalex.org/W3004747764;https://openalex.org/W3012621877;https://openalex.org/W3015987273;https://openalex.org/W3017205434;https://openalex.org/W3019614043;https://openalex.org/W3035012985;https://openalex.org/W3042908761;https://openalex.org/W3045288728;https://openalex.org/W3088034280;https://openalex.org/W3090886373;https://openalex.org/W3100492273;https://openalex.org/W3103753913;https://openalex.org/W3106832215;https://openalex.org/W3112824784;https://openalex.org/W3115137215;https://openalex.org/W3121469503;https://openalex.org/W3125515083;https://openalex.org/W3125537303;https://openalex.org/W3131057326;https://openalex.org/W3134876352;https://openalex.org/W3135049088;https://openalex.org/W3154189120;https://openalex.org/W3160856016;https://openalex.org/W3162927183;https://openalex.org/W3163993681;https://openalex.org/W3177208529;https://openalex.org/W3181435465;https://openalex.org/W3195353059;https://openalex.org/W3197483324;https://openalex.org/W3201972326;https://openalex.org/W3205275279;https://openalex.org/W4210505033;https://openalex.org/W4231166535;https://openalex.org/W4234292501;https://openalex.org/W4236546708;https://openalex.org/W4243081636;https://openalex.org/W4281757528;https://openalex.org/W4283776044;https://openalex.org/W4283813344;https://openalex.org/W4294233994;https://openalex.org/W4319593977;https://openalex.org/W6602115970;https://openalex.org/W6606403862;https://openalex.org/W6618700822;https://openalex.org/W6621573692;https://openalex.org/W6628657155;https://openalex.org/W6631904961;https://openalex.org/W6634034818;https://openalex.org/W6680532697;https://openalex.org/W6688612899;https://openalex.org/W6732310830;https://openalex.org/W6787645134;https://openalex.org/W6824317741;https://openalex.org/W7066667914,OPENALEX,"Abhilash Singh, 2023, IEEE Access","Abhilash Singh, 2023, IEEE Access"
+Small data machine learning in materials science,2023,article,en,697,10.1038/s41524-023-01000-z,https://openalex.org/W4360949780,,Pengcheng Xu;Xiaobo Ji;Minjie Li;Wencong Lu,Pengcheng Xu;Xiaobo Ji;Minjie Li;Wencong Lu,Shanghai University;Shanghai University;Shanghai University;Shanghai University;Zhejiang Lab,Pengcheng Xu,npj Computational Materials,npj Computational Materials,9,1,,,"Abstract This review discussed the dilemma of small data faced by materials machine learning. First, we analyzed the limitations brought by small data. Then, the workflow of materials machine learning has been introduced. Next, the methods of dealing with small data were introduced, including data extraction from publications, materials database construction, high-throughput computations and experiments from the data source level; modeling algorithms for small data and imbalanced learning from the algorithm level; active learning and transfer learning from the machine learning strategy level. Finally, the future directions for small data machine learning in materials science were proposed.",,Computer science;Machine learning;Workflow;Artificial intelligence;Small data;Active learning (machine learning);Computational learning theory;Database,https://openalex.org/W1964357740;https://openalex.org/W1970161214;https://openalex.org/W1993241272;https://openalex.org/W2017222169;https://openalex.org/W2118978333;https://openalex.org/W2123306226;https://openalex.org/W2123367805;https://openalex.org/W2132001804;https://openalex.org/W2149971132;https://openalex.org/W2162233306;https://openalex.org/W2166541753;https://openalex.org/W2169491861;https://openalex.org/W2174492018;https://openalex.org/W2233154023;https://openalex.org/W2337110853;https://openalex.org/W2523785361;https://openalex.org/W2611743072;https://openalex.org/W2754122850;https://openalex.org/W2762914021;https://openalex.org/W2770164889;https://openalex.org/W2778051509;https://openalex.org/W2782958502;https://openalex.org/W2784053991;https://openalex.org/W2794238513;https://openalex.org/W2794386528;https://openalex.org/W2798057722;https://openalex.org/W2807800730;https://openalex.org/W2810294304;https://openalex.org/W2887227820;https://openalex.org/W2889966413;https://openalex.org/W2901649800;https://openalex.org/W2901824395;https://openalex.org/W2907897763;https://openalex.org/W2916338083;https://openalex.org/W2918861676;https://openalex.org/W2948233954;https://openalex.org/W2952832141;https://openalex.org/W2976102057;https://openalex.org/W2983997668;https://openalex.org/W2992584342;https://openalex.org/W3008530788;https://openalex.org/W3011540643;https://openalex.org/W3017826127;https://openalex.org/W3019132419;https://openalex.org/W3019287016;https://openalex.org/W3034954837;https://openalex.org/W3035942316;https://openalex.org/W3036776898;https://openalex.org/W3037846725;https://openalex.org/W3041133507;https://openalex.org/W3042344738;https://openalex.org/W3042722891;https://openalex.org/W3045882047;https://openalex.org/W3065848552;https://openalex.org/W3090892334;https://openalex.org/W3092004601;https://openalex.org/W3094703165;https://openalex.org/W3101689280;https://openalex.org/W3104644561;https://openalex.org/W3107581532;https://openalex.org/W3118806847;https://openalex.org/W3124401852;https://openalex.org/W3127040762;https://openalex.org/W3127365350;https://openalex.org/W3127949697;https://openalex.org/W3128818655;https://openalex.org/W3129039627;https://openalex.org/W3133517924;https://openalex.org/W3139066888;https://openalex.org/W3153202491;https://openalex.org/W3153990350;https://openalex.org/W3155739706;https://openalex.org/W3156955375;https://openalex.org/W3157337682;https://openalex.org/W3158636781;https://openalex.org/W3175676263;https://openalex.org/W3177014898;https://openalex.org/W3184847901;https://openalex.org/W3185023631;https://openalex.org/W3189164715;https://openalex.org/W3191686138;https://openalex.org/W3194385912;https://openalex.org/W3199290782;https://openalex.org/W3199883166;https://openalex.org/W3200122731;https://openalex.org/W3202771869;https://openalex.org/W3206553463;https://openalex.org/W3210035924;https://openalex.org/W4200371263;https://openalex.org/W4205247343;https://openalex.org/W4205259885;https://openalex.org/W4206095984;https://openalex.org/W4210597700;https://openalex.org/W4211182742;https://openalex.org/W4213291250;https://openalex.org/W4214764980;https://openalex.org/W4220817410;https://openalex.org/W4220840201;https://openalex.org/W4224037372;https://openalex.org/W4224242327;https://openalex.org/W4224997931;https://openalex.org/W4225092916;https://openalex.org/W4226338792;https://openalex.org/W4281476575;https://openalex.org/W4281631239;https://openalex.org/W4281658718;https://openalex.org/W4282041110;https://openalex.org/W4283022459;https://openalex.org/W4283263325;https://openalex.org/W4285386134;https://openalex.org/W4296691523;https://openalex.org/W4308586705,OPENALEX,"Pengcheng Xu, 2023, npj Computational Materials","Pengcheng Xu, 2023, npj Computational Materials"
+Towards a precise understanding of social entrepreneurship: An integrated bibliometric–machine learning based review and research agenda,2023,article,en,50,10.1016/j.techfore.2023.122516,https://openalex.org/W4360602925,,Vineet Kaushik;Shobha Tewari;Sreevas Sahasranamam;Pradeep Kumar Hota,Vineet Kaushik;Shobha Tewari;Sreevas Sahasranamam;Pradeep Kumar Hota,Indian Institute of Management Kashipur;Indian Institute of Management Kashipur;University of Strathclyde;Australian National University;Thapar Institute of Engineering & Technology,Vineet Kaushik,Technological Forecasting and Social Change,Technological Forecasting and Social Change,191,,122516,122516,,,Latent Dirichlet allocation;Topic model;Scopus;Bibliometrics;Data science;Computer science;Entrepreneurship;Citation;Systematic review;Field (mathematics);Domain (mathematical analysis);Latent semantic analysis;Scientometrics;Citation analysis;Knowledge management;Artificial intelligence;World Wide Web;Political science;MEDLINE;Law;Mathematics;Pure mathematics;Mathematical analysis,https://openalex.org/W1028824834;https://openalex.org/W1510559280;https://openalex.org/W1572181180;https://openalex.org/W1748004804;https://openalex.org/W1880262756;https://openalex.org/W1963798920;https://openalex.org/W1964283292;https://openalex.org/W1965746216;https://openalex.org/W1965891434;https://openalex.org/W1969639777;https://openalex.org/W1975892393;https://openalex.org/W1983120063;https://openalex.org/W1984493033;https://openalex.org/W1991625875;https://openalex.org/W1992616122;https://openalex.org/W2000513447;https://openalex.org/W2001082470;https://openalex.org/W2002906934;https://openalex.org/W2003915431;https://openalex.org/W2005706022;https://openalex.org/W2010155324;https://openalex.org/W2016014531;https://openalex.org/W2016400365;https://openalex.org/W2018027932;https://openalex.org/W2029852869;https://openalex.org/W2032258519;https://openalex.org/W2032679313;https://openalex.org/W2033521208;https://openalex.org/W2045583177;https://openalex.org/W2052755854;https://openalex.org/W2063009632;https://openalex.org/W2074929719;https://openalex.org/W2087748205;https://openalex.org/W2088973677;https://openalex.org/W2089229253;https://openalex.org/W2099518833;https://openalex.org/W2100579062;https://openalex.org/W2105974272;https://openalex.org/W2106529082;https://openalex.org/W2110849810;https://openalex.org/W2117851943;https://openalex.org/W2120052504;https://openalex.org/W2123184168;https://openalex.org/W2137261963;https://openalex.org/W2145535121;https://openalex.org/W2151266951;https://openalex.org/W2156866271;https://openalex.org/W2164794839;https://openalex.org/W2167017067;https://openalex.org/W2171711960;https://openalex.org/W2223092947;https://openalex.org/W2313148098;https://openalex.org/W2338878073;https://openalex.org/W2341001902;https://openalex.org/W2343306044;https://openalex.org/W2358029040;https://openalex.org/W2389823280;https://openalex.org/W2403226181;https://openalex.org/W2407064033;https://openalex.org/W2409435105;https://openalex.org/W2410989775;https://openalex.org/W2433091214;https://openalex.org/W2466112528;https://openalex.org/W2466255356;https://openalex.org/W2476158099;https://openalex.org/W2489321591;https://openalex.org/W2493521008;https://openalex.org/W2508421801;https://openalex.org/W2519380966;https://openalex.org/W2519651563;https://openalex.org/W2523495911;https://openalex.org/W2569805648;https://openalex.org/W2580318018;https://openalex.org/W2581762463;https://openalex.org/W2582743722;https://openalex.org/W2615875132;https://openalex.org/W2618934163;https://openalex.org/W2626595870;https://openalex.org/W2740027236;https://openalex.org/W2750217113;https://openalex.org/W2755950973;https://openalex.org/W2766385364;https://openalex.org/W2767990394;https://openalex.org/W2779199041;https://openalex.org/W2790855988;https://openalex.org/W2791159914;https://openalex.org/W2793028062;https://openalex.org/W2794439850;https://openalex.org/W2808294899;https://openalex.org/W2808432859;https://openalex.org/W2808621201;https://openalex.org/W2887927457;https://openalex.org/W2888388036;https://openalex.org/W2888560922;https://openalex.org/W2891394434;https://openalex.org/W2904465638;https://openalex.org/W2905024335;https://openalex.org/W2911878381;https://openalex.org/W2913103480;https://openalex.org/W2913328436;https://openalex.org/W2914584698;https://openalex.org/W2915442508;https://openalex.org/W2918064950;https://openalex.org/W2930282685;https://openalex.org/W2943121181;https://openalex.org/W2950207025;https://openalex.org/W2952136798;https://openalex.org/W2955250480;https://openalex.org/W2955502065;https://openalex.org/W2956252831;https://openalex.org/W2964055349;https://openalex.org/W2965284208;https://openalex.org/W2969080693;https://openalex.org/W2986872232;https://openalex.org/W2987412628;https://openalex.org/W2992432394;https://openalex.org/W2994736955;https://openalex.org/W3001470405;https://openalex.org/W3002469857;https://openalex.org/W3004629351;https://openalex.org/W3007909602;https://openalex.org/W3008990675;https://openalex.org/W3015590642;https://openalex.org/W3016640877;https://openalex.org/W3017179834;https://openalex.org/W3020429242;https://openalex.org/W3022164605;https://openalex.org/W3024351404;https://openalex.org/W3036439430;https://openalex.org/W3041589567;https://openalex.org/W3041660485;https://openalex.org/W3081215934;https://openalex.org/W3082026966;https://openalex.org/W3091367238;https://openalex.org/W3091702329;https://openalex.org/W3093532984;https://openalex.org/W3096513170;https://openalex.org/W3106937276;https://openalex.org/W3110197688;https://openalex.org/W3110889339;https://openalex.org/W3111120448;https://openalex.org/W3112697039;https://openalex.org/W3121439200;https://openalex.org/W3122428671;https://openalex.org/W3122843079;https://openalex.org/W3125041370;https://openalex.org/W3125043858;https://openalex.org/W3125061824;https://openalex.org/W3125481785;https://openalex.org/W3128170268;https://openalex.org/W3132837365;https://openalex.org/W3136235606;https://openalex.org/W3146127354;https://openalex.org/W3155134972;https://openalex.org/W3158616546;https://openalex.org/W3163595176;https://openalex.org/W3180022188;https://openalex.org/W3204882556;https://openalex.org/W3206543326;https://openalex.org/W3207804609;https://openalex.org/W4200217033;https://openalex.org/W4200508449;https://openalex.org/W4205645601;https://openalex.org/W4210500691;https://openalex.org/W4224075166;https://openalex.org/W4255767049;https://openalex.org/W4280528531;https://openalex.org/W4281922099;https://openalex.org/W4287980879;https://openalex.org/W4300496334;https://openalex.org/W4302990361;https://openalex.org/W4391004721;https://openalex.org/W6639619044;https://openalex.org/W6646444251;https://openalex.org/W6654438158;https://openalex.org/W6658559677;https://openalex.org/W6674869481;https://openalex.org/W6676738589;https://openalex.org/W6698705156;https://openalex.org/W6703074907;https://openalex.org/W6703090467;https://openalex.org/W6703644816;https://openalex.org/W6706879832;https://openalex.org/W6724110810;https://openalex.org/W6739614057;https://openalex.org/W6753963203;https://openalex.org/W6754082054;https://openalex.org/W6757141311;https://openalex.org/W6759345062;https://openalex.org/W6770223108;https://openalex.org/W6780100161;https://openalex.org/W6784661831;https://openalex.org/W6786539349;https://openalex.org/W6792390223;https://openalex.org/W6792912639;https://openalex.org/W6794142887;https://openalex.org/W6795082674;https://openalex.org/W6803000716;https://openalex.org/W6987714012,OPENALEX,"Vineet Kaushik, 2023, Technological Forecasting and Social Change","Vineet Kaushik, 2023, Technological Forecasting and Social Change"
+Towards smart cities powered by nanogenerators: Bibliometric and machine learning–based analysis,2021,article,en,44,10.1016/j.nanoen.2021.105844,https://openalex.org/W3127175100,,Avinash Alagumalai;Omid Mahian;Mortaza Aghbashlo;Meisam Tabatabaei;Somchai Wongwises;Zhong Lin Wang,Avinash Alagumalai;Omid Mahian;Mortaza Aghbashlo;Meisam Tabatabaei;Somchai Wongwises;Zhong Lin Wang,Ferdowsi University of Mashhad;Xi'an Jiaotong University;University of Tehran;Universiti Malaysia Terengganu;Henan Agricultural University;Agricultural Research & Education Organization;Biofuel Research Team;Agricultural Biotechnology Research Institute of Iran;National Science and Technology Development Agency;King Mongkut's University of Technology Thonburi;Georgia Institute of Technology,Avinash Alagumalai,Nano Energy,Nano Energy,83,,105844,105844,,,Nanogenerator;Triboelectric effect;Commercialization;Electricity;Field (mathematics);Energy harvesting;Engineering physics;Nanotechnology;Mechanical engineering;Materials science;Manufacturing engineering;Electrical engineering;Energy (signal processing);Engineering;Piezoelectricity;Business;Marketing;Statistics;Mathematics;Composite material;Pure mathematics,https://openalex.org/W1000605845;https://openalex.org/W1847624877;https://openalex.org/W1907979007;https://openalex.org/W1993378267;https://openalex.org/W2030260688;https://openalex.org/W2033607182;https://openalex.org/W2034834428;https://openalex.org/W2035759727;https://openalex.org/W2057494508;https://openalex.org/W2058554868;https://openalex.org/W2071521202;https://openalex.org/W2089766509;https://openalex.org/W2119097715;https://openalex.org/W2128525789;https://openalex.org/W2137815847;https://openalex.org/W2138818244;https://openalex.org/W2139143604;https://openalex.org/W2148352577;https://openalex.org/W2154707832;https://openalex.org/W2168100296;https://openalex.org/W2169336864;https://openalex.org/W2173762328;https://openalex.org/W2187910500;https://openalex.org/W2208352419;https://openalex.org/W2256965551;https://openalex.org/W2260415155;https://openalex.org/W2324179347;https://openalex.org/W2330492786;https://openalex.org/W2374529644;https://openalex.org/W2460650176;https://openalex.org/W2511968349;https://openalex.org/W2545851061;https://openalex.org/W2567728595;https://openalex.org/W2587626792;https://openalex.org/W2608936365;https://openalex.org/W2609860550;https://openalex.org/W2619763057;https://openalex.org/W2747997171;https://openalex.org/W2765862589;https://openalex.org/W2774777389;https://openalex.org/W2787690100;https://openalex.org/W2805868613;https://openalex.org/W2806443020;https://openalex.org/W2809436897;https://openalex.org/W2886833982;https://openalex.org/W2888447045;https://openalex.org/W2889412116;https://openalex.org/W2891606852;https://openalex.org/W2899809307;https://openalex.org/W2902768082;https://openalex.org/W2903206839;https://openalex.org/W2904186519;https://openalex.org/W2905714363;https://openalex.org/W2911976862;https://openalex.org/W2913629519;https://openalex.org/W2916871013;https://openalex.org/W2925162090;https://openalex.org/W2942620360;https://openalex.org/W2950487704;https://openalex.org/W2954696814;https://openalex.org/W2966483170;https://openalex.org/W2971176495;https://openalex.org/W2971490091;https://openalex.org/W2973529224;https://openalex.org/W2980812360;https://openalex.org/W2982154542;https://openalex.org/W2982928344;https://openalex.org/W2983288256;https://openalex.org/W2987660520;https://openalex.org/W2993029694;https://openalex.org/W2996080512;https://openalex.org/W2996606005;https://openalex.org/W3000781336;https://openalex.org/W3014311671;https://openalex.org/W3014518310;https://openalex.org/W3016910571;https://openalex.org/W3021341867;https://openalex.org/W3025199540;https://openalex.org/W3025880578;https://openalex.org/W3028262887;https://openalex.org/W3029513340;https://openalex.org/W3033153603;https://openalex.org/W3036291007;https://openalex.org/W3038627939;https://openalex.org/W3047027222;https://openalex.org/W3064821821;https://openalex.org/W3073035795;https://openalex.org/W3080108887;https://openalex.org/W3086246078;https://openalex.org/W3087670689;https://openalex.org/W3091654459;https://openalex.org/W3095254819;https://openalex.org/W4206890174;https://openalex.org/W6648463437;https://openalex.org/W6679365433;https://openalex.org/W6688598988;https://openalex.org/W6701126092;https://openalex.org/W6708692093;https://openalex.org/W6731685877;https://openalex.org/W6737112589;https://openalex.org/W6751810562;https://openalex.org/W6755682719;https://openalex.org/W6757290667;https://openalex.org/W6757687850;https://openalex.org/W6759296805;https://openalex.org/W6761140886;https://openalex.org/W6762102947;https://openalex.org/W6769580648;https://openalex.org/W6771952073;https://openalex.org/W6776146294;https://openalex.org/W6776779739;https://openalex.org/W6778506474;https://openalex.org/W6779045260,OPENALEX,"Avinash Alagumalai, 2021, Nano Energy","Avinash Alagumalai, 2021, Nano Energy"
+Literature Review on the Applications of Machine Learning and Blockchain Technology in Smart Healthcare Industry: A Bibliometric Analysis,2021,review,en,48,10.1155/2021/9739219,https://openalex.org/W3193560119,34426765,Yang Li;Biaoan Shan;Beiwei Li;Xiaoju Liu;Yi Pu,Yang Li;Biaoan Shan;Beiwei Li;Xiaoju Liu;Yi Pu,Jilin University;Jilin University;Jilin University;Jilin University;Jilin University,Yang Li,Journal of Healthcare Engineering,Journal of Healthcare Engineering,2021,,1,11,"The emergence of machine learning (ML) and blockchain (BC) technology has greatly enriched the functions and services of healthcare, giving birth to the new field of ""smart healthcare."" This study aims to review the application of ML and BC technology in the smart medical industry by Web of Science (WOS) using bibliometric visualization. Through our research, we identify the countries with the greatest output, the major research subjects, funding funds, and the research hotspots in this field. We also find out the key themes and future research areas in application of ML and BC technology in healthcare area. We reveal the different aspects of research under the two technologies and how they relate to each other around five themes.",,Healthcare industry;Field (mathematics);Health care;Blockchain;Data science;Knowledge management;Bibliometrics;Web of science;Visualization;Computer science;Business;Engineering management;MEDLINE;Engineering;World Wide Web;Artificial intelligence;Political science;Economic growth;Economics;Computer security;Law;Mathematics;Pure mathematics,https://openalex.org/W1425868093;https://openalex.org/W1748004804;https://openalex.org/W2076587863;https://openalex.org/W2134295053;https://openalex.org/W2165022267;https://openalex.org/W2777105798;https://openalex.org/W2782540689;https://openalex.org/W2793933216;https://openalex.org/W2887500871;https://openalex.org/W2902123208;https://openalex.org/W2945874621;https://openalex.org/W2946228717;https://openalex.org/W2951578881;https://openalex.org/W2966450377;https://openalex.org/W2997208348;https://openalex.org/W2998720941;https://openalex.org/W3017174021;https://openalex.org/W3023711887;https://openalex.org/W3024489700;https://openalex.org/W3035227021;https://openalex.org/W3038010422;https://openalex.org/W3038946282;https://openalex.org/W3042243359;https://openalex.org/W3046507381;https://openalex.org/W3080705207;https://openalex.org/W3089981751;https://openalex.org/W3093982442;https://openalex.org/W3095916600;https://openalex.org/W3112894576;https://openalex.org/W3118261252;https://openalex.org/W3119252589;https://openalex.org/W3166799498;https://openalex.org/W3168933251;https://openalex.org/W3170352655;https://openalex.org/W4233812631;https://openalex.org/W4236962467;https://openalex.org/W4249909568,OPENALEX,"Yang Li, 2021, Journal of Healthcare Engineering","Yang Li, 2021, Journal of Healthcare Engineering"
+"Artificial Intelligence for safety and reliability: A descriptive, bibliometric and interpretative review on machine learning",2024,article,en,41,10.1016/j.jlp.2024.105343,https://openalex.org/W4396733572,,Nicola Tamascelli;Alessandro Campari;Tarannom Parhizkar;Nicola Paltrinieri,Nicola Tamascelli;Alessandro Campari;Tarannom Parhizkar;Nicola Paltrinieri,"Norwegian University of Science and Technology;University of Bologna;Norwegian University of Science and Technology;University of California, Los Angeles;Norwegian University of Science and Technology",Nicola Tamascelli,Journal of Loss Prevention in the Process Industries,Journal of Loss Prevention in the Process Industries,90,,105343,105343,"This research provides a structured review of studies that utilize Artificial Intelligence for safety and reliability. In particular, it focuses on Machine Learning techniques to perform fault detection and diagnosis, anomaly detection, system prognosis, reliability analysis, and risk assessment of engineering-related systems across the industry. Relevant studies were identified through clear research questions, screened, and assessed for eligibility. Explicit inclusion and exclusion criteria were defined to verify the suitability of the records. The analysis encompasses a descriptive, bibliometric, and interpretative review. The descriptive analysis details how different ML approaches are adapted and implemented across various domains of safety and reliability. The bibliometric analysis provides in-depth and comprehensive statistics, covering aspects such as data types used, preprocessing steps undertaken, and categories of ML algorithms employed. The interpretative analysis offers a critical and forward-looking perspective on the current state of the field. A total of 308 papers were analyzed, mostly adopting supervised learning frameworks (81%) and addressing fault detection and diagnosis (57%) in more than 16 different industrial fields. The outcome of this study reflects the rapid development of this cross-cutting and interdisciplinary research field and highlights the potential for future improvement in the data-driven operational safety of industrial plants. Challenges and limitations have been highlighted and discussed, including data availability and label scarcity, data quality, trust and explainability, and interdisciplinary collaboration. Additionally, suggestions on potential solutions to overcome existing limitations and outline future directions are provided.",,Reliability (semiconductor);Field (mathematics);Computer science;Descriptive statistics;Data science;Quality (philosophy);Scarcity;Fault tree analysis;Management science;Artificial intelligence;Risk analysis (engineering);Engineering;Reliability engineering;Mathematics;Microeconomics;Quantum mechanics;Epistemology;Statistics;Pure mathematics;Medicine;Philosophy;Economics;Physics;Power (physics),https://openalex.org/W1592847587;https://openalex.org/W1978677160;https://openalex.org/W1992129230;https://openalex.org/W1995386176;https://openalex.org/W1997304546;https://openalex.org/W2009637664;https://openalex.org/W2014220254;https://openalex.org/W2016864600;https://openalex.org/W2018664114;https://openalex.org/W2031757691;https://openalex.org/W2039125545;https://openalex.org/W2051196068;https://openalex.org/W2063867591;https://openalex.org/W2066363274;https://openalex.org/W2085019962;https://openalex.org/W2089903857;https://openalex.org/W2122646361;https://openalex.org/W2124000105;https://openalex.org/W2137570937;https://openalex.org/W2146194630;https://openalex.org/W2148143831;https://openalex.org/W2150220236;https://openalex.org/W2169347809;https://openalex.org/W2205836349;https://openalex.org/W2239104709;https://openalex.org/W2564037921;https://openalex.org/W2594352094;https://openalex.org/W2606959532;https://openalex.org/W2738091946;https://openalex.org/W2772084711;https://openalex.org/W2773549135;https://openalex.org/W2792098970;https://openalex.org/W2797844224;https://openalex.org/W2799712295;https://openalex.org/W2809047955;https://openalex.org/W2897805291;https://openalex.org/W2897966647;https://openalex.org/W2901772421;https://openalex.org/W2910142614;https://openalex.org/W2912629470;https://openalex.org/W2913289332;https://openalex.org/W2920083100;https://openalex.org/W2921789962;https://openalex.org/W2922577842;https://openalex.org/W2922856096;https://openalex.org/W2948678706;https://openalex.org/W2949341078;https://openalex.org/W2960995627;https://openalex.org/W2981915020;https://openalex.org/W2984353870;https://openalex.org/W2990555792;https://openalex.org/W2991860176;https://openalex.org/W2994863453;https://openalex.org/W2998389585;https://openalex.org/W3014057330;https://openalex.org/W3023741150;https://openalex.org/W3035318737;https://openalex.org/W3035330751;https://openalex.org/W3038822267;https://openalex.org/W3094253667;https://openalex.org/W3095487005;https://openalex.org/W3098015864;https://openalex.org/W3103035501;https://openalex.org/W3105804795;https://openalex.org/W3117629641;https://openalex.org/W3126272279;https://openalex.org/W3138953622;https://openalex.org/W3162098247;https://openalex.org/W3162930711;https://openalex.org/W3164952570;https://openalex.org/W3171724330;https://openalex.org/W3185756013;https://openalex.org/W3198406420;https://openalex.org/W3200985993;https://openalex.org/W3207396718;https://openalex.org/W3207646706;https://openalex.org/W3210180182;https://openalex.org/W3213560988;https://openalex.org/W3215414868;https://openalex.org/W4205666304;https://openalex.org/W4206544469;https://openalex.org/W4220957411;https://openalex.org/W4223475678;https://openalex.org/W4224055057;https://openalex.org/W4226404024;https://openalex.org/W4231400111;https://openalex.org/W4231649899;https://openalex.org/W4236777627;https://openalex.org/W4250716257;https://openalex.org/W4251691207;https://openalex.org/W4256669726;https://openalex.org/W4285159403;https://openalex.org/W4285238901;https://openalex.org/W4285256586;https://openalex.org/W4289516096;https://openalex.org/W4292313839;https://openalex.org/W4298558181;https://openalex.org/W4300990358;https://openalex.org/W4304761972;https://openalex.org/W4306920664;https://openalex.org/W4308033457;https://openalex.org/W4308307412;https://openalex.org/W4309337291;https://openalex.org/W4310029360;https://openalex.org/W4318586239;https://openalex.org/W4361012985;https://openalex.org/W4362669277;https://openalex.org/W4386986818;https://openalex.org/W4387806421;https://openalex.org/W4390005078;https://openalex.org/W6634113578;https://openalex.org/W6672986919;https://openalex.org/W6679002737;https://openalex.org/W6690156651;https://openalex.org/W6708991347;https://openalex.org/W6728146022;https://openalex.org/W6744322657;https://openalex.org/W6752891516;https://openalex.org/W6755603292;https://openalex.org/W6756708519;https://openalex.org/W6759355091;https://openalex.org/W6760255084;https://openalex.org/W6760570153;https://openalex.org/W6787731716;https://openalex.org/W6792572463;https://openalex.org/W6802173281;https://openalex.org/W6803381961;https://openalex.org/W6804747582;https://openalex.org/W6813297198;https://openalex.org/W6822589861;https://openalex.org/W6825983812;https://openalex.org/W6838655090;https://openalex.org/W6844316357;https://openalex.org/W6856464586;https://openalex.org/W6860180176,OPENALEX,"Nicola Tamascelli, 2024, Journal of Loss Prevention in the Process Industries","Nicola Tamascelli, 2024, Journal of Loss Prevention in the Process Industries"
+Artificial intelligence and machine learning in combating illegal financial operations: Bibliometric analysis,2024,article,en,38,10.14254/1795-6889.2024.20-2.5,https://openalex.org/W4402323428,,Serhiy Lyeonov;Veselin Drašković;Zuzana Kubaščíková;Veronaika Fenyves,Serhiy Lyeonov;Veselin Drašković;Zuzana Kubaščíková;Veronaika Fenyves,Silesian University of Technology;Społeczna Akademia Nauk;Bratislava University of Economics and Business;University of Debrecen,Serhiy Lyeonov,Human Technology,Human Technology,20,2,325,360,"Money launderers and corrupt entities refine methods to evade detection, making artificial intelligence (AI) and machine learning (ML) essential for countering these threats. AI automates identity verification using diverse data sources, including government databases and social media, analysing client data more effectively than traditional methods. This study uses bibliometric analysis to examine AI and ML in anti-money laundering and anti-corruption efforts. A sample of 746 documents from 477 sources from Scopus shows a 14.33% annual growth rate and an average document age of 3.51 years, highlighting the field's actuality and rapid development. The research indicates significant international collaboration in documents. The main clusters of keywords relate to the implementation of AI and ML in (1) avoiding fraud and cybersecurity, (2) AML compliance, (3) promotion of transparency in combating corruption, etc. Addressing ethical concerns, privacy, and bias is crucial for the fair and effective use of AI and ML in this area.",,Computer science;Artificial intelligence;Data science;Business;Knowledge management,https://openalex.org/W1992953801;https://openalex.org/W2031111227;https://openalex.org/W2040255780;https://openalex.org/W2045049630;https://openalex.org/W2085573882;https://openalex.org/W2096870307;https://openalex.org/W2132651096;https://openalex.org/W2135455887;https://openalex.org/W2610250061;https://openalex.org/W2755950973;https://openalex.org/W2772947247;https://openalex.org/W2785637175;https://openalex.org/W2788185337;https://openalex.org/W2898514850;https://openalex.org/W2962831337;https://openalex.org/W3001272657;https://openalex.org/W3006240935;https://openalex.org/W3137875885;https://openalex.org/W3169553587;https://openalex.org/W4205650440;https://openalex.org/W4205663358;https://openalex.org/W4211068006;https://openalex.org/W4307765021;https://openalex.org/W4313489356;https://openalex.org/W4362465742;https://openalex.org/W4378473099;https://openalex.org/W4381547385;https://openalex.org/W4381571476;https://openalex.org/W4381678433;https://openalex.org/W4383562916;https://openalex.org/W4383889888;https://openalex.org/W4384567368;https://openalex.org/W4384567389;https://openalex.org/W4387149956;https://openalex.org/W4387521525;https://openalex.org/W4387521707;https://openalex.org/W4387812465;https://openalex.org/W4389918938;https://openalex.org/W4390108766;https://openalex.org/W4390166642;https://openalex.org/W4390672665;https://openalex.org/W4390844260;https://openalex.org/W4390921997;https://openalex.org/W4390937518;https://openalex.org/W4390939370;https://openalex.org/W4390939386;https://openalex.org/W4390939405;https://openalex.org/W4391261872;https://openalex.org/W4391736322;https://openalex.org/W4394857854;https://openalex.org/W4394860286;https://openalex.org/W4394860292;https://openalex.org/W4394864040;https://openalex.org/W4399264176;https://openalex.org/W4400134253;https://openalex.org/W4400310660;https://openalex.org/W4400313119;https://openalex.org/W4400673915;https://openalex.org/W4400674293;https://openalex.org/W4400674450;https://openalex.org/W4400674643;https://openalex.org/W4400675440;https://openalex.org/W4401027169;https://openalex.org/W4401916452;https://openalex.org/W4401918272;https://openalex.org/W4402959877,OPENALEX,"Serhiy Lyeonov, 2024, Human Technology","Serhiy Lyeonov, 2024, Human Technology"
+A bibliometric analysis of machine learning techniques in photovoltaic cells and solar energy (2014–2022),2024,article,en,42,10.1016/j.egyr.2024.02.036,https://openalex.org/W4392031682,,Abdelhamid Zaïdi,Abdelhamid Zaïdi,Qassim University,Abdelhamid Zaïdi,Energy Reports,Energy Reports,11,,2768,2779,"Solar energy presents a promising solution to replace fossil-based energy sources, mitigating global warming and climate change. However, solar energy faces socio-economic, environmental, and technical challenges. Computational tools like machine learning offer solutions to these technical challenges. Despite numerous studies, there's a lack of comprehensive research on ML applications in Photovoltaics and Solar Energy. This study conducts a critical analysis of ML applications in Photovoltaics and Solar Energy research using publication trends and bibliometric analysis, employing the PRISMA approach on Scopus database. Results reveal a high publication output, citations, and international collaboration. Notable researchers include G. E. Georghiou and Haibo Ma, with the Ministry of Education (China) being a prolific affiliation. China emerges as the most active nation due to funding programs like the National Natural Science Foundation and the National Key Research and Development Program. This research contributes in terms of providing an analysis of publication patterns from 2014 to 2022, including topic categories and important metrics, at the levels of country, institution, and funding organisation. Analysing author-keyword data to aggregate publishing themes and identify the most influential journals. Enhancing comprehension of hotspots and focal points in machine learning applications in Photovoltaics and Solar Energy research. This research also aims to discuss the role of Cognitive Computing in cancer/tumor and oncological research, emphasising the potential for significant advancements and the obstacles that need to be overcome in order to fully utilise its advantages. Future studies on the topic could include extensive research into the cybersecurity of Photovoltaics and solar energy systems particularly in the wake of numerous malware, phishing, and other intrusion attacks on the energy and grid infrastructure worldwide.",,Photovoltaics;Computer science;Data science;Scopus;Photovoltaic system;Solar energy;Political science;Engineering;Electrical engineering;MEDLINE;Law,https://openalex.org/W1743187317;https://openalex.org/W1983797158;https://openalex.org/W2026804118;https://openalex.org/W2029297700;https://openalex.org/W2127451718;https://openalex.org/W2132618171;https://openalex.org/W2135455887;https://openalex.org/W2160808585;https://openalex.org/W2171702311;https://openalex.org/W2259944928;https://openalex.org/W2286152107;https://openalex.org/W2287933588;https://openalex.org/W2297092368;https://openalex.org/W2474191477;https://openalex.org/W2576683119;https://openalex.org/W2587299461;https://openalex.org/W2752052391;https://openalex.org/W2757642744;https://openalex.org/W2768163011;https://openalex.org/W2780722608;https://openalex.org/W2787944342;https://openalex.org/W2790021805;https://openalex.org/W2794614147;https://openalex.org/W2799753020;https://openalex.org/W2810220676;https://openalex.org/W2884258597;https://openalex.org/W2898907833;https://openalex.org/W2912623183;https://openalex.org/W2924357249;https://openalex.org/W2925145055;https://openalex.org/W2946494228;https://openalex.org/W2955588401;https://openalex.org/W2961960358;https://openalex.org/W2969489994;https://openalex.org/W2978713836;https://openalex.org/W2983566047;https://openalex.org/W2988073060;https://openalex.org/W2988203096;https://openalex.org/W2989592648;https://openalex.org/W2990450011;https://openalex.org/W3000632091;https://openalex.org/W3005415948;https://openalex.org/W3006448130;https://openalex.org/W3010274200;https://openalex.org/W3016260214;https://openalex.org/W3022321166;https://openalex.org/W3026907991;https://openalex.org/W3048884198;https://openalex.org/W3080199112;https://openalex.org/W3097763105;https://openalex.org/W3110377484;https://openalex.org/W3111879052;https://openalex.org/W3124856069;https://openalex.org/W3125019846;https://openalex.org/W3132544139;https://openalex.org/W3133181227;https://openalex.org/W3138852234;https://openalex.org/W3140968591;https://openalex.org/W3150904570;https://openalex.org/W3160856016;https://openalex.org/W3191690765;https://openalex.org/W3214240043;https://openalex.org/W3214910795;https://openalex.org/W4200277584;https://openalex.org/W4200434445;https://openalex.org/W4205605524;https://openalex.org/W4206935801;https://openalex.org/W4213455927;https://openalex.org/W4220726206;https://openalex.org/W4220972044;https://openalex.org/W4224052816;https://openalex.org/W4228996833;https://openalex.org/W4231515310;https://openalex.org/W4237152566;https://openalex.org/W4240818896;https://openalex.org/W4244082399;https://openalex.org/W4245805152;https://openalex.org/W4281917964;https://openalex.org/W4283588236;https://openalex.org/W4285122660;https://openalex.org/W4297478379;https://openalex.org/W4299421480;https://openalex.org/W4308200999;https://openalex.org/W4311098650;https://openalex.org/W4311273571;https://openalex.org/W4321120950;https://openalex.org/W4321164476;https://openalex.org/W4360604152;https://openalex.org/W4362666995;https://openalex.org/W4366588036;https://openalex.org/W4379057423;https://openalex.org/W4382542164;https://openalex.org/W4383682762;https://openalex.org/W4384523309;https://openalex.org/W4384944264;https://openalex.org/W4385413292;https://openalex.org/W4386803046;https://openalex.org/W4386859003;https://openalex.org/W4387259010;https://openalex.org/W4387401057;https://openalex.org/W4388665898;https://openalex.org/W6753371401;https://openalex.org/W6762625936;https://openalex.org/W6768602574;https://openalex.org/W6768905283;https://openalex.org/W6769300415;https://openalex.org/W6783001559;https://openalex.org/W6786726123;https://openalex.org/W6790681345;https://openalex.org/W6793970244;https://openalex.org/W6800363861;https://openalex.org/W6810864097;https://openalex.org/W6811357256;https://openalex.org/W6842497516;https://openalex.org/W6843664783;https://openalex.org/W6847109510;https://openalex.org/W6849879430;https://openalex.org/W6851579319;https://openalex.org/W6855493788;https://openalex.org/W6861427902;https://openalex.org/W6910792018,OPENALEX,"Abdelhamid Zaïdi, 2024, Energy Reports","Abdelhamid Zaïdi, 2024, Energy Reports"
+Artificial intelligence and machine learning in corporate governance: A bibliometric analysis,2024,article,en,37,10.3233/hsm-240114,https://openalex.org/W4402761213,,Husni Samara;Hanan Ahmad Qudah;Hayder Jerri Mohsin;Seba Abualhijad;Laith Yousef Bani Hani;Samer Al rahamneh;Mohammad Zakaria AlQudah,Husni Samara;Hanan Ahmad Qudah;Hayder Jerri Mohsin;Seba Abualhijad;Laith Yousef Bani Hani;Samer Al rahamneh;Mohammad Zakaria AlQudah,Universitat de València;Al-Balqa Applied University;Southern Technical University;Princess Sumaya University for Technology;Andhra University;Universidad de Extremadura;Universitat de València,Husni Samara,Human Systems Management,Human Systems Management,,,1,27,"BACKGROUND: The study deeply explores the thriving domains of artificial intelligence (AI) and machine learning (ML) in corporate governance. OBJECTIVE: The study aims to thoroughly examine the rapidly developing fields of artificial intelligence (AI) and machine learning (ML) in corporate governance. METHODS: After completing an in-depth analysis of 229 research studies published between 2008 and 2023 (using software tools such as RStudio, VOSviewer, and Excel),), the study reveals a notable increase in publications since 2022. Corporate social responsibility (CSR), environmental, social, and governance (ESG) issues, executive remuneration, and sustainability are all considered as important key focal areas of focus. Scholars in this field are notably at the forefront from Taiwan, the United States, and China. IMPLICATIONS: However, the study stress the necessity for further researches to estimate the efficacy of different AI and ML methodologies. This may guide evidence-based governance practices various industries and geographical areas.",,Corporate governance;Artificial intelligence;Business;Computer science;Knowledge management;Finance,https://openalex.org/W1498422751;https://openalex.org/W1542807197;https://openalex.org/W1940628912;https://openalex.org/W1987341880;https://openalex.org/W1997838466;https://openalex.org/W2042060819;https://openalex.org/W2096039739;https://openalex.org/W2114971411;https://openalex.org/W2150220236;https://openalex.org/W2166114234;https://openalex.org/W2168835522;https://openalex.org/W2171160632;https://openalex.org/W2592084954;https://openalex.org/W2604344292;https://openalex.org/W2737757376;https://openalex.org/W2769143121;https://openalex.org/W2784332084;https://openalex.org/W2801233141;https://openalex.org/W2963453445;https://openalex.org/W2969247272;https://openalex.org/W2979433608;https://openalex.org/W2981297782;https://openalex.org/W2981537393;https://openalex.org/W3043958357;https://openalex.org/W3080588292;https://openalex.org/W3089470783;https://openalex.org/W3110723264;https://openalex.org/W3111916360;https://openalex.org/W3121464887;https://openalex.org/W3122862660;https://openalex.org/W3123935160;https://openalex.org/W3124400623;https://openalex.org/W3124978547;https://openalex.org/W3125062024;https://openalex.org/W3125614333;https://openalex.org/W3157495551;https://openalex.org/W3167169082;https://openalex.org/W3167204998;https://openalex.org/W3169861144;https://openalex.org/W3172631954;https://openalex.org/W3195390651;https://openalex.org/W3197899567;https://openalex.org/W3205533322;https://openalex.org/W4200403900;https://openalex.org/W4206630697;https://openalex.org/W4211004689;https://openalex.org/W4220677682;https://openalex.org/W4220740304;https://openalex.org/W4225120170;https://openalex.org/W4281671474;https://openalex.org/W4283465583;https://openalex.org/W4285988371;https://openalex.org/W4294837616;https://openalex.org/W4304186503;https://openalex.org/W4308747777;https://openalex.org/W4310128742;https://openalex.org/W4360856906;https://openalex.org/W4379932132;https://openalex.org/W4380031413;https://openalex.org/W4380258939;https://openalex.org/W4385278262;https://openalex.org/W4385356576;https://openalex.org/W4388798770;https://openalex.org/W4390948925;https://openalex.org/W4392461758;https://openalex.org/W4400119734;https://openalex.org/W6741631311;https://openalex.org/W6751209984;https://openalex.org/W6781162693;https://openalex.org/W6782074629;https://openalex.org/W6794601679;https://openalex.org/W6796787185;https://openalex.org/W6796882001;https://openalex.org/W6855387159;https://openalex.org/W6860802656,OPENALEX,"Husni Samara, 2024, Human Systems Management","Husni Samara, 2024, Human Systems Management"
+Machine Learning Theory in Building Energy Modeling and Optimization: A Bibliometric Analysis,2022,article,en,30,10.53964/jmge.2022004,https://openalex.org/W4297574821,,Amir Ghoshchi;Rahim Zahedi;Zahra Moradi Pour;Abolfazl Ahmadi;Z Yang;B Becerik-Gerber;A Young;A Majchrzak;G Kane;M Khazaee;R Zahedi;R Faryadras;A Theissler;J Prez-Velzquez;M Kettelgerdes;B Seligman;S Tuljapurkar;D Rehkopf;C Deb;Z Dai;A Schlueter;S Zou;X Chen;D Xu;P Dhiman;J Ma;C Navarro;P Geyer;S Singaravel;R Zahedi;R Eskandarpanah;M Akbari;S Walker;W Khan;K Katic;Y Huang;Y Yuan;H Chen;M Field;N Hardcastle;M Jameson;S Moosavian;D Borzuei;R Zahedi;S Ikeda;T Nagai;R Zahedi;Man Seraji;D Borzuei;Mkm Shapi;N Ramli;L Awalin;A Orlov;M Rovnyagin;A Aminova;S Hadri;Y Naitmalek;M Najib;A Nutkiewicz;Z Yang;R Jain;T Gao;W Lu;D Paudel;H Boogaard;Wit De;M Zivkovic;N Bacanin;K Venkatachalam;R Ghannam;S Techtmann;M Taneja;J Byabazaire;N Jalodia;I Antonopoulos;V Robu;B Couraud;H Naganathan;W Chong;X Chen;S Seyedzadeh;F Rahimian;I Glesk;H Deng;D Fannon;M Eckelman;N Donthu;S Kumar;D Mukherjee;S Daneshgar;R Zahedi;X Song;X Liu;F Liu;D Mpanya;T Celik;E Klug;J Walther;D Spanier;N Panten,Amir Ghoshchi;Rahim Zahedi;Zahra Moradi Pour;Abolfazl Ahmadi;Z Yang;B Becerik-Gerber;A Young;A Majchrzak;G Kane;M Khazaee;R Zahedi;R Faryadras;A Theissler;J Prez-Velzquez;M Kettelgerdes;B Seligman;S Tuljapurkar;D Rehkopf;C Deb;Z Dai;A Schlueter;S Zou;X Chen;D Xu;P Dhiman;J Ma;C Navarro;P Geyer;S Singaravel;R Zahedi;R Eskandarpanah;M Akbari;S Walker;W Khan;K Katic;Y Huang;Y Yuan;H Chen;M Field;N Hardcastle;M Jameson;S Moosavian;D Borzuei;R Zahedi;S Ikeda;T Nagai;R Zahedi;Man Seraji;D Borzuei;Mkm Shapi;N Ramli;L Awalin;A Orlov;M Rovnyagin;A Aminova;S Hadri;Y Naitmalek;M Najib;A Nutkiewicz;Z Yang;R Jain;T Gao;W Lu;D Paudel;H Boogaard;Wit De;M Zivkovic;N Bacanin;K Venkatachalam;R Ghannam;S Techtmann;M Taneja;J Byabazaire;N Jalodia;I Antonopoulos;V Robu;B Couraud;H Naganathan;W Chong;X Chen;S Seyedzadeh;F Rahimian;I Glesk;H Deng;D Fannon;M Eckelman;N Donthu;S Kumar;D Mukherjee;S Daneshgar;R Zahedi;X Song;X Liu;F Liu;D Mpanya;T Celik;E Klug;J Walther;D Spanier;N Panten,"Iran University of Science and Technology;Iran University of Science and Technology;Islamic Azad University, Lahijan Branch;Iran University of Science and Technology;Iran University of Science and Technology;Iran University of Science and Technology;Iran University of Science and Technology;Iran University of Science and Technology;Iran University of Science and Technology",Amir Ghoshchi,Journal of Modern Green Energy,Journal of Modern Green Energy,,,,,"In recent decades, the machine learning theory has been developed in the field of artificial intelligence (AI), as it excludes all shortcomings of manpower, performs complex calculations without rest, and provides prediction benefits for projects. Machine learning models and algorithms extract natural models from the data set, which offers increased problem insight, better decisions, and more accurate predictions. Machine learning has a variety of methods, including supervised, unsupervised, and reinforcement learning, and has been used for building energy modeling in recent years. In this review paper, machine learning in building energy modeling was examined to demonstrate the publications in this area and the relationship between these topics. This paper investigated machine learning methods for building energy modeling using bibliometric analysis and data mining. Therefore, the objective of this research was to give insight into the status of machine learning uses for energy systems in the construction industry. Scientometric software was used for analysis. Deep learning is also a cutting-edge topic of machine learning in 2018 onwards, so a brief explanation in this research was provided to explore a proper connection between machine learning, deep learning, and construction energy modeling.",,Computer science;Energy analysis;Energy (signal processing);Artificial intelligence;Mathematics;Statistics,https://openalex.org/W2019497540;https://openalex.org/W2028263411;https://openalex.org/W2519520824;https://openalex.org/W2770256320;https://openalex.org/W2773309836;https://openalex.org/W2790197011;https://openalex.org/W2884490557;https://openalex.org/W2894665398;https://openalex.org/W2922060155;https://openalex.org/W2943926435;https://openalex.org/W2990246451;https://openalex.org/W2996674504;https://openalex.org/W3011254899;https://openalex.org/W3017089791;https://openalex.org/W3034272367;https://openalex.org/W3096533084;https://openalex.org/W3112881537;https://openalex.org/W3112965332;https://openalex.org/W3113216760;https://openalex.org/W3114266307;https://openalex.org/W3122216490;https://openalex.org/W3131673466;https://openalex.org/W3132263092;https://openalex.org/W3135241484;https://openalex.org/W3145877980;https://openalex.org/W3156185991;https://openalex.org/W3158869325;https://openalex.org/W3160856016;https://openalex.org/W3161176628;https://openalex.org/W3167963175;https://openalex.org/W3172336096;https://openalex.org/W3173574091;https://openalex.org/W3174451482;https://openalex.org/W3177598680;https://openalex.org/W3182416595;https://openalex.org/W3185104581;https://openalex.org/W3191084496;https://openalex.org/W3216584722;https://openalex.org/W4205517422;https://openalex.org/W4205696178;https://openalex.org/W4224280770;https://openalex.org/W4224282610;https://openalex.org/W4225371958;https://openalex.org/W4281556077;https://openalex.org/W4281635626;https://openalex.org/W4282593973;https://openalex.org/W4297574821,OPENALEX,"Amir Ghoshchi, 2022, Journal of Modern Green Energy","Amir Ghoshchi, 2022, Journal of Modern Green Energy"
+Automated Brain Tumor Detection Using Machine Learning: A Bibliometric Review,2023,review,en,30,10.1016/j.wneu.2023.03.115,https://openalex.org/W4362576983,37019303,Rajan Hossain;Roliana Ibrahim;Haslina Hashim,Rajan Hossain;Roliana Ibrahim;Haslina Hashim,Malaysia University of Science and Technology;Malaysia University of Science and Technology;Malaysia University of Science and Technology,Rajan Hossain,World Neurosurgery,World Neurosurgery,175,,57,68,,,Scopus;Medicine;Artificial intelligence;Bibliometrics;Machine learning;Glioma;Citation;Citation analysis;Brain tumor;Convolutional neural network;Web of science;MEDLINE;Library science;Medical physics;Meta-analysis;Computer science;Pathology;Political science;Law;Cancer research,https://openalex.org/W1970398577;https://openalex.org/W1985820976;https://openalex.org/W2344469150;https://openalex.org/W2905017682;https://openalex.org/W2917364154;https://openalex.org/W2955805844;https://openalex.org/W3036656090;https://openalex.org/W3037825799;https://openalex.org/W3043717094;https://openalex.org/W3101028869;https://openalex.org/W3111465317;https://openalex.org/W3160856016;https://openalex.org/W3165128717;https://openalex.org/W3207478520;https://openalex.org/W4210792946;https://openalex.org/W4226371181;https://openalex.org/W4238243588;https://openalex.org/W4286209802;https://openalex.org/W4291017261;https://openalex.org/W4292560495;https://openalex.org/W4293545361;https://openalex.org/W4293547155;https://openalex.org/W4295753330;https://openalex.org/W4301600675;https://openalex.org/W4307951239;https://openalex.org/W4310059423;https://openalex.org/W4311186062;https://openalex.org/W4312129879;https://openalex.org/W6719649792;https://openalex.org/W6780213641;https://openalex.org/W6781605770;https://openalex.org/W6795024988;https://openalex.org/W6811353288;https://openalex.org/W6841167871;https://openalex.org/W6842620793;https://openalex.org/W6847334649,OPENALEX,"Rajan Hossain, 2023, World Neurosurgery","Rajan Hossain, 2023, World Neurosurgery"
+The Information Age for Education via Artificial Intelligence and Machine Learning: A Bibliometric and Systematic Literature Analysis,2024,article,en,40,10.18178/ijiet.2024.14.5.2095,https://openalex.org/W4398150100,,Hassan Abuhassna,Hassan Abuhassna,Newcastle University Medicine Malaysia,Hassan Abuhassna,International Journal of Information and Education Technology,International Journal of Information and Education Technology,14,5,700,711,"The integration of Artificial Intelligence (AI) and Machine Learning (ML) in education is a rapidly evolving field, yet the long-term implications and actual impacts on student learning outcomes require more in-depth study. Address this gap, our study offers a novel approach combining bibliometric analysis and a Systematic Literature Review (SLR), guided by the PRISMA methodology. The first phase, a comprehensive bibliometric analysis, identified key nations, educational institutions, journals, keywords, and influential authors in the realm of AI/ML in educational settings. This phase provided a macro-level understanding of the field’s landscape, showcasing the global and interdisciplinary nature of AI/ML research in education. The subsequent phase involved a meticulous SLR of 22 select scholarly articles. This in-depth review sheds light on the current applications, emerging trends, challenges, and future directions of AI and ML in education. The findings from this dual-method approach offer a comprehensive roadmap for educators, researchers, and policymakers, underscoring the transformative potential of AI and ML in the educational sector. The review’s extensive article collection provides a deep dive into the diverse and significant impact of AI in education, highlighting its role in areas such as predicting academic success, enhancing e-learning experiences, and preparing future generations for AI’s integration in various fields like healthcare. This study not only underscores the revolutionary potential of AI in reshaping educational landscapes but also serves as a guiding framework for effectively deploying AI and ML technologies in education.",,Computer science;Artificial intelligence;Data science;Psychology;Machine learning;Mathematics education,https://openalex.org/W182272962;https://openalex.org/W2117655204;https://openalex.org/W2133586213;https://openalex.org/W2770717476;https://openalex.org/W2892786865;https://openalex.org/W2959063074;https://openalex.org/W2997565628;https://openalex.org/W3000599514;https://openalex.org/W3047161823;https://openalex.org/W3087987726;https://openalex.org/W3090783394;https://openalex.org/W3094595104;https://openalex.org/W3197804775;https://openalex.org/W3199263016;https://openalex.org/W3217334161;https://openalex.org/W4212852473;https://openalex.org/W4212853713;https://openalex.org/W4223926312;https://openalex.org/W4225377410;https://openalex.org/W4229067029;https://openalex.org/W4229442974;https://openalex.org/W4236476849;https://openalex.org/W4280607716;https://openalex.org/W4280651999;https://openalex.org/W4283077296;https://openalex.org/W4304589352;https://openalex.org/W4306741917;https://openalex.org/W4307871426;https://openalex.org/W4310153968;https://openalex.org/W4312090823,OPENALEX,"Hassan Abuhassna, 2024, International Journal of Information and Education Technology","Hassan Abuhassna, 2024, International Journal of Information and Education Technology"
+A bibliometric overview of International Journal of Machine Learning and Cybernetics between 2010 and 2017,2018,article,en,34,10.1007/s13042-018-0875-9,https://openalex.org/W2889666927,,Zeshui Xu;Dejian Yu;Xizhao Wang,Zeshui Xu;Dejian Yu;Xizhao Wang,Sichuan University;Nanjing Audit University;Shenzhen University,Zeshui Xu,International Journal of Machine Learning and Cybernetics,International Journal of Machine Learning and Cybernetics,10,9,2375,2387,,,Cybernetics;Citation;Computer science;Visualization;Research Object;Computational intelligence;Data science;Object (grammar);Quality (philosophy);Bibliometrics;Scopus;Library science;Artificial intelligence;Sociology;Regional science;Political science;Philosophy;Law;MEDLINE;Epistemology,https://openalex.org/W1559665635;https://openalex.org/W1675042025;https://openalex.org/W1888811121;https://openalex.org/W1966546225;https://openalex.org/W1969392438;https://openalex.org/W1971386719;https://openalex.org/W1980867644;https://openalex.org/W1984149720;https://openalex.org/W1984558542;https://openalex.org/W1990014583;https://openalex.org/W1993717606;https://openalex.org/W1994425726;https://openalex.org/W2009550727;https://openalex.org/W2010684265;https://openalex.org/W2014677380;https://openalex.org/W2016419002;https://openalex.org/W2017314269;https://openalex.org/W2027090091;https://openalex.org/W2043976122;https://openalex.org/W2046904226;https://openalex.org/W2046958243;https://openalex.org/W2047237187;https://openalex.org/W2069315453;https://openalex.org/W2069613886;https://openalex.org/W2071978572;https://openalex.org/W2072897447;https://openalex.org/W2074669169;https://openalex.org/W2077611589;https://openalex.org/W2077812306;https://openalex.org/W2079288973;https://openalex.org/W2083793682;https://openalex.org/W2087762516;https://openalex.org/W2093040750;https://openalex.org/W2122040390;https://openalex.org/W2128438887;https://openalex.org/W2135021377;https://openalex.org/W2144452238;https://openalex.org/W2150220236;https://openalex.org/W2154568261;https://openalex.org/W2163572752;https://openalex.org/W2218209912;https://openalex.org/W2263682169;https://openalex.org/W2275696275;https://openalex.org/W2540365088;https://openalex.org/W2563961554;https://openalex.org/W2589264714;https://openalex.org/W2606989030;https://openalex.org/W2744510879;https://openalex.org/W2751427740;https://openalex.org/W2761863472;https://openalex.org/W2768163011;https://openalex.org/W2772164149;https://openalex.org/W2781801925;https://openalex.org/W2794391233;https://openalex.org/W2889541841;https://openalex.org/W2950146322;https://openalex.org/W2963453445;https://openalex.org/W3098217728;https://openalex.org/W4238591974,OPENALEX,"Zeshui Xu, 2018, International Journal of Machine Learning and Cybernetics","Zeshui Xu, 2018, International Journal of Machine Learning and Cybernetics"
+Artificial intelligence and smart vision for building and construction 4.0: Machine and deep learning methods and applications,2022,article,en,911,10.1016/j.autcon.2022.104440,https://openalex.org/W4283392904,,Shanaka Kristombu Baduge;Sadeep Thilakarathna;Jude Shalitha Perera;Mehrdad Arashpour;P. Sharafi;Bertrand Teodosio;Ankit Shringi;Priyan Mendis,Shanaka Kristombu Baduge;Sadeep Thilakarathna;Jude Shalitha Perera;Mehrdad Arashpour;P. Sharafi;Bertrand Teodosio;Ankit Shringi;Priyan Mendis,The University of Melbourne;The University of Melbourne;The University of Melbourne;Monash University;Western Sydney University;Victoria University;Monash University;The University of Melbourne,Shanaka Kristombu Baduge,Automation in Construction,Automation in Construction,141,,104440,104440,"This article presents a state-of-the-art review of the applications of Artificial Intelligence (AI), Machine Learning (ML), and Deep Learning (DL) in building and construction industry 4.0 in the facets of architectural design and visualization; material design and optimization; structural design and analysis; offsite manufacturing and automation; construction management, progress monitoring, and safety; smart operation, building management and health monitoring; and durability, life cycle analysis, and circular economy. This paper presents a unique perspective on applications of AI/DL/ML in these domains for the complete building lifecycle, from conceptual stage, design stage, construction stage, operational and maintenance stage until the end of life. Furthermore, data collection strategies using smart vision and sensors, data cleaning methods (post-processing), data storage for developing these models are discussed, and the challenges in model development and strategies to overcome these challenges are elaborated. Future trends in these domains and possible research avenues are also presented.",,Automation;Building automation;Systems engineering;Engineering;Artificial intelligence;Building information modeling;Visualization;Computer science;Construction engineering;Manufacturing engineering;Engineering management;Operations management;Scheduling (production processes);Mechanical engineering;Thermodynamics;Physics,https://openalex.org/W83082975;https://openalex.org/W333311942;https://openalex.org/W647985083;https://openalex.org/W870187140;https://openalex.org/W1530387931;https://openalex.org/W1584021839;https://openalex.org/W1752416898;https://openalex.org/W1919958626;https://openalex.org/W1920794317;https://openalex.org/W1965737363;https://openalex.org/W1969988169;https://openalex.org/W1976536377;https://openalex.org/W1982839015;https://openalex.org/W1983735453;https://openalex.org/W1989502406;https://openalex.org/W1992398637;https://openalex.org/W1996852182;https://openalex.org/W1997759851;https://openalex.org/W1999629848;https://openalex.org/W2002572271;https://openalex.org/W2006503574;https://openalex.org/W2016010091;https://openalex.org/W2020194153;https://openalex.org/W2020196731;https://openalex.org/W2023184793;https://openalex.org/W2023554602;https://openalex.org/W2024444988;https://openalex.org/W2029638580;https://openalex.org/W2030955255;https://openalex.org/W2034191401;https://openalex.org/W2036784843;https://openalex.org/W2037364857;https://openalex.org/W2038808304;https://openalex.org/W2040678283;https://openalex.org/W2042771443;https://openalex.org/W2048718993;https://openalex.org/W2048820341;https://openalex.org/W2054557393;https://openalex.org/W2063629235;https://openalex.org/W2066800183;https://openalex.org/W2069741476;https://openalex.org/W2070435055;https://openalex.org/W2071080822;https://openalex.org/W2073585262;https://openalex.org/W2079616194;https://openalex.org/W2082919713;https://openalex.org/W2084732496;https://openalex.org/W2084985969;https://openalex.org/W2088053778;https://openalex.org/W2088162121;https://openalex.org/W2091892750;https://openalex.org/W2091998246;https://openalex.org/W2092265598;https://openalex.org/W2093234546;https://openalex.org/W2098597947;https://openalex.org/W2106855356;https://openalex.org/W2125389028;https://openalex.org/W2126619093;https://openalex.org/W2129833317;https://openalex.org/W2147241601;https://openalex.org/W2148922589;https://openalex.org/W2150220236;https://openalex.org/W2168916471;https://openalex.org/W2171308009;https://openalex.org/W2262339025;https://openalex.org/W2295959395;https://openalex.org/W2325016370;https://openalex.org/W2336090347;https://openalex.org/W2385966163;https://openalex.org/W2412419169;https://openalex.org/W2412782625;https://openalex.org/W2463553454;https://openalex.org/W2523483446;https://openalex.org/W2524405979;https://openalex.org/W2560865072;https://openalex.org/W2571487773;https://openalex.org/W2572493078;https://openalex.org/W2579444724;https://openalex.org/W2586410984;https://openalex.org/W2595984151;https://openalex.org/W2598457882;https://openalex.org/W2611569523;https://openalex.org/W2746040617;https://openalex.org/W2748643398;https://openalex.org/W2756789966;https://openalex.org/W2763685548;https://openalex.org/W2765081037;https://openalex.org/W2769330703;https://openalex.org/W2774742972;https://openalex.org/W2776541877;https://openalex.org/W2788650673;https://openalex.org/W2789135478;https://openalex.org/W2791957585;https://openalex.org/W2795998052;https://openalex.org/W2796105695;https://openalex.org/W2796738375;https://openalex.org/W2799921980;https://openalex.org/W2802475922;https://openalex.org/W2803862859;https://openalex.org/W2805257321;https://openalex.org/W2807828797;https://openalex.org/W2809206443;https://openalex.org/W2810123099;https://openalex.org/W2810181048;https://openalex.org/W2810292802;https://openalex.org/W2814406141;https://openalex.org/W2884980953;https://openalex.org/W2886369963;https://openalex.org/W2886514679;https://openalex.org/W2886759078;https://openalex.org/W2887597701;https://openalex.org/W2890033210;https://openalex.org/W2892262816;https://openalex.org/W2894665398;https://openalex.org/W2900564803;https://openalex.org/W2900608483;https://openalex.org/W2902195199;https://openalex.org/W2902603441;https://openalex.org/W2902701693;https://openalex.org/W2902957614;https://openalex.org/W2903207051;https://openalex.org/W2904884955;https://openalex.org/W2908456641;https://openalex.org/W2910813586;https://openalex.org/W2913385037;https://openalex.org/W2919816425;https://openalex.org/W2920061516;https://openalex.org/W2921336173;https://openalex.org/W2932008696;https://openalex.org/W2938041406;https://openalex.org/W2955558066;https://openalex.org/W2963684088;https://openalex.org/W2963800363;https://openalex.org/W2964076802;https://openalex.org/W2966167487;https://openalex.org/W2966500264;https://openalex.org/W2968911571;https://openalex.org/W2969224179;https://openalex.org/W2969536608;https://openalex.org/W2979417040;https://openalex.org/W2983280015;https://openalex.org/W2986336497;https://openalex.org/W2989993511;https://openalex.org/W2993663930;https://openalex.org/W2997525417;https://openalex.org/W3000116410;https://openalex.org/W3000491742;https://openalex.org/W3000710808;https://openalex.org/W3000745202;https://openalex.org/W3001840828;https://openalex.org/W3005840099;https://openalex.org/W3012214319;https://openalex.org/W3013073464;https://openalex.org/W3014739067;https://openalex.org/W3016123475;https://openalex.org/W3021945924;https://openalex.org/W3022138609;https://openalex.org/W3024475236;https://openalex.org/W3029210295;https://openalex.org/W3033546559;https://openalex.org/W3035120890;https://openalex.org/W3037934875;https://openalex.org/W3038415525;https://openalex.org/W3042860268;https://openalex.org/W3045753344;https://openalex.org/W3048242959;https://openalex.org/W3092644236;https://openalex.org/W3092897029;https://openalex.org/W3093666741;https://openalex.org/W3099033345;https://openalex.org/W3099345087;https://openalex.org/W3099972492;https://openalex.org/W3107547765;https://openalex.org/W3109142153;https://openalex.org/W3111273223;https://openalex.org/W3113152109;https://openalex.org/W3118617077;https://openalex.org/W3122824292;https://openalex.org/W3123003003;https://openalex.org/W3126997349;https://openalex.org/W3131046868;https://openalex.org/W3133270427;https://openalex.org/W3137503852;https://openalex.org/W3141768603;https://openalex.org/W3146237621;https://openalex.org/W3155426500;https://openalex.org/W3159542470;https://openalex.org/W3160564244;https://openalex.org/W3162064067;https://openalex.org/W3162563930;https://openalex.org/W3168464464;https://openalex.org/W3172862860;https://openalex.org/W3191936115;https://openalex.org/W3193645131;https://openalex.org/W3203052469;https://openalex.org/W3204265912;https://openalex.org/W3214830544;https://openalex.org/W4250566921;https://openalex.org/W4254536483;https://openalex.org/W4285542071;https://openalex.org/W4285752063;https://openalex.org/W4293087783;https://openalex.org/W6601861267;https://openalex.org/W6608378766;https://openalex.org/W6678815747;https://openalex.org/W6685352114;https://openalex.org/W6690984384;https://openalex.org/W6741916574;https://openalex.org/W6747400857;https://openalex.org/W6748105704;https://openalex.org/W6748574569;https://openalex.org/W6750049719;https://openalex.org/W6753072167;https://openalex.org/W6754689059;https://openalex.org/W6756516739;https://openalex.org/W6760871821;https://openalex.org/W6774638028;https://openalex.org/W6776158513;https://openalex.org/W6781004576;https://openalex.org/W6786919300;https://openalex.org/W6788513807;https://openalex.org/W6790801053;https://openalex.org/W6795590857;https://openalex.org/W6795882525,OPENALEX,"Shanaka Kristombu Baduge, 2022, Automation in Construction","Shanaka Kristombu Baduge, 2022, Automation in Construction"
+"A deep dive into membrane distillation literature with data analysis, bibliometric methods, and machine learning",2023,article,en,35,10.1016/j.desal.2023.116482,https://openalex.org/W4321354435,,Ersin Aytaç;M. Khayet,Ersin Aytaç;M. Khayet,Bülent Ecevit University;Universidad Complutense de Madrid;IMDEA Water;Universidad Complutense de Madrid,Ersin Aytaç,Desalination,Desalination,553,,116482,116482,,,Membrane distillation;Desalination;Distillation;Computer science;Process (computing);Data science;Management science;Process engineering;Operations research;Chemistry;Engineering;Membrane;Chromatography;Biochemistry;Operating system,https://openalex.org/W1190915821;https://openalex.org/W1964580509;https://openalex.org/W1968011757;https://openalex.org/W1968034217;https://openalex.org/W2003947504;https://openalex.org/W2005776172;https://openalex.org/W2012507281;https://openalex.org/W2023951204;https://openalex.org/W2024422358;https://openalex.org/W2027413832;https://openalex.org/W2029391160;https://openalex.org/W2032027057;https://openalex.org/W2036440733;https://openalex.org/W2037856029;https://openalex.org/W2039979955;https://openalex.org/W2043616978;https://openalex.org/W2045402873;https://openalex.org/W2048494531;https://openalex.org/W2048661822;https://openalex.org/W2049247912;https://openalex.org/W2051639998;https://openalex.org/W2079970656;https://openalex.org/W2093035301;https://openalex.org/W2106721372;https://openalex.org/W2118061493;https://openalex.org/W2182559116;https://openalex.org/W2275696275;https://openalex.org/W2317869140;https://openalex.org/W2742453473;https://openalex.org/W2755950973;https://openalex.org/W2775683773;https://openalex.org/W2796448519;https://openalex.org/W2806236333;https://openalex.org/W2901960243;https://openalex.org/W2911132744;https://openalex.org/W2916013340;https://openalex.org/W2927879055;https://openalex.org/W2939821513;https://openalex.org/W3007038395;https://openalex.org/W3015364947;https://openalex.org/W3017384336;https://openalex.org/W3025046786;https://openalex.org/W3025325252;https://openalex.org/W3026965422;https://openalex.org/W3027942295;https://openalex.org/W3040040993;https://openalex.org/W3045495327;https://openalex.org/W3048290301;https://openalex.org/W3081195637;https://openalex.org/W3091961186;https://openalex.org/W3116936901;https://openalex.org/W3132895219;https://openalex.org/W3132900198;https://openalex.org/W3134570971;https://openalex.org/W3152730236;https://openalex.org/W3157428252;https://openalex.org/W3162153788;https://openalex.org/W3163210612;https://openalex.org/W3172184706;https://openalex.org/W3177036938;https://openalex.org/W3182035566;https://openalex.org/W3183633869;https://openalex.org/W3186377071;https://openalex.org/W3193328551;https://openalex.org/W3208821509;https://openalex.org/W3217529127;https://openalex.org/W4200234570;https://openalex.org/W4200247834;https://openalex.org/W4200300469;https://openalex.org/W4205627535;https://openalex.org/W4206088862;https://openalex.org/W4206185584;https://openalex.org/W4206419394;https://openalex.org/W4206785894;https://openalex.org/W4210475852;https://openalex.org/W4210864411;https://openalex.org/W4211223593;https://openalex.org/W4213162685;https://openalex.org/W4220917274;https://openalex.org/W4221028339;https://openalex.org/W4237504296;https://openalex.org/W4238669430;https://openalex.org/W4238996481;https://openalex.org/W4249580866;https://openalex.org/W4255031334;https://openalex.org/W4281260109;https://openalex.org/W4283019527;https://openalex.org/W4293730547;https://openalex.org/W4294622242;https://openalex.org/W4295008071;https://openalex.org/W4312448015;https://openalex.org/W6610221500;https://openalex.org/W6684366623;https://openalex.org/W6686433439;https://openalex.org/W6695147765;https://openalex.org/W6758259173;https://openalex.org/W6759809052;https://openalex.org/W6791300346;https://openalex.org/W6804581477;https://openalex.org/W6807871031;https://openalex.org/W6808269762;https://openalex.org/W6810286219,OPENALEX,"Ersin Aytaç, 2023, Desalination","Ersin Aytaç, 2023, Desalination"
+Investigating the emerging COVID-19 research trends in the field of business and management: A bibliometric analysis approach,2020,article,en,1067,10.1016/j.jbusres.2020.06.057,https://openalex.org/W3038273726,32834211,Surabhi Verma;Anders Gustafsson,Surabhi Verma;Anders Gustafsson,University of Southern Denmark;BI Norwegian Business School,Surabhi Verma,Journal of Business Research,Journal of Business Research,118,,253,261,,,Coronavirus disease 2019 (COVID-19);Bibliometrics;2019-20 coronavirus outbreak;Field (mathematics);Severe acute respiratory syndrome coronavirus 2 (SARS-CoV-2);Data science;Regional science;Computer science;Geography;Library science;Medicine;Virology;Mathematics;Disease;Outbreak;Infectious disease (medical specialty);Pathology;Pure mathematics,https://openalex.org/W2150220236;https://openalex.org/W2463277148;https://openalex.org/W2768891858;https://openalex.org/W2783127227;https://openalex.org/W2939398318;https://openalex.org/W2974844384;https://openalex.org/W2990450011;https://openalex.org/W2994056986;https://openalex.org/W2996259534;https://openalex.org/W3000601084;https://openalex.org/W3002972902;https://openalex.org/W3010267415;https://openalex.org/W3010682937;https://openalex.org/W3011291379;https://openalex.org/W3011866596;https://openalex.org/W3011999140;https://openalex.org/W3012080801;https://openalex.org/W3013232676;https://openalex.org/W3013308250;https://openalex.org/W3013474995;https://openalex.org/W3013606964;https://openalex.org/W3013706344;https://openalex.org/W3014483325;https://openalex.org/W3015960835;https://openalex.org/W3016008021;https://openalex.org/W3016112654;https://openalex.org/W3016275165;https://openalex.org/W3016551095;https://openalex.org/W3016603339;https://openalex.org/W3016760326;https://openalex.org/W3016874309;https://openalex.org/W3017033580;https://openalex.org/W3017338857;https://openalex.org/W3017581522;https://openalex.org/W3017659171;https://openalex.org/W3017800794;https://openalex.org/W3018065504;https://openalex.org/W3018209774;https://openalex.org/W3018623624;https://openalex.org/W3019313322;https://openalex.org/W3020108713;https://openalex.org/W3020258303;https://openalex.org/W3022380282;https://openalex.org/W3026541506;https://openalex.org/W3027747257;https://openalex.org/W3033668954;https://openalex.org/W3034208629;https://openalex.org/W3036786154;https://openalex.org/W3080335147;https://openalex.org/W4241857777;https://openalex.org/W6769662013;https://openalex.org/W6770542893;https://openalex.org/W6774872622;https://openalex.org/W6775541393;https://openalex.org/W6775625142;https://openalex.org/W6776044521;https://openalex.org/W6776071406;https://openalex.org/W6776098875;https://openalex.org/W6776147541;https://openalex.org/W6776280985;https://openalex.org/W6776487203;https://openalex.org/W7043081547,OPENALEX,"Surabhi Verma, 2020, Journal of Business Research","Surabhi Verma, 2020, Journal of Business Research"
+Machine learning and artificial intelligence in type 2 diabetes prediction: a comprehensive 33-year bibliometric and literature analysis,2025,review,en,45,10.3389/fdgth.2025.1557467,https://openalex.org/W4408900440,40212895,Mahreen Kiran;Ying Xie;Nasreen Anjum;Graham Ball;Barbara Pierścionek;Duncan Russell,Mahreen Kiran;Ying Xie;Nasreen Anjum;Graham Ball;Barbara Pierścionek;Duncan Russell,Anglia Ruskin University;Cranfield University;University of Portsmouth;Anglia Ruskin University;Anglia Ruskin University;Digital Catapult,Mahreen Kiran,Frontiers in Digital Health,Frontiers in Digital Health,7,,1557467,1557467,"Background: Type 2 Diabetes Mellitus (T2DM) remains a critical global health challenge, necessitating robust predictive models to enable early detection and personalized interventions. This study presents a comprehensive bibliometric and systematic review of 33 years (1991-2024) of research on machine learning (ML) and artificial intelligence (AI) applications in T2DM prediction. It highlights the growing complexity of the field and identifies key trends, methodologies, and research gaps. Methods: A systematic methodology guided the literature selection process, starting with keyword identification using Term Frequency-Inverse Document Frequency (TF-IDF) and expert input. Based on these refined keywords, literature was systematically selected using PRISMA guidelines, resulting in a dataset of 2,351 articles from Web of Science and Scopus databases. Bibliometric analysis was performed on the entire selected dataset using tools such as VOSviewer and Bibliometrix, enabling thematic clustering, co-citation analysis, and network visualization. To assess the most impactful literature, a dual-criteria methodology combining relevance and impact scores was applied. Articles were qualitatively assessed on their alignment with T2DM prediction using a four-point relevance scale and quantitatively evaluated based on citation metrics normalized within subject, journal, and publication year. Articles scoring above a predefined threshold were selected for detailed review. The selected literature spans four time periods: 1991-2000, 2001-2010, 2011-2020, and 2021-2024. Results: The bibliometric findings reveal exponential growth in publications since 2010, with the USA and UK leading contributions, followed by emerging players like Singapore and India. Key thematic clusters include foundational ML techniques, epidemiological forecasting, predictive modelling, and clinical applications. Ensemble methods (e.g., Random Forest, Gradient Boosting) and deep learning models (e.g., Convolutional Neural Networks) dominate recent advancements. Literature analysis reveals that, early studies primarily used demographic and clinical variables, while recent efforts integrate genetic, lifestyle, and environmental predictors. Additionally, literature analysis highlights advances in integrating real-world datasets, emerging trends like federated learning, and explainability tools such as SHAP (SHapley Additive exPlanations) and LIME (Local Interpretable Model-agnostic Explanations). Conclusion: Future work should address gaps in generalizability, interdisciplinary T2DM prediction research, and psychosocial integration, while also focusing on clinically actionable solutions and real-world applicability to combat the growing diabetes epidemic effectively.",,Scopus;Computer science;Relevance (law);Systematic review;Bibliometrics;Data science;Citation;Cluster analysis;Artificial intelligence;Machine learning;Data mining;Information retrieval;MEDLINE;Library science;Political science;Law,https://openalex.org/W129507607;https://openalex.org/W582134693;https://openalex.org/W807187018;https://openalex.org/W1563923811;https://openalex.org/W1618905105;https://openalex.org/W1833120343;https://openalex.org/W1848590964;https://openalex.org/W1963870857;https://openalex.org/W1977328750;https://openalex.org/W1989022033;https://openalex.org/W2012942264;https://openalex.org/W2014057135;https://openalex.org/W2020267609;https://openalex.org/W2022118522;https://openalex.org/W2026841079;https://openalex.org/W2060261318;https://openalex.org/W2065692273;https://openalex.org/W2066698760;https://openalex.org/W2068485445;https://openalex.org/W2094675826;https://openalex.org/W2097453405;https://openalex.org/W2103556204;https://openalex.org/W2108632167;https://openalex.org/W2110694570;https://openalex.org/W2117290533;https://openalex.org/W2118414527;https://openalex.org/W2122381408;https://openalex.org/W2125775672;https://openalex.org/W2131414141;https://openalex.org/W2132091485;https://openalex.org/W2148143831;https://openalex.org/W2150220236;https://openalex.org/W2157784421;https://openalex.org/W2158822657;https://openalex.org/W2191755155;https://openalex.org/W2198899446;https://openalex.org/W2236731268;https://openalex.org/W2239135493;https://openalex.org/W2282821441;https://openalex.org/W2340262115;https://openalex.org/W2379581788;https://openalex.org/W2484845775;https://openalex.org/W2531360867;https://openalex.org/W2544538455;https://openalex.org/W2554536751;https://openalex.org/W2569214105;https://openalex.org/W2570760970;https://openalex.org/W2577749910;https://openalex.org/W2611138580;https://openalex.org/W2612292012;https://openalex.org/W2622382573;https://openalex.org/W2626967530;https://openalex.org/W2738681903;https://openalex.org/W2775450699;https://openalex.org/W2791659097;https://openalex.org/W2793071066;https://openalex.org/W2796441011;https://openalex.org/W2798790543;https://openalex.org/W2800094831;https://openalex.org/W2805782847;https://openalex.org/W2806075129;https://openalex.org/W2883730939;https://openalex.org/W2900329012;https://openalex.org/W2904931021;https://openalex.org/W2905097366;https://openalex.org/W2906295032;https://openalex.org/W2908201961;https://openalex.org/W2914383481;https://openalex.org/W2914959816;https://openalex.org/W2921196390;https://openalex.org/W2927351257;https://openalex.org/W2946074361;https://openalex.org/W2947730823;https://openalex.org/W2950722229;https://openalex.org/W2962862931;https://openalex.org/W2965372631;https://openalex.org/W2971160393;https://openalex.org/W2975495759;https://openalex.org/W2981121978;https://openalex.org/W2981731882;https://openalex.org/W2986446268;https://openalex.org/W2989180667;https://openalex.org/W2992144222;https://openalex.org/W2997476292;https://openalex.org/W2997591727;https://openalex.org/W2999365564;https://openalex.org/W3008233702;https://openalex.org/W3011403448;https://openalex.org/W3011491737;https://openalex.org/W3017209650;https://openalex.org/W3020776760;https://openalex.org/W3021463136;https://openalex.org/W3024571102;https://openalex.org/W3043363778;https://openalex.org/W3045445851;https://openalex.org/W3047812492;https://openalex.org/W3090072574;https://openalex.org/W3096850376;https://openalex.org/W3106920072;https://openalex.org/W3111667594;https://openalex.org/W3120624594;https://openalex.org/W3125292757;https://openalex.org/W3125841495;https://openalex.org/W3126599133;https://openalex.org/W3130449168;https://openalex.org/W3134138028;https://openalex.org/W3135225825;https://openalex.org/W3135503315;https://openalex.org/W3135521497;https://openalex.org/W3135573238;https://openalex.org/W3137532457;https://openalex.org/W3152731513;https://openalex.org/W3153116130;https://openalex.org/W3159186882;https://openalex.org/W3159274100;https://openalex.org/W3164294986;https://openalex.org/W3165845449;https://openalex.org/W3165907317;https://openalex.org/W3171397873;https://openalex.org/W3172328600;https://openalex.org/W3174030102;https://openalex.org/W3174053279;https://openalex.org/W3176463933;https://openalex.org/W3178109510;https://openalex.org/W3179092643;https://openalex.org/W3180846682;https://openalex.org/W3184080322;https://openalex.org/W3193202819;https://openalex.org/W3196511944;https://openalex.org/W3197676009;https://openalex.org/W3202323106;https://openalex.org/W3202796611;https://openalex.org/W3208700431;https://openalex.org/W3214100756;https://openalex.org/W3216633527;https://openalex.org/W3216815601;https://openalex.org/W4200115535;https://openalex.org/W4200255742;https://openalex.org/W4200265911;https://openalex.org/W4200282090;https://openalex.org/W4200485674;https://openalex.org/W4206956476;https://openalex.org/W4206980706;https://openalex.org/W4211253314;https://openalex.org/W4220709985;https://openalex.org/W4220755962;https://openalex.org/W4220974901;https://openalex.org/W4220999455;https://openalex.org/W4221125739;https://openalex.org/W4223485277;https://openalex.org/W4223893747;https://openalex.org/W4224542782;https://openalex.org/W4225846794;https://openalex.org/W4225978472;https://openalex.org/W4226151869;https://openalex.org/W4229449369;https://openalex.org/W4244604437;https://openalex.org/W4280524457;https://openalex.org/W4280552086;https://openalex.org/W4280628078;https://openalex.org/W4281702443;https://openalex.org/W4283162298;https://openalex.org/W4283394744;https://openalex.org/W4283516814;https://openalex.org/W4283640276;https://openalex.org/W4283712790;https://openalex.org/W4285139797;https://openalex.org/W4285804100;https://openalex.org/W4290717182;https://openalex.org/W4291377807;https://openalex.org/W4291700825;https://openalex.org/W4295164236;https://openalex.org/W4297359529;https://openalex.org/W4297792514;https://openalex.org/W4307562031;https://openalex.org/W4308261781;https://openalex.org/W4309080560;https://openalex.org/W4309153207;https://openalex.org/W4311220700;https://openalex.org/W4311716514;https://openalex.org/W4312212221;https://openalex.org/W4312477524;https://openalex.org/W4313477471;https://openalex.org/W4315706275;https://openalex.org/W4318067229;https://openalex.org/W4319338595;https://openalex.org/W4320921172;https://openalex.org/W4322581004;https://openalex.org/W4328122277;https://openalex.org/W4362610473;https://openalex.org/W4366149848;https://openalex.org/W4366495736;https://openalex.org/W4377140732;https://openalex.org/W4378903995;https://openalex.org/W4382584661;https://openalex.org/W4384071683;https://openalex.org/W4385500945;https://openalex.org/W4386225933;https://openalex.org/W4386624606;https://openalex.org/W4387021014;https://openalex.org/W4387218026;https://openalex.org/W4387400318;https://openalex.org/W4387826485;https://openalex.org/W4387949693;https://openalex.org/W4387966225;https://openalex.org/W4388982729;https://openalex.org/W4389306888;https://openalex.org/W4389613390;https://openalex.org/W4390886301;https://openalex.org/W4390969254;https://openalex.org/W4391166814;https://openalex.org/W4391243952;https://openalex.org/W4391261228;https://openalex.org/W4392594430;https://openalex.org/W4393094536;https://openalex.org/W4393279079;https://openalex.org/W4393870852;https://openalex.org/W4393952439;https://openalex.org/W4396241340;https://openalex.org/W4399139487;https://openalex.org/W4400017673;https://openalex.org/W4400833693;https://openalex.org/W4401190911;https://openalex.org/W4401810655;https://openalex.org/W4401829942;https://openalex.org/W4402324956;https://openalex.org/W4402487954;https://openalex.org/W4402925259;https://openalex.org/W4403700987;https://openalex.org/W4405112586;https://openalex.org/W4405489011;https://openalex.org/W4405754101;https://openalex.org/W4405810319;https://openalex.org/W4405934136;https://openalex.org/W4406186749;https://openalex.org/W4406494168;https://openalex.org/W4407013015;https://openalex.org/W6605252013;https://openalex.org/W6617145748;https://openalex.org/W6636501900;https://openalex.org/W6704203684;https://openalex.org/W6722393028;https://openalex.org/W6737947904;https://openalex.org/W6739651123;https://openalex.org/W6771659168;https://openalex.org/W6789867489;https://openalex.org/W6796608626;https://openalex.org/W6876952624,OPENALEX,"Mahreen Kiran, 2025, Frontiers in Digital Health","Mahreen Kiran, 2025, Frontiers in Digital Health"
+Machine learning on small size samples: A synthetic knowledge synthesis,2022,article,en,244,10.1177/00368504211029777,https://openalex.org/W3135775894,35220816,Peter Kokol;Marko Kokol;Sašo Zagoranski,Peter Kokol;Marko Kokol;Sašo Zagoranski,University of Maribor,Peter Kokol,Science Progress,Science Progress,105,1,368504211029777,368504211029777,"Machine Learning is an increasingly important technology dealing with the growing complexity of the digitalised world. Despite the fact, that we live in a 'Big data' world where, almost 'everything' is digitally stored, there are many real-world situations, where researchers are still faced with small data samples. The present bibliometric knowledge synthesis study aims to answer the research question 'What is the small data problem in machine learning and how it is solved?' The analysis a positive trend in the number of research publications and substantial growth of the research community, indicating that the research field is reaching maturity. Most productive countries are China, United States and United Kingdom. Despite notable international cooperation, the regional concentration of research literature production in economically more developed countries was observed. Thematic analysis identified four research themes. The themes are concerned with to dimension reduction in complex big data analysis, data augmentation techniques in deep learning, data mining and statistical learning on small datasets.",,Big data;Data science;Maturity (psychological);Field (mathematics);China;Computer science;Dimension (graph theory);Thematic analysis;Artificial intelligence;Political science;Sociology;Data mining;Social science;Mathematics;Qualitative research;Law;Pure mathematics,https://openalex.org/W150292108;https://openalex.org/W246829850;https://openalex.org/W415541256;https://openalex.org/W1901616594;https://openalex.org/W2005772800;https://openalex.org/W2016919366;https://openalex.org/W2055499166;https://openalex.org/W2078019847;https://openalex.org/W2100642106;https://openalex.org/W2150220236;https://openalex.org/W2154243653;https://openalex.org/W2205558186;https://openalex.org/W2417429787;https://openalex.org/W2474204052;https://openalex.org/W2493157521;https://openalex.org/W2558111825;https://openalex.org/W2569330741;https://openalex.org/W2586821431;https://openalex.org/W2597959056;https://openalex.org/W2605315194;https://openalex.org/W2625386759;https://openalex.org/W2641342067;https://openalex.org/W2750988938;https://openalex.org/W2753564313;https://openalex.org/W2770456481;https://openalex.org/W2794386528;https://openalex.org/W2800722845;https://openalex.org/W2801285981;https://openalex.org/W2803793592;https://openalex.org/W2809254203;https://openalex.org/W2884564258;https://openalex.org/W2902390267;https://openalex.org/W2916091221;https://openalex.org/W2936715908;https://openalex.org/W2941930405;https://openalex.org/W2945252059;https://openalex.org/W2956096659;https://openalex.org/W2962177523;https://openalex.org/W2962823337;https://openalex.org/W2963560899;https://openalex.org/W2966207284;https://openalex.org/W2966741169;https://openalex.org/W2969658393;https://openalex.org/W2974836096;https://openalex.org/W2975573752;https://openalex.org/W2980823878;https://openalex.org/W2981679558;https://openalex.org/W2981704932;https://openalex.org/W2983030060;https://openalex.org/W2995942064;https://openalex.org/W3000524228;https://openalex.org/W3002188287;https://openalex.org/W3004754245;https://openalex.org/W3006767019;https://openalex.org/W3007628380;https://openalex.org/W3008647172;https://openalex.org/W3010414725;https://openalex.org/W3014387504;https://openalex.org/W3014524176;https://openalex.org/W3017138949;https://openalex.org/W3024240210;https://openalex.org/W3034252585;https://openalex.org/W3037097018;https://openalex.org/W3039041742;https://openalex.org/W3088291765;https://openalex.org/W3091133721;https://openalex.org/W3092028662;https://openalex.org/W3106321705;https://openalex.org/W3121116615;https://openalex.org/W3126053921;https://openalex.org/W3130198311;https://openalex.org/W3138953784;https://openalex.org/W3140905632;https://openalex.org/W4230653117;https://openalex.org/W4231235517;https://openalex.org/W4233723955;https://openalex.org/W4239768083;https://openalex.org/W4244516567;https://openalex.org/W4255030514,OPENALEX,"Peter Kokol, 2022, Science Progress","Peter Kokol, 2022, Science Progress"
+"Artificial Intelligence and Machine Learning Applications in Smart Production: Progress, Trends, and Directions",2020,article,en,683,10.3390/su12020492,https://openalex.org/W2992584342,,Raffaele Cioffi;Marta Travaglioni;Giuseppina Piscitelli;Antonella Petrillo;Fabio De Felice,Raffaele Cioffi;Marta Travaglioni;Giuseppina Piscitelli;Antonella Petrillo;Fabio De Felice,Parthenope University of Naples;Parthenope University of Naples;Parthenope University of Naples;Parthenope University of Naples;Università degli studi di Cassino e del Lazio Meridionale,Raffaele Cioffi,Sustainability,Sustainability,12,2,492,492,"Adaptation and innovation are extremely important to the manufacturing industry. This development should lead to sustainable manufacturing using new technologies. To promote sustainability, smart production requires global perspectives of smart production application technology. In this regard, thanks to intensive research efforts in the field of artificial intelligence (AI), a number of AI-based techniques, such as machine learning, have already been established in the industry to achieve sustainable manufacturing. Thus, the aim of the present research was to analyze, systematically, the scientific literature relating to the application of artificial intelligence and machine learning (ML) in industry. In fact, with the introduction of the Industry 4.0, artificial intelligence and machine learning are considered the driving force of smart factory revolution. The purpose of this review was to classify the literature, including publication year, authors, scientific sector, country, institution, and keywords. The analysis was done using the Web of Science and SCOPUS database. Furthermore, UCINET and NVivo 12 software were used to complete them. A literature review on ML and AI empirical studies published in the last century was carried out to highlight the evolution of the topic before and after Industry 4.0 introduction, from 1999 to now. Eighty-two articles were reviewed and classified. A first interesting result is the greater number of works published by the USA and the increasing interest after the birth of Industry 4.0.",,Scopus;Artificial intelligence;Industry 4.0;Computer science;Sustainability;Field (mathematics);Manufacturing;Applications of artificial intelligence;Engineering management;Data science;Knowledge management;Engineering;Business;Marketing;Political science;Law;Ecology;Biology;Embedded system;Pure mathematics;Mathematics;MEDLINE,https://openalex.org/W1575452963;https://openalex.org/W1873332500;https://openalex.org/W1898297283;https://openalex.org/W1934945910;https://openalex.org/W1975912342;https://openalex.org/W1978673975;https://openalex.org/W1981094192;https://openalex.org/W2011035942;https://openalex.org/W2015550419;https://openalex.org/W2043616240;https://openalex.org/W2044090912;https://openalex.org/W2049713690;https://openalex.org/W2053142758;https://openalex.org/W2077976886;https://openalex.org/W2098740506;https://openalex.org/W2143532970;https://openalex.org/W2146221397;https://openalex.org/W2159253107;https://openalex.org/W2168894761;https://openalex.org/W2338318698;https://openalex.org/W2464234006;https://openalex.org/W2493181982;https://openalex.org/W2781032472;https://openalex.org/W2934302500;https://openalex.org/W2941705808;https://openalex.org/W2972137370;https://openalex.org/W3102351898;https://openalex.org/W4234227141;https://openalex.org/W4239510810;https://openalex.org/W4312278356;https://openalex.org/W6605270721;https://openalex.org/W6639175750;https://openalex.org/W6640610390;https://openalex.org/W6684456340;https://openalex.org/W6719054298;https://openalex.org/W6760023437;https://openalex.org/W6767869763,OPENALEX,"Raffaele Cioffi, 2020, Sustainability","Raffaele Cioffi, 2020, Sustainability"
+Exploring the trend of recognizing apple leaf disease detection through machine learning: a comprehensive analysis using bibliometric techniques,2024,article,en,46,10.1007/s10462-023-10628-8,https://openalex.org/W4391360895,,Anupam Bonkra;Sunil Pathak;Amandeep Kaur;Mohd Asif Shah,Anupam Bonkra;Sunil Pathak;Amandeep Kaur;Mohd Asif Shah,Chandigarh University;Punjab Engineering College;Chitkara University;Amhara Agricultural Research Institute;Kebri Dehar University;Chitkara University,Anupam Bonkra,Artificial Intelligence Review,Artificial Intelligence Review,57,2,,,"Abstract This study’s foremost objectives were to scrutinize how unexpected weather affects agricultural output and to assess how well AI-based machine learning and deep leaning algorithms work for spotting apple leaf diseases. The researchers carried out a bibliometric study to obtain understanding of the current research trends, citation patterns, ownership and partnership arrangements, publishing patterns, and other parameters related to early identification of apple illnesses. Comprehensive interdisciplinary scientific maps are limited because syndrome recognition is not restricted to any solitary arena of research, despite the fact that there have been many studies on the identification of apple diseases. By employing a scientometric technique and 109 publications from the Scopus database published between 2011 and 2022, this study attempted to assess the condition of the research area and combine knowledge frameworks. To find important journals, authors, nations, articles, and topics, the study used the automated processes of VOSviewer and Biblioshiny software. Patterns and trends were discovered using citation counts, social network analysis, and citation and co-citation studies.",,Computer science;Machine learning;Artificial intelligence;Pattern recognition (psychology),https://openalex.org/W581488446;https://openalex.org/W1535753778;https://openalex.org/W1678171433;https://openalex.org/W1972012119;https://openalex.org/W1974141360;https://openalex.org/W1974552298;https://openalex.org/W1978305786;https://openalex.org/W1983865151;https://openalex.org/W1985473486;https://openalex.org/W1989369420;https://openalex.org/W2003007706;https://openalex.org/W2056848809;https://openalex.org/W2131375706;https://openalex.org/W2150220236;https://openalex.org/W2163803148;https://openalex.org/W2590209697;https://openalex.org/W2755950973;https://openalex.org/W2769636271;https://openalex.org/W2774944751;https://openalex.org/W2776705292;https://openalex.org/W2892258254;https://openalex.org/W2934580386;https://openalex.org/W2940775598;https://openalex.org/W2941288374;https://openalex.org/W2944599236;https://openalex.org/W2973152666;https://openalex.org/W3011791478;https://openalex.org/W3028000264;https://openalex.org/W3037845067;https://openalex.org/W3042621236;https://openalex.org/W3082606970;https://openalex.org/W3086962397;https://openalex.org/W3117722799;https://openalex.org/W3119842544;https://openalex.org/W3130490319;https://openalex.org/W3133307794;https://openalex.org/W3133429097;https://openalex.org/W3135999592;https://openalex.org/W3158760582;https://openalex.org/W3158764639;https://openalex.org/W3160856016;https://openalex.org/W3163885127;https://openalex.org/W3166574792;https://openalex.org/W3174385379;https://openalex.org/W3183606774;https://openalex.org/W3187050136;https://openalex.org/W3189818995;https://openalex.org/W3205260081;https://openalex.org/W3215484246;https://openalex.org/W4210660549;https://openalex.org/W4249894953;https://openalex.org/W4285115839;https://openalex.org/W4285328170;https://openalex.org/W4285815338;https://openalex.org/W4293009360;https://openalex.org/W4296143681;https://openalex.org/W4309355882;https://openalex.org/W4312787172;https://openalex.org/W4313160571;https://openalex.org/W4320496104;https://openalex.org/W4320728788;https://openalex.org/W4322577828;https://openalex.org/W4362496509;https://openalex.org/W4362496522;https://openalex.org/W4362500913,OPENALEX,"Anupam Bonkra, 2024, Artificial Intelligence Review","Anupam Bonkra, 2024, Artificial Intelligence Review"
+Machine learning and soft computing applications in textile and clothing supply chain: Bibliometric and network analyses to delineate future research agenda,2022,article,en,51,10.1016/j.eswa.2022.117000,https://openalex.org/W4221040532,,Sanchi Arora;Abhijit Majumdar,Sanchi Arora;Abhijit Majumdar,Indian Institute of Technology Delhi;Indian Institute of Technology Delhi,Sanchi Arora,Expert Systems with Applications,Expert Systems with Applications,200,,117000,117000,,,Clothing;Supply chain;Computer science;Quality (philosophy);Soft computing;Textile;Fast fashion;Control (management);Fuzzy logic;Manufacturing engineering;Artificial intelligence;Data science;Business;Engineering;Marketing;Archaeology;Epistemology;History;Philosophy,https://openalex.org/W58954717;https://openalex.org/W1562788212;https://openalex.org/W1965746216;https://openalex.org/W1967576324;https://openalex.org/W1968469154;https://openalex.org/W1968475341;https://openalex.org/W1968529367;https://openalex.org/W1970034291;https://openalex.org/W1970927811;https://openalex.org/W1971153583;https://openalex.org/W1975792549;https://openalex.org/W1976713707;https://openalex.org/W1977704857;https://openalex.org/W1981350336;https://openalex.org/W1986759740;https://openalex.org/W1989910766;https://openalex.org/W1993782638;https://openalex.org/W1998489527;https://openalex.org/W2001691783;https://openalex.org/W2007492518;https://openalex.org/W2008254025;https://openalex.org/W2011516823;https://openalex.org/W2011870943;https://openalex.org/W2012082498;https://openalex.org/W2016311778;https://openalex.org/W2018175331;https://openalex.org/W2018345613;https://openalex.org/W2020406507;https://openalex.org/W2023748160;https://openalex.org/W2026156619;https://openalex.org/W2030731788;https://openalex.org/W2031842291;https://openalex.org/W2032454107;https://openalex.org/W2033252229;https://openalex.org/W2033594126;https://openalex.org/W2034680966;https://openalex.org/W2035249336;https://openalex.org/W2035622977;https://openalex.org/W2036183396;https://openalex.org/W2039001958;https://openalex.org/W2040133609;https://openalex.org/W2040906208;https://openalex.org/W2046442262;https://openalex.org/W2048471306;https://openalex.org/W2052684391;https://openalex.org/W2053058963;https://openalex.org/W2060315726;https://openalex.org/W2060331378;https://openalex.org/W2061922306;https://openalex.org/W2061968279;https://openalex.org/W2062456035;https://openalex.org/W2062856725;https://openalex.org/W2066636486;https://openalex.org/W2068169989;https://openalex.org/W2070383764;https://openalex.org/W2070772100;https://openalex.org/W2073041749;https://openalex.org/W2073988312;https://openalex.org/W2074262003;https://openalex.org/W2075727088;https://openalex.org/W2076604763;https://openalex.org/W2080937899;https://openalex.org/W2091864141;https://openalex.org/W2093973217;https://openalex.org/W2114226901;https://openalex.org/W2118221227;https://openalex.org/W2129363794;https://openalex.org/W2129847851;https://openalex.org/W2131681506;https://openalex.org/W2133607644;https://openalex.org/W2133683819;https://openalex.org/W2134566505;https://openalex.org/W2134950073;https://openalex.org/W2141428366;https://openalex.org/W2150755904;https://openalex.org/W2152530798;https://openalex.org/W2153799454;https://openalex.org/W2163187547;https://openalex.org/W2174890733;https://openalex.org/W2193792017;https://openalex.org/W2203091106;https://openalex.org/W2282374200;https://openalex.org/W2428547613;https://openalex.org/W2522395253;https://openalex.org/W2528812466;https://openalex.org/W2533491448;https://openalex.org/W2546519383;https://openalex.org/W2550023227;https://openalex.org/W2559996032;https://openalex.org/W2568069995;https://openalex.org/W2568552722;https://openalex.org/W2574751020;https://openalex.org/W2586088018;https://openalex.org/W2592092867;https://openalex.org/W2593110037;https://openalex.org/W2593850823;https://openalex.org/W2606606758;https://openalex.org/W2615511951;https://openalex.org/W2615512215;https://openalex.org/W2743521732;https://openalex.org/W2744003934;https://openalex.org/W2764031900;https://openalex.org/W2772761593;https://openalex.org/W2784180941;https://openalex.org/W2788814106;https://openalex.org/W2789184060;https://openalex.org/W2793174271;https://openalex.org/W2793359360;https://openalex.org/W2795647708;https://openalex.org/W2796765303;https://openalex.org/W2807684636;https://openalex.org/W2810276845;https://openalex.org/W2889059162;https://openalex.org/W2891979815;https://openalex.org/W2901499640;https://openalex.org/W2907705461;https://openalex.org/W2919549704;https://openalex.org/W2940036667;https://openalex.org/W2944603060;https://openalex.org/W2954923731;https://openalex.org/W2959048647;https://openalex.org/W2967267206;https://openalex.org/W2971138471;https://openalex.org/W2972258942;https://openalex.org/W3001077607;https://openalex.org/W3006688225;https://openalex.org/W3019427697;https://openalex.org/W3021925331;https://openalex.org/W3024726348;https://openalex.org/W3029349200;https://openalex.org/W3029619601;https://openalex.org/W3037646074;https://openalex.org/W3038952158;https://openalex.org/W3041912729;https://openalex.org/W3043469888;https://openalex.org/W3089819260;https://openalex.org/W3091737531;https://openalex.org/W3092139698;https://openalex.org/W3099768174;https://openalex.org/W3101964319;https://openalex.org/W3107752708;https://openalex.org/W3111547024;https://openalex.org/W3125707221;https://openalex.org/W3131345956;https://openalex.org/W4210949841;https://openalex.org/W4211007335;https://openalex.org/W6653506936;https://openalex.org/W6727672186;https://openalex.org/W6728963153;https://openalex.org/W6734081584;https://openalex.org/W6745728535;https://openalex.org/W6748880627;https://openalex.org/W6755112764;https://openalex.org/W6767986271;https://openalex.org/W6783810191;https://openalex.org/W6791095613;https://openalex.org/W6797249196,OPENALEX,"Sanchi Arora, 2022, Expert Systems with Applications","Sanchi Arora, 2022, Expert Systems with Applications"
+Is Metaverse in education a blessing or a curse: a combined content and bibliometric analysis,2022,article,en,587,10.1186/s40561-022-00205-x,https://openalex.org/W4320070415,,Ahmed Tlili;Ronghuai Huang;Boulus Shehata;Dejian Liu;Jialu Zhao;Ahmed Hosny Saleh Metwally;Huanhuan Wang;Mouna Denden;Aras Bozkurt;Lik‐Hang Lee;Doğuş Beyoğlu;Fahriye Altınay;R. C. Sharma;Zehra Altınay;Zhisheng Li;Jiahao Liu;Faizan Ahmad;Ying Hu;Soheil Salha;Mourad Abed;Daniel Burgos,Ahmed Tlili;Ronghuai Huang;Boulus Shehata;Dejian Liu;Jialu Zhao;Ahmed Hosny Saleh Metwally;Huanhuan Wang;Mouna Denden;Aras Bozkurt;Lik‐Hang Lee;Doğuş Beyoğlu;Fahriye Altınay;R. C. Sharma;Zehra Altınay;Zhisheng Li;Jiahao Liu;Faizan Ahmad;Ying Hu;Soheil Salha;Mourad Abed;Daniel Burgos,"Beijing Normal University;Beijing Normal University;Beijing Normal University;Beijing Normal University;Beijing Normal University;Beijing Normal University;Beijing Normal University;Centre National de la Recherche Scientifique;Institut National des Sciences Appliquées de Rennes;Laboratoire d'Automatique, de Mécanique et d'Informatique Industrielles et Humaines;INSA Hauts-de-France;Université Polytechnique Hauts-de-France;Anadolu University;University of South Africa;Eskişehir City Hospital;Korea Advanced Institute of Science and Technology;Near East University;Near East University;Ambedkar University Delhi;Near East University;Beijing Normal University;Beijing Normal University;COMSATS University Islamabad;Beijing Normal University;Beijing Normal University;An-Najah National University;Centre National de la Recherche Scientifique;Institut National des Sciences Appliquées de Rennes;Laboratoire d'Automatique, de Mécanique et d'Informatique Industrielles et Humaines;INSA Hauts-de-France;Université Polytechnique Hauts-de-France;Universidad Internacional De La Rioja",Ahmed Tlili,Smart Learning Environments,Smart Learning Environments,9,1,,,"Abstract The Metaverse has been the centre of attraction for educationists for quite some time. This field got renewed interest with the announcement of social media giant Facebook as it rebranding and positioning it as Meta. While several studies conducted literature reviews to summarize the findings related to the Metaverse in general, no study to the best of our knowledge focused on systematically summarizing the finding related to the Metaverse in education. To cover this gap, this study conducts a systematic literature review of the Metaverse in education. It then applies both content and bibliometric analysis to reveal the research trends, focus, and limitations of this research topic. The obtained findings reveal the research gap in lifelogging applications in educational Metaverse. The findings also show that the design of Metaverse in education has evolved over generations, where generation Z is more targeted with artificial intelligence technologies compared to generation X or Y. In terms of learning scenarios, there have been very few studies focusing on mobile learning, hybrid learning, and micro learning. Additionally, no study focused on using the Metaverse in education for students with disabilities. The findings of this study provide a roadmap of future research directions to be taken into consideration and investigated to enhance the adoption of the Metaverse in education worldwide, as well as to enhance the learning and teaching experiences in the Metaverse.",,Metaverse;Computer science;Human–computer interaction;Virtual reality,https://openalex.org/W67726951;https://openalex.org/W145395837;https://openalex.org/W1501671793;https://openalex.org/W1524675585;https://openalex.org/W1583636700;https://openalex.org/W2007872832;https://openalex.org/W2021219356;https://openalex.org/W2023453319;https://openalex.org/W2030138096;https://openalex.org/W2044639175;https://openalex.org/W2050529250;https://openalex.org/W2059569900;https://openalex.org/W2070490823;https://openalex.org/W2073143181;https://openalex.org/W2100819861;https://openalex.org/W2105064352;https://openalex.org/W2133387828;https://openalex.org/W2150220236;https://openalex.org/W2152510707;https://openalex.org/W2160145690;https://openalex.org/W2166821106;https://openalex.org/W2170086054;https://openalex.org/W2172267908;https://openalex.org/W2278188550;https://openalex.org/W2515112257;https://openalex.org/W2566235056;https://openalex.org/W2592084954;https://openalex.org/W2592725080;https://openalex.org/W2605450463;https://openalex.org/W2731201207;https://openalex.org/W2771227322;https://openalex.org/W2944345878;https://openalex.org/W2969883136;https://openalex.org/W2979485672;https://openalex.org/W2984651096;https://openalex.org/W3012041784;https://openalex.org/W3015097222;https://openalex.org/W3018784402;https://openalex.org/W3042091195;https://openalex.org/W3049110093;https://openalex.org/W3109876850;https://openalex.org/W3138431583;https://openalex.org/W3195511266;https://openalex.org/W3195696232;https://openalex.org/W3206147266;https://openalex.org/W3213859307;https://openalex.org/W3214664069;https://openalex.org/W3215880825;https://openalex.org/W3216239225;https://openalex.org/W4200069166;https://openalex.org/W4200319646;https://openalex.org/W4206460460;https://openalex.org/W4206484811;https://openalex.org/W4210800068;https://openalex.org/W4220667517;https://openalex.org/W4221082970;https://openalex.org/W4221160704;https://openalex.org/W4250789013;https://openalex.org/W4281791809;https://openalex.org/W4288073028;https://openalex.org/W6633471603;https://openalex.org/W6750586489;https://openalex.org/W6791794333;https://openalex.org/W6811200506,OPENALEX,"Ahmed Tlili, 2022, Smart Learning Environments","Ahmed Tlili, 2022, Smart Learning Environments"
+Role of artificial intelligence in operations environment: a review and bibliometric analysis,2020,review,en,380,10.1108/tqm-10-2019-0243,https://openalex.org/W3010600010,,Pavitra Dhamija;Surajit Bag,Pavitra Dhamija;Surajit Bag,University of Johannesburg;University of Johannesburg,Pavitra Dhamija,The TQM Journal,The TQM Journal,32,4,869,896,"Purpose “Technological intelligence” is the capacity to appreciate and adapt technological advancements, and “artificial intelligence” is the key to achieve persuasive operational transformations in majority of contemporary organizational set-ups. Implicitly, artificial intelligence (the philosophies of machines to think, behave and perform either same or similar to humans) has knocked the doors of business organizations as an imperative activity. Artificial intelligence, as a discipline, initiated by scientist John McCarthy and formally publicized at Dartmouth Conference in 1956, now occupies a central stage for many organizations. Implementation of artificial intelligence provides competitive edge to an organization with a definite augmentation in its social and corporate status. Mere application of a concept will not furnish real output until and unless its performance is reviewed systematically. Technological changes are dynamic and advancing at a rapid rate. Subsequently, it becomes highly crucial to understand that where have the people reached with respect to artificial intelligence research. The present article aims to review significant work by eminent researchers towards artificial intelligence in the form of top contributing universities, authors, keywords, funding sources, journals and citation statistics. Design/methodology/approach As rightly remarked by past researchers that reviewing is learning from experience, research team has reviewed (by applying systematic literature review through bibliometric analysis) the concept of artificial intelligence in this article. A sum of 1,854 articles extracted from Scopus database for the year 2018–2019 (31st of May) with selected keywords (artificial intelligence, genetic algorithms, agent-based systems, expert systems, big data analytics and operations management) along with certain filters (subject–business, management and accounting; language-English; document–article, article in press, review articles and source-journals). Findings Results obtained from cluster analysis focus on predominant themes for present as well as future researchers in the area of artificial intelligence. Emerged clusters include Cluster 1: Artificial Intelligence and Optimization; Cluster 2: Industrial Engineering/Research and Automation; Cluster 3: Operational Performance and Machine Learning; Cluster 4: Sustainable Supply Chains and Sustainable Development; Cluster 5: Technology Adoption and Green Supply Chain Management and Cluster 6: Internet of Things and Reverse Logistics. Originality/value The result of review of selected studies is in itself a unique contribution and a food for thought for operations managers and policy makers.",,Artificial intelligence;Computer science;Analytics;Big data;Knowledge management;Data science;Data mining,https://openalex.org/W1548023437;https://openalex.org/W1562958763;https://openalex.org/W1584722754;https://openalex.org/W1795020324;https://openalex.org/W1797566965;https://openalex.org/W1978454013;https://openalex.org/W1988886549;https://openalex.org/W1998197270;https://openalex.org/W2008393156;https://openalex.org/W2008500645;https://openalex.org/W2010169967;https://openalex.org/W2020123296;https://openalex.org/W2031495605;https://openalex.org/W2039486257;https://openalex.org/W2080930498;https://openalex.org/W2094676786;https://openalex.org/W2116032561;https://openalex.org/W2125910575;https://openalex.org/W2171712629;https://openalex.org/W2301722375;https://openalex.org/W2403226644;https://openalex.org/W2416848540;https://openalex.org/W2511500480;https://openalex.org/W2515374912;https://openalex.org/W2529258103;https://openalex.org/W2531320996;https://openalex.org/W2592261185;https://openalex.org/W2596781423;https://openalex.org/W2603741923;https://openalex.org/W2612096568;https://openalex.org/W2625815358;https://openalex.org/W2728975105;https://openalex.org/W2735575534;https://openalex.org/W2737528966;https://openalex.org/W2737579463;https://openalex.org/W2739676264;https://openalex.org/W2741173715;https://openalex.org/W2745089920;https://openalex.org/W2745117980;https://openalex.org/W2750408545;https://openalex.org/W2756445361;https://openalex.org/W2765397828;https://openalex.org/W2765992545;https://openalex.org/W2768152971;https://openalex.org/W2768952564;https://openalex.org/W2769336947;https://openalex.org/W2773680760;https://openalex.org/W2774247351;https://openalex.org/W2780461150;https://openalex.org/W2782432034;https://openalex.org/W2782619240;https://openalex.org/W2784011033;https://openalex.org/W2784258506;https://openalex.org/W2791930516;https://openalex.org/W2792492979;https://openalex.org/W2792870492;https://openalex.org/W2795278022;https://openalex.org/W2795576977;https://openalex.org/W2795621964;https://openalex.org/W2798842672;https://openalex.org/W2800216323;https://openalex.org/W2800898992;https://openalex.org/W2801324678;https://openalex.org/W2802347567;https://openalex.org/W2802467777;https://openalex.org/W2804694207;https://openalex.org/W2805593105;https://openalex.org/W2805914821;https://openalex.org/W2808164489;https://openalex.org/W2809238700;https://openalex.org/W2810880535;https://openalex.org/W2862059545;https://openalex.org/W2884741561;https://openalex.org/W2888513991;https://openalex.org/W2888805172;https://openalex.org/W2890033210;https://openalex.org/W2890090760;https://openalex.org/W2890619955;https://openalex.org/W2890886876;https://openalex.org/W2891082330;https://openalex.org/W2891516108;https://openalex.org/W2894914909;https://openalex.org/W2898324872;https://openalex.org/W2898482187;https://openalex.org/W2899614238;https://openalex.org/W2901366421;https://openalex.org/W2902022219;https://openalex.org/W2904718274;https://openalex.org/W2905864531;https://openalex.org/W2908693559;https://openalex.org/W2909772113;https://openalex.org/W2911491732;https://openalex.org/W2912534759;https://openalex.org/W2913039619;https://openalex.org/W2913121149;https://openalex.org/W2913425332;https://openalex.org/W2921924300;https://openalex.org/W2925326639;https://openalex.org/W2929683575;https://openalex.org/W2939461134;https://openalex.org/W2943865593;https://openalex.org/W2944579633;https://openalex.org/W2949984873;https://openalex.org/W2963368223;https://openalex.org/W2964060368;https://openalex.org/W2969625533;https://openalex.org/W2977067869;https://openalex.org/W2977465999;https://openalex.org/W2989240182;https://openalex.org/W4232860254;https://openalex.org/W4238958263;https://openalex.org/W4240648184,OPENALEX,"Pavitra Dhamija, 2020, The TQM Journal","Pavitra Dhamija, 2020, The TQM Journal"
+A Bibliometric Analysis and Visualization of Medical Big Data Research,2018,article,en,660,10.3390/su10010166,https://openalex.org/W2783127227,,Huchang Liao;Ming Tang;Li Luo;Chunyang Li;Francisco Chiclana;Xiao‐Jun Zeng,Huchang Liao;Ming Tang;Li Luo;Chunyang Li;Francisco Chiclana;Xiao‐Jun Zeng,Sichuan University;Sichuan University;Sichuan University;West China Medical Center of Sichuan University;De Montfort University;University of Manchester,Huchang Liao,Sustainability,Sustainability,10,1,166,166,"With the rapid development of “Internet plus”, medical care has entered the era of big data. However, there is little research on medical big data (MBD) from the perspectives of bibliometrics and visualization. The substantive research on the basic aspects of MBD itself is also rare. This study aims to explore the current status of medical big data through visualization analysis on the journal papers related to MBD. We analyze a total of 988 references which were downloaded from the Science Citation Index Expanded and the Social Science Citation Index databases from Web of Science and the time span was defined as “all years”. The GraphPad Prism 5, VOSviewer and CiteSpace softwares are used for analysis. Many results concerning the annual trends, the top players in terms of journal and institute levels, the citations and H-index in terms of country level, the keywords distribution, the highly cited papers, the co-authorship status and the most influential journals and authors are presented in this paper. This study points out the development status and trends on MBD. It can help people in the medical profession to get comprehensive understanding on the state of the art of MBD. It also has reference values for the research and application of the MBD visualization methods.",,Bibliometrics;Visualization;Big data;Science Citation Index;Citation;Data science;Web of science;Index (typography);Citation analysis;Citation index;Information visualization;Computer science;Library science;MEDLINE;World Wide Web;Political science;Data mining;Law,https://openalex.org/W402335930;https://openalex.org/W1713342896;https://openalex.org/W1958673254;https://openalex.org/W1974423646;https://openalex.org/W2005207065;https://openalex.org/W2011542859;https://openalex.org/W2015846187;https://openalex.org/W2024874075;https://openalex.org/W2026804461;https://openalex.org/W2028941259;https://openalex.org/W2033609349;https://openalex.org/W2036374593;https://openalex.org/W2043606064;https://openalex.org/W2070032609;https://openalex.org/W2075209120;https://openalex.org/W2076684951;https://openalex.org/W2082302018;https://openalex.org/W2095178814;https://openalex.org/W2104192199;https://openalex.org/W2108680868;https://openalex.org/W2149615486;https://openalex.org/W2150220236;https://openalex.org/W2152822288;https://openalex.org/W2155582960;https://openalex.org/W2163025055;https://openalex.org/W2167671703;https://openalex.org/W2276017604;https://openalex.org/W2277805675;https://openalex.org/W2288953328;https://openalex.org/W2290803316;https://openalex.org/W2291128798;https://openalex.org/W2295182096;https://openalex.org/W2331260641;https://openalex.org/W2339111061;https://openalex.org/W2402806665;https://openalex.org/W2411469388;https://openalex.org/W2416847614;https://openalex.org/W2418538112;https://openalex.org/W2465930272;https://openalex.org/W2540365088;https://openalex.org/W2544090818;https://openalex.org/W2550329658;https://openalex.org/W2558701694;https://openalex.org/W2563961554;https://openalex.org/W2593530230;https://openalex.org/W2597959056;https://openalex.org/W2603033960;https://openalex.org/W2755053976;https://openalex.org/W2759688568;https://openalex.org/W3123115705;https://openalex.org/W3181007465;https://openalex.org/W4238591974;https://openalex.org/W4255497883;https://openalex.org/W6656594942;https://openalex.org/W6716907072;https://openalex.org/W6717277286;https://openalex.org/W6735582575;https://openalex.org/W6744136114,OPENALEX,"Huchang Liao, 2018, Sustainability","Huchang Liao, 2018, Sustainability"
+"Artificial intelligence, machine learning and big data in natural resources management: A comprehensive bibliometric review of literature spanning 1975–2022",2023,article,en,62,10.1016/j.resourpol.2023.104250,https://openalex.org/W4387894235,,Dharen Kumar Pandey;Ahmed Imran Hunjra;Ratikant Bhaskar;Mamdouh Abdulaziz Saleh Al‐Faryan,Dharen Kumar Pandey;Ahmed Imran Hunjra;Ratikant Bhaskar;Mamdouh Abdulaziz Saleh Al‐Faryan,Magadh University;Universiti Malaysia Terengganu;International University of Rabat;Shiv Nadar University;University of Portsmouth,Dharen Kumar Pandey,Resources Policy,Resources Policy,86,,104250,104250,,,Natural resource;Scopus;Natural resource management;Big data;Computer science;Knowledge management;Thematic map;Business intelligence;Data science;Resource management (computing);Sustainable development;Political science;Data mining;Cartography;Geography;Computer network;MEDLINE;Law,https://openalex.org/W793093014;https://openalex.org/W1510763834;https://openalex.org/W1564312335;https://openalex.org/W1964503550;https://openalex.org/W1977715389;https://openalex.org/W1979290264;https://openalex.org/W1999013168;https://openalex.org/W2004670068;https://openalex.org/W2004786168;https://openalex.org/W2012050021;https://openalex.org/W2021563710;https://openalex.org/W2029088861;https://openalex.org/W2034720356;https://openalex.org/W2054260750;https://openalex.org/W2062071176;https://openalex.org/W2078953819;https://openalex.org/W2085891493;https://openalex.org/W2094364156;https://openalex.org/W2128911123;https://openalex.org/W2143709956;https://openalex.org/W2150220236;https://openalex.org/W2160929450;https://openalex.org/W2163187547;https://openalex.org/W2293290938;https://openalex.org/W2297960905;https://openalex.org/W2329258917;https://openalex.org/W2358005843;https://openalex.org/W2413869015;https://openalex.org/W2484896917;https://openalex.org/W2507863315;https://openalex.org/W2508222022;https://openalex.org/W2521187674;https://openalex.org/W2595127422;https://openalex.org/W2595429467;https://openalex.org/W2604824709;https://openalex.org/W2606642813;https://openalex.org/W2755950973;https://openalex.org/W2775827109;https://openalex.org/W2778953522;https://openalex.org/W2786446607;https://openalex.org/W2803448954;https://openalex.org/W2887178505;https://openalex.org/W2896649965;https://openalex.org/W2907622895;https://openalex.org/W2908827354;https://openalex.org/W2913182941;https://openalex.org/W2913909587;https://openalex.org/W2920548804;https://openalex.org/W2943621039;https://openalex.org/W2949385376;https://openalex.org/W2951710012;https://openalex.org/W2952499145;https://openalex.org/W2955718640;https://openalex.org/W2963453445;https://openalex.org/W2969569053;https://openalex.org/W2981439898;https://openalex.org/W2982396906;https://openalex.org/W2983485297;https://openalex.org/W2986909969;https://openalex.org/W2989167188;https://openalex.org/W2989291945;https://openalex.org/W2994847149;https://openalex.org/W2995399733;https://openalex.org/W2997443015;https://openalex.org/W3003568080;https://openalex.org/W3004315419;https://openalex.org/W3005840099;https://openalex.org/W3008468250;https://openalex.org/W3033828772;https://openalex.org/W3036885499;https://openalex.org/W3082005054;https://openalex.org/W3083187883;https://openalex.org/W3083281059;https://openalex.org/W3091882851;https://openalex.org/W3094369477;https://openalex.org/W3107249533;https://openalex.org/W3108331601;https://openalex.org/W3109457141;https://openalex.org/W3109884127;https://openalex.org/W3111529648;https://openalex.org/W3112842026;https://openalex.org/W3116767385;https://openalex.org/W3117712833;https://openalex.org/W3120531297;https://openalex.org/W3125707221;https://openalex.org/W3127724747;https://openalex.org/W3127729533;https://openalex.org/W3135843429;https://openalex.org/W3151057550;https://openalex.org/W3160856016;https://openalex.org/W3162826256;https://openalex.org/W3164445154;https://openalex.org/W3169125427;https://openalex.org/W3169333680;https://openalex.org/W3176962641;https://openalex.org/W3182224923;https://openalex.org/W3183454390;https://openalex.org/W3184482175;https://openalex.org/W3192661977;https://openalex.org/W3194878796;https://openalex.org/W3195031531;https://openalex.org/W3195444863;https://openalex.org/W3196720155;https://openalex.org/W3205230439;https://openalex.org/W3207148857;https://openalex.org/W3208432499;https://openalex.org/W4200106487;https://openalex.org/W4207037606;https://openalex.org/W4210587711;https://openalex.org/W4210703388;https://openalex.org/W4212837849;https://openalex.org/W4213202892;https://openalex.org/W4213335971;https://openalex.org/W4220740412;https://openalex.org/W4220745598;https://openalex.org/W4220860841;https://openalex.org/W4221056500;https://openalex.org/W4221125467;https://openalex.org/W4224080439;https://openalex.org/W4226370216;https://openalex.org/W4242215407;https://openalex.org/W4252753364;https://openalex.org/W4280498832;https://openalex.org/W4281478541;https://openalex.org/W4281631541;https://openalex.org/W4281653293;https://openalex.org/W4281690062;https://openalex.org/W4281726412;https://openalex.org/W4281899813;https://openalex.org/W4282926281;https://openalex.org/W4283731107;https://openalex.org/W4283750154;https://openalex.org/W4284958113;https://openalex.org/W4285021218;https://openalex.org/W4285585355;https://openalex.org/W4285804359;https://openalex.org/W4290025789;https://openalex.org/W4290716169;https://openalex.org/W4292117692;https://openalex.org/W4292471431;https://openalex.org/W4292999419;https://openalex.org/W4293063601;https://openalex.org/W4293172005;https://openalex.org/W4293353540;https://openalex.org/W4293531551;https://openalex.org/W4294605333;https://openalex.org/W4296268564;https://openalex.org/W4297024656;https://openalex.org/W4297036262;https://openalex.org/W4297510525;https://openalex.org/W4297510529;https://openalex.org/W4297533996;https://openalex.org/W4297910902;https://openalex.org/W4297911085;https://openalex.org/W4298148810;https://openalex.org/W4300964614;https://openalex.org/W4301398726;https://openalex.org/W4303684176;https://openalex.org/W4304150524;https://openalex.org/W4306696803;https://openalex.org/W4306783494;https://openalex.org/W4306970313;https://openalex.org/W4308170225;https://openalex.org/W4309185467;https://openalex.org/W4309193740;https://openalex.org/W4309874721;https://openalex.org/W4311172173;https://openalex.org/W4312106517;https://openalex.org/W4312143469;https://openalex.org/W4312248467;https://openalex.org/W4315628732;https://openalex.org/W4361027233;https://openalex.org/W4361275999;https://openalex.org/W4361279511;https://openalex.org/W4362574880;https://openalex.org/W4362579972;https://openalex.org/W4362611851;https://openalex.org/W4366254400;https://openalex.org/W4367397376;https://openalex.org/W4379015200;https://openalex.org/W4379617541;https://openalex.org/W4380628716;https://openalex.org/W4380925795;https://openalex.org/W4381085833;https://openalex.org/W4382182142;https://openalex.org/W6622650660;https://openalex.org/W6630665519;https://openalex.org/W6633616053;https://openalex.org/W6653200530;https://openalex.org/W6664612011;https://openalex.org/W6683832847;https://openalex.org/W6696747034;https://openalex.org/W6697632490;https://openalex.org/W6706243138;https://openalex.org/W6766784058;https://openalex.org/W6771917393;https://openalex.org/W6774353144;https://openalex.org/W6782518569;https://openalex.org/W6787416415;https://openalex.org/W6797425132;https://openalex.org/W6799418294;https://openalex.org/W6800868809;https://openalex.org/W6807926205;https://openalex.org/W6810301640;https://openalex.org/W6838636457;https://openalex.org/W6839188081;https://openalex.org/W6841995668;https://openalex.org/W6842599780;https://openalex.org/W6843773317;https://openalex.org/W6844570615;https://openalex.org/W6847477285,OPENALEX,"Dharen Kumar Pandey, 2023, Resources Policy","Dharen Kumar Pandey, 2023, Resources Policy"
+Bibliometric Study on the Use of Machine Learning as Resolution Technique for Facility Layout Problems,2021,article,en,36,10.1109/access.2021.3054563,https://openalex.org/W3124021209,,Peter Burggräf;Johannes Wagner;Benjamin Heinbach,Peter Burggräf;Johannes Wagner;Benjamin Heinbach,University of Siegen;University of Siegen;University of Siegen,Peter Burggräf,IEEE Access,IEEE Access,9,,22569,22586,"Facility Layout Problems (FLP) are concerned with finding efficient factory layouts. Numerous resolution approaches are known in literature for layout optimization. Among those, intelligent approaches are less researched than solutions from exact or approximating approaches. The recent surge of research interest in Artificial Intelligence, and specifically Machine Learning (ML) techniques, presages an increase of such techniques' usage in FLP. However, previous reviews on FLP research induce that, to date, this trend has not yet emerged. Utilizing a systematic literature review coupled with a k-Means based clustering algorithm, we analyzed 25 relevant publication full-texts from an original sample of 1,425 papers. Our findings corroborate the statement that ML techniques have attracted substantially less research interest than most other resolution approaches. While a few papers used Unsupervised Learning algorithms directly as a solution to the FLP, Supervised and Reinforcement Learning were found to be practically irrelevant. ML usage was significantly higher in FLP-adjacent planning tasks such as group technology. Drawing from experiences with other NP-hard combinatorial optimization problems in manufacturing research, we conclude that Reinforcement Learning is most promising to bridge the evident gap between FLP and ML research. Our study further contributes to FLP research by extending established classification frameworks.",,Reinforcement learning;Computer science;Problem statement;Artificial intelligence;Group technology;Cluster analysis;Machine learning;Factory (object-oriented programming);Bridge (graph theory);Resolution (logic);Management science;Engineering;Manufacturing engineering;Internal medicine;Medicine;Programming language,https://openalex.org/W33831760;https://openalex.org/W1523592325;https://openalex.org/W1566652554;https://openalex.org/W1594134763;https://openalex.org/W1680797894;https://openalex.org/W1735257627;https://openalex.org/W1819512283;https://openalex.org/W1846948270;https://openalex.org/W1956907731;https://openalex.org/W1969493978;https://openalex.org/W1971988041;https://openalex.org/W1972449505;https://openalex.org/W1973970971;https://openalex.org/W1981515322;https://openalex.org/W1981708558;https://openalex.org/W1989348426;https://openalex.org/W1995341919;https://openalex.org/W1996852182;https://openalex.org/W1998197270;https://openalex.org/W2005501262;https://openalex.org/W2006585276;https://openalex.org/W2007415641;https://openalex.org/W2009342647;https://openalex.org/W2018753726;https://openalex.org/W2022196759;https://openalex.org/W2025407649;https://openalex.org/W2029150624;https://openalex.org/W2039233423;https://openalex.org/W2045066779;https://openalex.org/W2045918515;https://openalex.org/W2048135233;https://openalex.org/W2056692081;https://openalex.org/W2062094867;https://openalex.org/W2062183687;https://openalex.org/W2071182747;https://openalex.org/W2074160096;https://openalex.org/W2080156615;https://openalex.org/W2081689975;https://openalex.org/W2089038897;https://openalex.org/W2094726861;https://openalex.org/W2095695104;https://openalex.org/W2104361451;https://openalex.org/W2120480077;https://openalex.org/W2121863487;https://openalex.org/W2122410182;https://openalex.org/W2129018774;https://openalex.org/W2130605148;https://openalex.org/W2143514558;https://openalex.org/W2145339207;https://openalex.org/W2149364707;https://openalex.org/W2150341604;https://openalex.org/W2156098321;https://openalex.org/W2178314584;https://openalex.org/W2341171179;https://openalex.org/W2464234006;https://openalex.org/W2539948342;https://openalex.org/W2563592031;https://openalex.org/W2729664112;https://openalex.org/W2745676045;https://openalex.org/W2749552219;https://openalex.org/W2753917303;https://openalex.org/W2755783991;https://openalex.org/W2766447205;https://openalex.org/W2773381986;https://openalex.org/W2794697110;https://openalex.org/W2802314172;https://openalex.org/W2807414605;https://openalex.org/W2902672843;https://openalex.org/W2919115771;https://openalex.org/W2943256088;https://openalex.org/W2944737110;https://openalex.org/W2944947947;https://openalex.org/W2956635220;https://openalex.org/W2973525135;https://openalex.org/W2988785655;https://openalex.org/W2991792334;https://openalex.org/W3008246557;https://openalex.org/W3008636748;https://openalex.org/W3014187019;https://openalex.org/W3024108791;https://openalex.org/W3024741627;https://openalex.org/W3089196927;https://openalex.org/W3100366369;https://openalex.org/W3123212791;https://openalex.org/W3146647175;https://openalex.org/W3198350258;https://openalex.org/W3214830544;https://openalex.org/W4205947740;https://openalex.org/W4214717370;https://openalex.org/W4231254085;https://openalex.org/W4236093597;https://openalex.org/W4247810844;https://openalex.org/W6631399043;https://openalex.org/W6681335164;https://openalex.org/W6728577838;https://openalex.org/W6767919266;https://openalex.org/W6775507210;https://openalex.org/W6803811390,OPENALEX,"Peter Burggräf, 2021, IEEE Access","Peter Burggräf, 2021, IEEE Access"
+Machine Learning in Wastewater Treatment: A Comprehensive Bibliometric Review,2025,article,en,22,10.1021/acsestwater.4c01047,https://openalex.org/W4406125397,,Wenqi Yang;Haiyan Li,Wenqi Yang;Haiyan Li,Harbin Institute of Technology;Harbin Institute of Technology,Wenqi Yang,ACS ES&T Water,ACS ES&T Water,5,2,511,524,"Accurate identification and control of wastewater treatment processes are critical for the efficient use of water resources. Advances in online monitoring and computational capabilities have facilitated the integration of artificial intelligence (AI), particularly machine learning (ML), into wastewater treatment systems. This review analyzes 433 studies on ML applications in wastewater treatment from 2000 to 2022 using bibliometric methods, examining research trends, hotspots, and future directions. Since 2015, the field has experienced a significant surge in publications. The United States and Spain are notable for their long-standing contributions, while China, despite entering the field late in 2012, has emerged as the leading contributor in publication volume. Keyword analysis reveals “neural networks” and “artificial neural networks” as the most frequently applied ML techniques, alongside terms like “prediction”, “optimization”, “fault detection”, and “design”. Our comprehensive review further shows that ML applications in wastewater treatment primarily focus on feature identification, parameter prediction, anomaly detection, and optimized control with key application scenarios including systems, wastewater, waste gas, and sludge. As the demand for AI in wastewater treatment continues to grow, multimodel integration and in-depth development may become the focus of future research to address multiobjective challenges in wastewater treatment more effectively.",,Wastewater;Sewage treatment;Computer science;Environmental science;Environmental engineering,https://openalex.org/W1498625477;https://openalex.org/W1559665635;https://openalex.org/W1966525532;https://openalex.org/W2002134958;https://openalex.org/W2031055067;https://openalex.org/W2049125224;https://openalex.org/W2067164435;https://openalex.org/W2076063813;https://openalex.org/W2263928265;https://openalex.org/W2323408656;https://openalex.org/W2599784308;https://openalex.org/W2803984689;https://openalex.org/W2825946107;https://openalex.org/W2888639312;https://openalex.org/W2889740942;https://openalex.org/W2901048536;https://openalex.org/W2901334219;https://openalex.org/W2914192042;https://openalex.org/W2924370663;https://openalex.org/W2924962937;https://openalex.org/W2931156301;https://openalex.org/W2942882782;https://openalex.org/W2949006411;https://openalex.org/W2953794436;https://openalex.org/W2957524790;https://openalex.org/W2978132992;https://openalex.org/W2991816849;https://openalex.org/W3003626942;https://openalex.org/W3004957259;https://openalex.org/W3010160624;https://openalex.org/W3016301891;https://openalex.org/W3036186095;https://openalex.org/W3046662766;https://openalex.org/W3093963740;https://openalex.org/W3094733926;https://openalex.org/W3094868952;https://openalex.org/W3097106463;https://openalex.org/W3098217728;https://openalex.org/W3108333992;https://openalex.org/W3121064191;https://openalex.org/W3133990288;https://openalex.org/W3140569390;https://openalex.org/W3153748568;https://openalex.org/W3169952140;https://openalex.org/W3173215944;https://openalex.org/W3175615720;https://openalex.org/W3176785116;https://openalex.org/W3177236192;https://openalex.org/W3177594093;https://openalex.org/W3188508961;https://openalex.org/W3194848936;https://openalex.org/W3194888710;https://openalex.org/W3201506545;https://openalex.org/W3206016295;https://openalex.org/W3209893417;https://openalex.org/W4206450009;https://openalex.org/W4210512173;https://openalex.org/W4210628035;https://openalex.org/W4210784138;https://openalex.org/W4213455913;https://openalex.org/W4220679516;https://openalex.org/W4223466529;https://openalex.org/W4225158299;https://openalex.org/W4238591974;https://openalex.org/W4281682503;https://openalex.org/W4282589860;https://openalex.org/W4285098376;https://openalex.org/W4285178158;https://openalex.org/W4288391517;https://openalex.org/W4291278873;https://openalex.org/W4294167385;https://openalex.org/W4304992101;https://openalex.org/W4307288953;https://openalex.org/W4310006980;https://openalex.org/W4379647502;https://openalex.org/W4387082123;https://openalex.org/W4394063272;https://openalex.org/W4401004978,OPENALEX,"Wenqi Yang, 2025, ACS ES&T Water","Wenqi Yang, 2025, ACS ES&T Water"
+Machine Learning Applications in Renewable Energy (MLARE) Research: A Publication Trend and Bibliometric Analysis Study (2012–2021),2023,article,en,40,10.3390/cleantechnol5020026,https://openalex.org/W4366588036,,Samuel-Soma M. Ajibade;Festus Víctor Bekun;Festus Fatai Adedoyin;Bright Akwasi Gyamfi;Anthonia Oluwatosin Adediran,Samuel-Soma M. Ajibade;Festus Víctor Bekun;Festus Fatai Adedoyin;Bright Akwasi Gyamfi;Anthonia Oluwatosin Adediran,"Istanbul Commerce University;İstanbul Gelişim Üniversitesi;Lebanese American University;Bournemouth University;Sir Padampat Singhania University;The Federal Polytechnic, Ado-Ekiti",Samuel-Soma M. Ajibade,Clean Technologies,Clean Technologies,5,2,497,517,"This study examines the research climate on machine learning applications in renewable energy (MLARE). Therefore, the publication trends (PT) and bibliometric analysis (BA) on MLARE research published and indexed in the Elsevier Scopus database between 2012 and 2021 were examined. The PT was adopted to deduce the major stakeholders, top-cited publications, and funding organizations on MLARE, whereas BA elucidated critical insights into the research landscape, scientific developments, and technological growth. The PT revealed 1218 published documents comprising 46.9% articles, 39.7% conference papers, and 6.0% reviews on the topic. Subject area analysis revealed MLARE research spans the areas of science, technology, engineering, and mathematics among others, which indicates it is a broad, multidisciplinary, and impactful research topic. The most prolific researcher, affiliations, country, and funder are Ravinesh C. Deo, National Renewable Energy Laboratory, United States, and the National Natural Science Foundation of China, respectively. The most prominent journals on the top are Applied Energy and Energies, which indicates that journal reputation and open access are critical considerations for the author’s choice of publication outlet. The high productivity of the major stakeholders in MLARE is due to collaborations and research funding support. The keyword co-occurrence analysis identified four (4) clusters or thematic areas on MLARE, which broadly describe the systems, technologies, tools/technologies, and socio-technical dynamics of MLARE research. Overall, the study showed that ML is critical to the prediction, operation, and optimization of renewable energy technologies (RET) along with the design and development of RE-related materials.",,Scopus;Bibliometrics;Library science;Renewable energy;Multidisciplinary approach;Thematic analysis;Citation;Subject (documents);Political science;Reputation;Data science;Regional science;Computer science;Engineering;Social science;Sociology;Qualitative research;MEDLINE;Electrical engineering;Law,https://openalex.org/W1495476169;https://openalex.org/W1977177161;https://openalex.org/W1979480754;https://openalex.org/W1982617890;https://openalex.org/W2001518080;https://openalex.org/W2034901725;https://openalex.org/W2045940255;https://openalex.org/W2093822345;https://openalex.org/W2106488040;https://openalex.org/W2142332398;https://openalex.org/W2160808585;https://openalex.org/W2199008649;https://openalex.org/W2289343141;https://openalex.org/W2315977129;https://openalex.org/W2336998050;https://openalex.org/W2525448601;https://openalex.org/W2563954806;https://openalex.org/W2580254850;https://openalex.org/W2742692373;https://openalex.org/W2763128055;https://openalex.org/W2799581641;https://openalex.org/W2799753020;https://openalex.org/W2810753849;https://openalex.org/W2821843609;https://openalex.org/W2891810618;https://openalex.org/W2891859208;https://openalex.org/W2893898383;https://openalex.org/W2898544197;https://openalex.org/W2903560887;https://openalex.org/W2905035404;https://openalex.org/W2909202499;https://openalex.org/W2911256795;https://openalex.org/W2915043045;https://openalex.org/W2920988109;https://openalex.org/W2922019030;https://openalex.org/W2943162653;https://openalex.org/W2953936648;https://openalex.org/W2960560113;https://openalex.org/W2987201163;https://openalex.org/W3001937224;https://openalex.org/W3019827462;https://openalex.org/W3023538869;https://openalex.org/W3081125651;https://openalex.org/W3081707209;https://openalex.org/W3091939691;https://openalex.org/W3092179490;https://openalex.org/W3093695208;https://openalex.org/W3094843299;https://openalex.org/W3101604855;https://openalex.org/W3123725380;https://openalex.org/W3124856069;https://openalex.org/W3135734453;https://openalex.org/W3191690765;https://openalex.org/W3194540065;https://openalex.org/W4200575230;https://openalex.org/W4250542689;https://openalex.org/W4281388464;https://openalex.org/W4287510462;https://openalex.org/W4292072448;https://openalex.org/W4294892280;https://openalex.org/W4297478379;https://openalex.org/W4400058028;https://openalex.org/W6638465966;https://openalex.org/W6650557320;https://openalex.org/W6776366498;https://openalex.org/W6804853111;https://openalex.org/W6843664783,OPENALEX,"Samuel-Soma M. Ajibade, 2023, Clean Technologies","Samuel-Soma M. Ajibade, 2023, Clean Technologies"
+A Bibliometric Analysis of Recent Research on Machine Learning for Cyber Security,2017,book-chapter,en,22,10.1007/978-981-10-5523-2_20,https://openalex.org/W2765743217,,Pooja R. Makawana;Rutvij H. Jhaveri,Pooja R. Makawana;Rutvij H. Jhaveri,Seva Mandir;Seva Mandir,Pooja R. Makawana,Lecture notes in networks and systems,Lecture notes in networks and systems,,,213,226,,,Globe;Computer science;The Internet;Data science;Cyber threats;Information security;Computer security;Artificial intelligence;World Wide Web;Ophthalmology;Medicine,https://openalex.org/W856269280;https://openalex.org/W1983551905;https://openalex.org/W2016441490;https://openalex.org/W2107879036;https://openalex.org/W2186054980;https://openalex.org/W2246154150,OPENALEX,"Pooja R. Makawana, 2017, Lecture notes in networks and systems","Pooja R. Makawana, 2017, Lecture notes in networks and systems"
+A bibliometric analysis of the application of machine learning methods in the petroleum industry,2023,article,en,22,10.1016/j.rineng.2023.101518,https://openalex.org/W4387675817,,Zahra Sadeqi-Arani;Ali Kadkhodaie,Zahra Sadeqi-Arani;Ali Kadkhodaie,University of Kashan;University of Tabriz,Zahra Sadeqi-Arani,Results in Engineering,Results in Engineering,20,,101518,101518,"With the emerge of Artificial Intelligence and Machin learning systems, the petroleum industry has witnessed a significant progress in its different disciplines to optimize decision making, time and costs. Despite the widespread application of using machine learning methods in the petroleum industry, a little attention has been devoted to build a framework to bring the main currents and researches on the topic. The current research is aimed at covering this gap through further analysis of complementary sources of bibliographic information, assessing 3163 bibliometric studies published in Web of Science (WOS) database. The descriptive statistics show that this field has an exponential growth in the last five years, such that more than 62 % of identified articles were published between 2018 and 2022. CHINA, IRAN and US are the pioneer countries with the highest number of publications on the application of artificial intelligence and machine learning in the upstream sector of the petroleum industry. The most influential journal in this field is ‘JOURNAL OF PETROLEUM SCIENCE AND ENGINEERING’ (with 416 articles) (the current journal title is Geoenergy Science and Engineering) and the most productive author is SALAHELDIN ELKATATNY (with 54 articles) in WOS database. Also, the co-occurrence word analysis show that most of the artificial intelligence and machine learning applications in the upstream sector of the petroleum industry was the prediction and optimization in the field of ‘porosity’, ‘well logs’ and ‘permeability’. This paper contributes to the body of knowledge by providing a comprehensive overview of the application of artificial intelligence and machine learning in the upstream petroleum industry.",,Artificial intelligence;Field (mathematics);Computer science;Petroleum industry;Petroleum;Upstream (networking);Web of science;Machine learning;Data science;Engineering;Political science;Mathematics;Geology;Pure mathematics;Law;MEDLINE;Paleontology;Computer network;Environmental engineering,https://openalex.org/W1537982310;https://openalex.org/W1968313366;https://openalex.org/W1968716244;https://openalex.org/W1983797158;https://openalex.org/W1994743230;https://openalex.org/W2017680781;https://openalex.org/W2021245834;https://openalex.org/W2031226906;https://openalex.org/W2038929774;https://openalex.org/W2039027543;https://openalex.org/W2048243493;https://openalex.org/W2050380864;https://openalex.org/W2054837066;https://openalex.org/W2059298705;https://openalex.org/W2078792643;https://openalex.org/W2087570443;https://openalex.org/W2101710913;https://openalex.org/W2128601505;https://openalex.org/W2138366127;https://openalex.org/W2150220236;https://openalex.org/W2152840078;https://openalex.org/W2159496790;https://openalex.org/W2174848150;https://openalex.org/W2182559116;https://openalex.org/W2283043143;https://openalex.org/W2461512211;https://openalex.org/W2616526449;https://openalex.org/W2914046321;https://openalex.org/W2953737906;https://openalex.org/W2990803190;https://openalex.org/W3033703056;https://openalex.org/W3081451599;https://openalex.org/W3116936901;https://openalex.org/W3123421385;https://openalex.org/W3123497531;https://openalex.org/W3125707221;https://openalex.org/W3131830380;https://openalex.org/W3160856016;https://openalex.org/W3161066282;https://openalex.org/W3165988956;https://openalex.org/W3168695438;https://openalex.org/W3187000892;https://openalex.org/W3195680644;https://openalex.org/W3196322538;https://openalex.org/W4213189685;https://openalex.org/W4221125746;https://openalex.org/W4224248705;https://openalex.org/W4224293566;https://openalex.org/W4281661043;https://openalex.org/W4283074959;https://openalex.org/W4283124298;https://openalex.org/W4316654911;https://openalex.org/W4318939167;https://openalex.org/W4360998646;https://openalex.org/W4385383343;https://openalex.org/W4387073182;https://openalex.org/W6632339523;https://openalex.org/W6679259992;https://openalex.org/W6686433439;https://openalex.org/W6799334232;https://openalex.org/W6850884974;https://openalex.org/W6856736576,OPENALEX,"Zahra Sadeqi-Arani, 2023, Results in Engineering","Zahra Sadeqi-Arani, 2023, Results in Engineering"
+"A bibliometric analysis of 23,492 publications on rectal cancer by machine learning: basic medical research is needed",2020,article,en,35,10.1177/1756284820934594,https://openalex.org/W3045713571,32782478,Kangtao Wang;Chenzhe Feng;Ming Li;Qian Pei;Yuqiang Li;Hong Zhu;Xiangping Song;Haiping Pei;Fengbo Tan,Kangtao Wang;Chenzhe Feng;Ming Li;Qian Pei;Yuqiang Li;Hong Zhu;Xiangping Song;Haiping Pei;Fengbo Tan,Central South University;Xiangya Hospital Central South University;Chinese Academy of Medical Sciences & Peking Union Medical College;Peking Union Medical College Hospital;Central South University;Central South University;Xiangya Hospital Central South University;Universität Hamburg;University Medical Center Hamburg-Eppendorf;Central South University;Xiangya Hospital Central South University;Central South University;Xiangya Hospital Central South University;Central South University;Xiangya Hospital Central South University,Kangtao Wang,Therapeutic Advances in Gastroenterology,Therapeutic Advances in Gastroenterology,13,,1756284820934594,1756284820934594,"BACKGROUND AND AIMS: The aim of this study was to analyse the landscape of publications on rectal cancer (RC) over the past 25 years by machine learning and semantic analysis. METHODS: Publications indexed in PubMed under the Medical Subject Headings (MeSH) term 'Rectal Neoplasms' from 1994 to 2018 were downloaded in September 2019. R and Python were used to extract publication date, MeSH terms and abstract from the metadata of each publication for bibliometric assessment. Latent Dirichlet allocation was applied to analyse the text from the articles' abstracts to identify more specific research topics. Louvain algorithm was used to establish a topic network resulting in identifying the relationship between the topics. RESULTS: A total of 23,492 papers published were identified and analysed in this study. The changes of research focus were analysed by the changing of MeSH terms. Studied contents extracted from the publications were divided into five areas, including surgical intervention, radiotherapy and chemotherapy intervention, clinical case management, epidemiology and cancer risk as well as prognosis studies. CONCLUSIONS: The number of publications indexed on RC has expanded rapidly over the past 25 years. Studies on RC have mainly focused on five areas. However, studies on basic research, postoperative quality of life and cost-effective research were relatively lacking. It is predicted that basic research, inflammation and some other research fields might become the potential hotspots in the future.",,Latent Dirichlet allocation;Medicine;Bibliometrics;Metadata;Colorectal cancer;Medical research;Subject (documents);Topic model;Computer science;Cancer;Library science;Information retrieval;Pathology;Internal medicine;World Wide Web,https://openalex.org/W141482010;https://openalex.org/W1218787212;https://openalex.org/W1650984530;https://openalex.org/W1849119602;https://openalex.org/W1880262756;https://openalex.org/W1971250649;https://openalex.org/W1979044015;https://openalex.org/W2001932471;https://openalex.org/W2009781085;https://openalex.org/W2015567271;https://openalex.org/W2028695285;https://openalex.org/W2060363577;https://openalex.org/W2071880161;https://openalex.org/W2089643849;https://openalex.org/W2111120558;https://openalex.org/W2148323067;https://openalex.org/W2155492044;https://openalex.org/W2160042758;https://openalex.org/W2165323775;https://openalex.org/W2165579757;https://openalex.org/W2238912933;https://openalex.org/W2336985479;https://openalex.org/W2395569962;https://openalex.org/W2512102151;https://openalex.org/W2552603742;https://openalex.org/W2564110073;https://openalex.org/W2600614137;https://openalex.org/W2612183966;https://openalex.org/W2706644294;https://openalex.org/W2781654669;https://openalex.org/W2792712441;https://openalex.org/W2794587414;https://openalex.org/W2810322781;https://openalex.org/W2921846932;https://openalex.org/W2927453907;https://openalex.org/W2948897437;https://openalex.org/W2963060404;https://openalex.org/W2979579431;https://openalex.org/W2999417355;https://openalex.org/W3000607909;https://openalex.org/W3012305074;https://openalex.org/W4244315786,OPENALEX,"Kangtao Wang, 2020, Therapeutic Advances in Gastroenterology","Kangtao Wang, 2020, Therapeutic Advances in Gastroenterology"
+Financial applications of machine learning: A literature review,2023,review,en,193,10.1016/j.eswa.2023.119640,https://openalex.org/W4319160636,,Noella Nazareth;Y.V. Reddy,Noella Nazareth;Y.V. Reddy,Goa University;Goa University,Noella Nazareth,Expert Systems with Applications,Expert Systems with Applications,219,,119640,119640,,,Computer science;Systematic review;Portfolio;Artificial intelligence;Machine learning;Bankruptcy;Finance;Economics;Political science;MEDLINE;Law,https://openalex.org/W222543348;https://openalex.org/W1069790386;https://openalex.org/W1840208138;https://openalex.org/W1974938537;https://openalex.org/W1977627101;https://openalex.org/W2006680549;https://openalex.org/W2020848494;https://openalex.org/W2038443446;https://openalex.org/W2048801439;https://openalex.org/W2058417559;https://openalex.org/W2073754467;https://openalex.org/W2076143961;https://openalex.org/W2078115153;https://openalex.org/W2090637028;https://openalex.org/W2106895738;https://openalex.org/W2121970262;https://openalex.org/W2124532504;https://openalex.org/W2185628600;https://openalex.org/W2235716330;https://openalex.org/W2252909801;https://openalex.org/W2284153934;https://openalex.org/W2301106258;https://openalex.org/W2344279130;https://openalex.org/W2424889563;https://openalex.org/W2510651935;https://openalex.org/W2556544035;https://openalex.org/W2588836480;https://openalex.org/W2593842564;https://openalex.org/W2594142095;https://openalex.org/W2606916050;https://openalex.org/W2607162077;https://openalex.org/W2762466482;https://openalex.org/W2771814524;https://openalex.org/W2788057825;https://openalex.org/W2791306048;https://openalex.org/W2793037577;https://openalex.org/W2795111853;https://openalex.org/W2800942967;https://openalex.org/W2802832424;https://openalex.org/W2806777472;https://openalex.org/W2806948703;https://openalex.org/W2810154616;https://openalex.org/W2811103148;https://openalex.org/W2833425706;https://openalex.org/W2886249837;https://openalex.org/W2890297193;https://openalex.org/W2897494692;https://openalex.org/W2897596136;https://openalex.org/W2900743306;https://openalex.org/W2902408730;https://openalex.org/W2902534617;https://openalex.org/W2902640113;https://openalex.org/W2920934919;https://openalex.org/W2927690792;https://openalex.org/W2939367930;https://openalex.org/W2949202718;https://openalex.org/W2956885731;https://openalex.org/W2959801916;https://openalex.org/W2966861509;https://openalex.org/W2967723546;https://openalex.org/W2967732991;https://openalex.org/W2970527275;https://openalex.org/W2976611669;https://openalex.org/W2979358647;https://openalex.org/W2980996168;https://openalex.org/W2994537010;https://openalex.org/W2994949492;https://openalex.org/W3003538339;https://openalex.org/W3003975888;https://openalex.org/W3007883824;https://openalex.org/W3009416884;https://openalex.org/W3009457452;https://openalex.org/W3011495541;https://openalex.org/W3012235251;https://openalex.org/W3016298350;https://openalex.org/W3017051726;https://openalex.org/W3019427697;https://openalex.org/W3022746105;https://openalex.org/W3027003065;https://openalex.org/W3035669514;https://openalex.org/W3048267635;https://openalex.org/W3048630347;https://openalex.org/W3064683854;https://openalex.org/W3081572486;https://openalex.org/W3082130641;https://openalex.org/W3083080466;https://openalex.org/W3083125023;https://openalex.org/W3084045086;https://openalex.org/W3088545074;https://openalex.org/W3093186795;https://openalex.org/W3093310271;https://openalex.org/W3094452610;https://openalex.org/W3095388897;https://openalex.org/W3106063491;https://openalex.org/W3110826337;https://openalex.org/W3110845139;https://openalex.org/W3115503345;https://openalex.org/W3123937240;https://openalex.org/W3124134784;https://openalex.org/W3125049021;https://openalex.org/W3125139843;https://openalex.org/W3126678629;https://openalex.org/W3126720980;https://openalex.org/W3127150246;https://openalex.org/W3129863217;https://openalex.org/W3135241214;https://openalex.org/W3136959963;https://openalex.org/W3143493396;https://openalex.org/W3156409915;https://openalex.org/W3156601971;https://openalex.org/W3159148887;https://openalex.org/W3160228030;https://openalex.org/W3162950604;https://openalex.org/W3165926838;https://openalex.org/W3171095691;https://openalex.org/W3172498855;https://openalex.org/W3173768691;https://openalex.org/W3185522547;https://openalex.org/W3207578078;https://openalex.org/W3217626109;https://openalex.org/W4200391316;https://openalex.org/W4200410702;https://openalex.org/W4206123005;https://openalex.org/W4206178848;https://openalex.org/W4211068006;https://openalex.org/W4212791338;https://openalex.org/W4220704507;https://openalex.org/W4220827691;https://openalex.org/W4220945596;https://openalex.org/W4221053610;https://openalex.org/W4223531847;https://openalex.org/W4223569375;https://openalex.org/W4226061267;https://openalex.org/W4226469147;https://openalex.org/W4237835726;https://openalex.org/W4254724182;https://openalex.org/W4280620998;https://openalex.org/W4280640105;https://openalex.org/W4281383361;https://openalex.org/W4281569614;https://openalex.org/W4281703464;https://openalex.org/W4281756923;https://openalex.org/W4281792374;https://openalex.org/W4281975289;https://openalex.org/W4283763322;https://openalex.org/W4283774845;https://openalex.org/W4284988747;https://openalex.org/W4285169194;https://openalex.org/W6698327768;https://openalex.org/W6752621111;https://openalex.org/W6765470117;https://openalex.org/W6768701007;https://openalex.org/W6772064197;https://openalex.org/W6772875154;https://openalex.org/W6774700487;https://openalex.org/W6781688287;https://openalex.org/W6783468131;https://openalex.org/W6785318008;https://openalex.org/W6787093747;https://openalex.org/W6789930184;https://openalex.org/W6790404978;https://openalex.org/W6795086908;https://openalex.org/W6796798734;https://openalex.org/W6804660761;https://openalex.org/W6805299581;https://openalex.org/W6807091881;https://openalex.org/W6809781435;https://openalex.org/W6809970921;https://openalex.org/W6838741634;https://openalex.org/W6838752390;https://openalex.org/W6838851410;https://openalex.org/W6839396184;https://openalex.org/W6839802115,OPENALEX,"Noella Nazareth, 2023, Expert Systems with Applications","Noella Nazareth, 2023, Expert Systems with Applications"
+Systematic literature review and bibliometric analysis on virtual reality and education,2022,article,en,523,10.1007/s10639-022-11167-5,https://openalex.org/W4283591250,35789766,Mario Rojas Sánchez;Pedro R. Palos‐Sánchez;José Antonio Folgado-Fernández,Mario Rojas Sánchez;Pedro R. Palos‐Sánchez;José Antonio Folgado-Fernández,Instituto Tecnológico de Costa Rica;University of Beira Interior;Universidad de Sevilla;Universidad de Extremadura,Mario Rojas Sánchez,Education and Information Technologies,Education and Information Technologies,28,1,155,192,"The objective of this study is to identify and analyze the scientific literature with a bibliometric analysis to find the main topics, authors, sources, most cited articles, and countries in the literature on virtual reality in education. Another aim is to understand the conceptual, intellectual, and social structure of the literature on the subject and identify the knowledge base of the use of VR in education and whether it is commonly used and integrated into teaching-learning processes. To do this, articles indexed in the Main Collections of the Web of Science, Scopus and Lens were analyzed for the period 2010 to 2021. The research results are presented in two parts: the first is a quantitative analysis that provides an overview of virtual reality (VR) technology used in the educational field, with tables, graphs, and maps, highlighting the main performance indicators for the production of articles and their citation. The results obtained found a total of 718 articles of which the following were analyzed 273 published articles. The second stage consisted of an inductive type of analysis that found six major groups in the cited articles, which are instruction and learning using VR, VR learning environments, use of VR in different fields of knowledge, learning processes using VR applications or games, learning processes employing simulation, and topics published during the Covid-19 pandemic. Another important aspect to mention is that VR is used in many different areas of education, but until the beginning of the pandemic the use of this so-called ""disruptive process"" came mainly from students, Institutions were reluctant and slow to accept and include VR in the teaching-learning processes.",,Virtual reality;Computer science;Scopus;Subject (documents);Bibliometrics;Instructional simulation;Educational technology;Process (computing);Citation;Scientific literature;Content analysis;Data science;Mathematics education;World Wide Web;Psychology;Social science;Sociology;Human–computer interaction;Paleontology;Biology;Operating system;MEDLINE;Political science;Law,https://openalex.org/W1275037874;https://openalex.org/W1534756227;https://openalex.org/W1534900158;https://openalex.org/W1564315767;https://openalex.org/W1577941131;https://openalex.org/W1897020729;https://openalex.org/W1948661007;https://openalex.org/W1964067312;https://openalex.org/W1968997547;https://openalex.org/W1969352450;https://openalex.org/W1977066284;https://openalex.org/W2013549369;https://openalex.org/W2017137524;https://openalex.org/W2024074057;https://openalex.org/W2026998614;https://openalex.org/W2035027864;https://openalex.org/W2037384683;https://openalex.org/W2045108252;https://openalex.org/W2060573008;https://openalex.org/W2068925510;https://openalex.org/W2068940565;https://openalex.org/W2077994427;https://openalex.org/W2080777922;https://openalex.org/W2090577942;https://openalex.org/W2095284575;https://openalex.org/W2107871446;https://openalex.org/W2108680868;https://openalex.org/W2112959581;https://openalex.org/W2120109270;https://openalex.org/W2128861926;https://openalex.org/W2142562233;https://openalex.org/W2153090078;https://openalex.org/W2165791896;https://openalex.org/W2234923581;https://openalex.org/W2275471898;https://openalex.org/W2407040648;https://openalex.org/W2466607106;https://openalex.org/W2471883115;https://openalex.org/W2510091332;https://openalex.org/W2529496873;https://openalex.org/W2571077957;https://openalex.org/W2575629671;https://openalex.org/W2579293327;https://openalex.org/W2592542840;https://openalex.org/W2594289808;https://openalex.org/W2594691789;https://openalex.org/W2596948772;https://openalex.org/W2618598415;https://openalex.org/W2620437551;https://openalex.org/W2754695343;https://openalex.org/W2755950973;https://openalex.org/W2768847424;https://openalex.org/W2770934685;https://openalex.org/W2784686468;https://openalex.org/W2785537869;https://openalex.org/W2788070733;https://openalex.org/W2789092433;https://openalex.org/W2792401883;https://openalex.org/W2794961829;https://openalex.org/W2796256149;https://openalex.org/W2802685835;https://openalex.org/W2803870155;https://openalex.org/W2807783427;https://openalex.org/W2809822234;https://openalex.org/W2883285438;https://openalex.org/W2888399666;https://openalex.org/W2889404109;https://openalex.org/W2896298459;https://openalex.org/W2897159192;https://openalex.org/W2903472678;https://openalex.org/W2911870517;https://openalex.org/W2912364678;https://openalex.org/W2913757465;https://openalex.org/W2915479707;https://openalex.org/W2920463507;https://openalex.org/W2921338656;https://openalex.org/W2921404012;https://openalex.org/W2922358151;https://openalex.org/W2934980463;https://openalex.org/W2950342281;https://openalex.org/W2954472560;https://openalex.org/W2956260484;https://openalex.org/W2962509803;https://openalex.org/W2971213149;https://openalex.org/W2980953136;https://openalex.org/W2982436324;https://openalex.org/W2984651096;https://openalex.org/W2995065029;https://openalex.org/W2995458710;https://openalex.org/W2996880500;https://openalex.org/W2998428079;https://openalex.org/W3000049009;https://openalex.org/W3004695759;https://openalex.org/W3011587542;https://openalex.org/W3013605693;https://openalex.org/W3014088996;https://openalex.org/W3019699200;https://openalex.org/W3022409549;https://openalex.org/W3028051068;https://openalex.org/W3029940974;https://openalex.org/W3084490116;https://openalex.org/W3088327179;https://openalex.org/W3091784321;https://openalex.org/W3097939107;https://openalex.org/W3131788158;https://openalex.org/W3133635976;https://openalex.org/W3135300045;https://openalex.org/W3157475820;https://openalex.org/W3166329150;https://openalex.org/W3166384779;https://openalex.org/W3195892940;https://openalex.org/W3210674347;https://openalex.org/W3211097621;https://openalex.org/W4238295905;https://openalex.org/W4247645337;https://openalex.org/W4250498918;https://openalex.org/W4252492137;https://openalex.org/W4284977719;https://openalex.org/W4292003697;https://openalex.org/W4383905829;https://openalex.org/W6634596073,OPENALEX,"Mario Rojas Sánchez, 2022, Education and Information Technologies","Mario Rojas Sánchez, 2022, Education and Information Technologies"
+Hybrid approaches to optimization and machine learning methods: a systematic literature review,2024,article,en,246,10.1007/s10994-023-06467-x,https://openalex.org/W4391160762,,Beatriz Flamia Azevedo;Ana Maria A. C. Rocha;Ana I. Pereira,Beatriz Flamia Azevedo;Ana Maria A. C. Rocha;Ana I. Pereira,Polytechnic Institute of Bragança;Research Centre in Digitalization and Intelligent Robotics;University of Minho;University of Minho;Polytechnic Institute of Bragança;Research Centre in Digitalization and Intelligent Robotics;University of Minho,Beatriz Flamia Azevedo,Machine Learning,Machine Learning,113,7,4055,4097,"Abstract Notably, real problems are increasingly complex and require sophisticated models and algorithms capable of quickly dealing with large data sets and finding optimal solutions. However, there is no perfect method or algorithm; all of them have some limitations that can be mitigated or eliminated by combining the skills of different methodologies. In this way, it is expected to develop hybrid algorithms that can take advantage of the potential and particularities of each method (optimization and machine learning) to integrate methodologies and make them more efficient. This paper presents an extensive systematic and bibliometric literature review on hybrid methods involving optimization and machine learning techniques for clustering and classification. It aims to identify the potential of methods and algorithms to overcome the difficulties of one or both methodologies when combined. After the description of optimization and machine learning methods, a numerical overview of the works published since 1970 is presented. Moreover, an in-depth state-of-art review over the last three years is presented. Furthermore, a SWOT analysis of the ten most cited algorithms of the collected database is performed, investigating the strengths and weaknesses of the pure algorithms and detaching the opportunities and threats that have been explored with hybrid methods. Thus, with this investigation, it was possible to highlight the most notable works and discoveries involving hybrid methods in terms of clustering and classification and also point out the difficulties of the pure methods and algorithms that can be strengthened through the inspirations of other methodologies; they are hybrid methods.",,Computer science;Artificial intelligence;Machine learning,https://openalex.org/W67623166;https://openalex.org/W334120727;https://openalex.org/W368469426;https://openalex.org/W632575780;https://openalex.org/W1494581921;https://openalex.org/W1550411348;https://openalex.org/W1587157779;https://openalex.org/W1595159159;https://openalex.org/W1639032689;https://openalex.org/W1659842140;https://openalex.org/W1723619723;https://openalex.org/W1748133846;https://openalex.org/W1977042441;https://openalex.org/W2008499862;https://openalex.org/W2010334716;https://openalex.org/W2018450565;https://openalex.org/W2024060531;https://openalex.org/W2073616444;https://openalex.org/W2084792706;https://openalex.org/W2097571405;https://openalex.org/W2113741278;https://openalex.org/W2126554879;https://openalex.org/W2140112578;https://openalex.org/W2140190241;https://openalex.org/W2148423395;https://openalex.org/W2151554678;https://openalex.org/W2151653296;https://openalex.org/W2152195021;https://openalex.org/W2154241802;https://openalex.org/W2154943049;https://openalex.org/W2157104063;https://openalex.org/W2165489473;https://openalex.org/W2201487387;https://openalex.org/W2277678953;https://openalex.org/W2287814884;https://openalex.org/W2301363727;https://openalex.org/W2317440965;https://openalex.org/W2418499371;https://openalex.org/W2527766424;https://openalex.org/W2613854265;https://openalex.org/W2619205994;https://openalex.org/W2735074495;https://openalex.org/W2746471721;https://openalex.org/W2755950973;https://openalex.org/W2783445774;https://openalex.org/W2789574636;https://openalex.org/W2791030877;https://openalex.org/W2800658400;https://openalex.org/W2804299858;https://openalex.org/W2808717296;https://openalex.org/W2885026880;https://openalex.org/W2885938377;https://openalex.org/W2889949445;https://openalex.org/W2892074118;https://openalex.org/W2901478555;https://openalex.org/W2904262369;https://openalex.org/W2913441098;https://openalex.org/W2913511179;https://openalex.org/W2913923809;https://openalex.org/W2915062141;https://openalex.org/W2931821931;https://openalex.org/W2938187055;https://openalex.org/W2941951094;https://openalex.org/W2945366039;https://openalex.org/W2950652464;https://openalex.org/W2953670995;https://openalex.org/W2954243979;https://openalex.org/W2955282193;https://openalex.org/W2957480063;https://openalex.org/W2958120908;https://openalex.org/W2958591219;https://openalex.org/W2959384841;https://openalex.org/W2966794404;https://openalex.org/W2967148691;https://openalex.org/W2967541662;https://openalex.org/W2968337214;https://openalex.org/W2970312737;https://openalex.org/W2971754179;https://openalex.org/W2971935510;https://openalex.org/W2981630869;https://openalex.org/W2983960985;https://openalex.org/W2991117816;https://openalex.org/W2991842529;https://openalex.org/W3006321375;https://openalex.org/W3006500846;https://openalex.org/W3007031763;https://openalex.org/W3007555823;https://openalex.org/W3007924065;https://openalex.org/W3008869496;https://openalex.org/W3009083808;https://openalex.org/W3015376070;https://openalex.org/W3015712154;https://openalex.org/W3017381157;https://openalex.org/W3021213627;https://openalex.org/W3021324494;https://openalex.org/W3021611044;https://openalex.org/W3023540311;https://openalex.org/W3030453392;https://openalex.org/W3036663969;https://openalex.org/W3038588646;https://openalex.org/W3041931127;https://openalex.org/W3043954412;https://openalex.org/W3046364220;https://openalex.org/W3049194088;https://openalex.org/W3089669567;https://openalex.org/W3091866490;https://openalex.org/W3092376343;https://openalex.org/W3093015498;https://openalex.org/W3093846425;https://openalex.org/W3094370609;https://openalex.org/W3094415104;https://openalex.org/W3107851601;https://openalex.org/W3109065714;https://openalex.org/W3112700758;https://openalex.org/W3114197462;https://openalex.org/W3117323734;https://openalex.org/W3117693614;https://openalex.org/W3118057467;https://openalex.org/W3118408813;https://openalex.org/W3119896356;https://openalex.org/W3120225493;https://openalex.org/W3120254517;https://openalex.org/W3121507283;https://openalex.org/W3122939402;https://openalex.org/W3126831744;https://openalex.org/W3127236931;https://openalex.org/W3131478027;https://openalex.org/W3137708129;https://openalex.org/W3144543375;https://openalex.org/W3149452572;https://openalex.org/W3151861686;https://openalex.org/W3154169920;https://openalex.org/W3155052204;https://openalex.org/W3155218548;https://openalex.org/W3156827694;https://openalex.org/W3156852085;https://openalex.org/W3159068915;https://openalex.org/W3180086944;https://openalex.org/W3181846079;https://openalex.org/W3186072580;https://openalex.org/W3186521061;https://openalex.org/W3197886029;https://openalex.org/W3200955720;https://openalex.org/W3201722279;https://openalex.org/W3203676317;https://openalex.org/W3210186723;https://openalex.org/W3210212385;https://openalex.org/W3214709316;https://openalex.org/W4200251857;https://openalex.org/W4200411312;https://openalex.org/W4205129187;https://openalex.org/W4205431832;https://openalex.org/W4206289809;https://openalex.org/W4211189042;https://openalex.org/W4230109820;https://openalex.org/W4232545478;https://openalex.org/W4235174477;https://openalex.org/W4236362309;https://openalex.org/W4239972939;https://openalex.org/W4245306669;https://openalex.org/W4250042253;https://openalex.org/W4250589301;https://openalex.org/W4253572765;https://openalex.org/W4283203948;https://openalex.org/W4289601225;https://openalex.org/W4293775970;https://openalex.org/W4300995828;https://openalex.org/W4308933352;https://openalex.org/W4311198169;https://openalex.org/W4366779255;https://openalex.org/W4367056742;https://openalex.org/W4380320036;https://openalex.org/W4380792490;https://openalex.org/W4389474287;https://openalex.org/W4392204353;https://openalex.org/W6629510986;https://openalex.org/W6633218642;https://openalex.org/W6636726260;https://openalex.org/W6680704940;https://openalex.org/W6989336298,OPENALEX,"Beatriz Flamia Azevedo, 2024, Machine Learning","Beatriz Flamia Azevedo, 2024, Machine Learning"
+New Insights into the Emerging Trends Research of Machine and Deep Learning Applications in Energy Storage: A Bibliometric Analysis and Publication Trends,2023,article,en,39,10.32479/ijeep.14832,https://openalex.org/W4386803046,,Samuel-Soma M. Ajibade;Abdelhamid Zaïdi;Asamh Saleh M. Al Luhayb;Anthonia Oluwatosin Adediran;Liton Chandra Voumik;Fazle Rabbi,Samuel-Soma M. Ajibade;Abdelhamid Zaïdi;Asamh Saleh M. Al Luhayb;Anthonia Oluwatosin Adediran;Liton Chandra Voumik;Fazle Rabbi,Istanbul Commerce University;Qassim University;Qassim University;Universidade Federal de Uberlândia;Noakhali Science and Technology University,Samuel-Soma M. Ajibade,International Journal of Energy Economics and Policy,International Journal of Energy Economics and Policy,13,5,303,314,"The publication trends and bibliometric analysis of the research landscape on the applications of machine and deep learning in energy storage (MDLES) research were examined in this study based on published documents in the Elsevier Scopus database between 2012 and 2022. The PRISMA technique employed to identify, screen, and filter related publications on MDLES research recovered 969 documents comprising articles, conference papers, and reviews published in English. The results showed that the publications count on the topic increased from 3 to 385 (or a 12,733.3% increase) along with citations between 2012 and 2022. The high publications and citations rate was ascribed to the MDLES research impact, co-authorships/collaborations, as well as the source title/journals’ reputation, multidisciplinary nature, and research funding. The top/most prolific researcher, institution, country, and funding body on MDLES research are; is Yan Xu, Tsinghua University, China, and the National Natural Science Foundation of China, respectively. Keywords occurrence analysis revealed three clusters or hotspots based on machine learning, digital storage, and Energy Storage. Further analysis of the research landscape showed that MDLES research is currently and largely focused on the application of machine/deep learning for predicting, operating, and optimising energy storage as well as the design of energy storage materials for renewable energy technologies such as wind, and PV solar. However, future research will presumably include a focus on advanced energy materials development, operational systems monitoring and control as well as techno-economic analysis to address challenges associated with energy efficiency analysis, costing of renewable energy electricity pricing, trading, and revenue prediction",,Renewable energy;Scopus;Computer science;Bibliometrics;Data science;Library science;Engineering;Political science;Law;MEDLINE;Electrical engineering,https://openalex.org/W618969766;https://openalex.org/W1588786163;https://openalex.org/W1592409232;https://openalex.org/W1769221173;https://openalex.org/W1872649730;https://openalex.org/W1917633107;https://openalex.org/W1982396829;https://openalex.org/W1984703120;https://openalex.org/W1987027200;https://openalex.org/W2011133221;https://openalex.org/W2057480616;https://openalex.org/W2058391473;https://openalex.org/W2086496065;https://openalex.org/W2091154441;https://openalex.org/W2093664903;https://openalex.org/W2166692234;https://openalex.org/W2202159449;https://openalex.org/W2235853075;https://openalex.org/W2295405103;https://openalex.org/W2318201131;https://openalex.org/W2343280481;https://openalex.org/W2344174278;https://openalex.org/W2505251935;https://openalex.org/W2604611197;https://openalex.org/W2606577704;https://openalex.org/W2741358105;https://openalex.org/W2766786289;https://openalex.org/W2771505708;https://openalex.org/W2780553247;https://openalex.org/W2785929784;https://openalex.org/W2800156975;https://openalex.org/W2804990541;https://openalex.org/W2884320687;https://openalex.org/W2885578090;https://openalex.org/W2888142130;https://openalex.org/W2891483647;https://openalex.org/W2901225969;https://openalex.org/W2910849319;https://openalex.org/W2921149492;https://openalex.org/W2931197960;https://openalex.org/W2935877504;https://openalex.org/W2941054058;https://openalex.org/W2944678844;https://openalex.org/W2945288028;https://openalex.org/W2963691557;https://openalex.org/W2967729973;https://openalex.org/W2981470893;https://openalex.org/W2989671254;https://openalex.org/W2990466689;https://openalex.org/W3000731708;https://openalex.org/W3006269673;https://openalex.org/W3007407721;https://openalex.org/W3007550778;https://openalex.org/W3009652674;https://openalex.org/W3015704027;https://openalex.org/W3021912390;https://openalex.org/W3023640102;https://openalex.org/W3024350433;https://openalex.org/W3034026285;https://openalex.org/W3037631072;https://openalex.org/W3039342821;https://openalex.org/W3040330580;https://openalex.org/W3041101137;https://openalex.org/W3044303740;https://openalex.org/W3045302506;https://openalex.org/W3080311931;https://openalex.org/W3087769098;https://openalex.org/W3113216760;https://openalex.org/W3122735851;https://openalex.org/W3124296095;https://openalex.org/W3133541835;https://openalex.org/W3138654112;https://openalex.org/W3149578452;https://openalex.org/W3150580950;https://openalex.org/W3156040358;https://openalex.org/W3158361850;https://openalex.org/W3187418191;https://openalex.org/W3203259196;https://openalex.org/W4200235241;https://openalex.org/W4200308385;https://openalex.org/W4205561506;https://openalex.org/W4206784551;https://openalex.org/W4206936355;https://openalex.org/W4210379075;https://openalex.org/W4211018499;https://openalex.org/W4223517519;https://openalex.org/W4226262670;https://openalex.org/W4230046549;https://openalex.org/W4230248672;https://openalex.org/W4230648463;https://openalex.org/W4230798432;https://openalex.org/W4236660208;https://openalex.org/W4237117882;https://openalex.org/W4252775465;https://openalex.org/W4253848338;https://openalex.org/W4281557767;https://openalex.org/W4281721786;https://openalex.org/W4284959951;https://openalex.org/W4292072448;https://openalex.org/W4294688964;https://openalex.org/W4297478379;https://openalex.org/W4306252271;https://openalex.org/W4309205153;https://openalex.org/W4311098650;https://openalex.org/W4320063314;https://openalex.org/W4320063358;https://openalex.org/W4366588036;https://openalex.org/W4381549141;https://openalex.org/W4404193242;https://openalex.org/W7008203420,OPENALEX,"Samuel-Soma M. Ajibade, 2023, International Journal of Energy Economics and Policy","Samuel-Soma M. Ajibade, 2023, International Journal of Energy Economics and Policy"
+Machine Learning Applications in Nephrology: A Bibliometric Analysis Comparing Kidney Studies to Other Medicine Subspecialities,2021,article,en,30,10.1016/j.xkme.2021.04.012,https://openalex.org/W3176619972,34693256,Ashish Verma;Vipul C. Chitalia;Sushrut S. Waikar;Vijaya B. Kolachalama,Ashish Verma;Vipul C. Chitalia;Sushrut S. Waikar;Vijaya B. Kolachalama,Boston University;Brigham and Women's Hospital;Boston Medical Center;Boston University;Boston Medical Center;VA Boston Healthcare System;Boston University;Boston Medical Center;Boston University,Ashish Verma,Kidney Medicine,Kidney Medicine,3,5,762,767,"RATIONALE & OBJECTIVES: Artificial intelligence driven by machine learning algorithms is being increasingly employed for early detection, disease diagnosis, and clinical management. We explored the use of machine learning-driven advancements in kidney research compared with other organ-specific fields. STUDY DESIGN: Cross-sectional bibliometric analysis. SETTING & PARTICIPANTS: ISI Web of Science database was queried using specific Medical Subject Headings (MeSH) terms about the organ system, journal International Standard Serial Number, and research methodology. In parallel, we screened the National Institutes of Health (NIH) RePORTER website to explore funded grants that proposed the use of machine learning as a methodology. PREDICTORS: Number of publications using machine learning as a research method. OUTCOME: Articles were characterized by research methodology among 5 organ systems (brain, heart, kidney, liver, and lung). Grants funded by NIH for machine learning were characterized by study sections. ANALYTICAL APPROACH: Percentages of articles using machine learning and other research methodologies were compared among 5 organ systems. RESULTS: Machine learning-based articles that are focused on the kidney accounted for 3.2% of the total relevant articles from the 5 organ systems. Specifically, brain research published over 19-fold higher number of articles than kidney research. As compared with machine learning, conventional statistical approaches such as the Cox proportional hazard model were used 9-fold higher in articles related to kidney research. In general, a lower utilization of machine learning-based approaches was observed in organ-specific specialty journals than the broad interdisciplinary journals. The digestive disease, kidney, and urology study sections funded 122 applications proposing machine learning-based approaches compared to 265 applications from the neurology, neuropsychology, and neuropathology study sections. LIMITATIONS: Observational study. CONCLUSIONS: Our analysis suggests lowest use of machine learning as a research tool among kidney researchers compared with other organ-specific researchers, underscoring a need to better inform the kidney research community about this emerging data analytic tool.",,Machine learning;Artificial intelligence;Computer science;Specialty;Medicine;Medical physics;Pathology,https://openalex.org/W1987380823;https://openalex.org/W2081385953;https://openalex.org/W2090443364;https://openalex.org/W2097432501;https://openalex.org/W2112481616;https://openalex.org/W2148983669;https://openalex.org/W2160134719;https://openalex.org/W2163853417;https://openalex.org/W2165019590;https://openalex.org/W2613326680;https://openalex.org/W2655689996;https://openalex.org/W2783839600;https://openalex.org/W2794885170;https://openalex.org/W2889976627;https://openalex.org/W2899995215;https://openalex.org/W2905483812;https://openalex.org/W2905810301;https://openalex.org/W2919089713;https://openalex.org/W2952003460;https://openalex.org/W2952527443;https://openalex.org/W2964696298;https://openalex.org/W2969528126;https://openalex.org/W2971487518;https://openalex.org/W2972214324;https://openalex.org/W3014372210;https://openalex.org/W3015113267;https://openalex.org/W3080446999;https://openalex.org/W3087585143,OPENALEX,"Ashish Verma, 2021, Kidney Medicine","Ashish Verma, 2021, Kidney Medicine"
+A research landscape bibliometric analysis on climate change for last decades: Evidence from applications of machine learning,2023,article,en,40,10.1016/j.heliyon.2023.e20297,https://openalex.org/W4386859003,37780782,Samuel-Soma M. Ajibade;Abdelhamid Zaïdi;Festus Víctor Bekun;Anthonia Oluwatosin Adediran;Mbiatke Anthony Bassey,Samuel-Soma M. Ajibade;Abdelhamid Zaïdi;Festus Víctor Bekun;Anthonia Oluwatosin Adediran;Mbiatke Anthony Bassey,"Istanbul Commerce University;Qassim University;İstanbul Gelişim Üniversitesi;Lebanese American University;The Federal Polytechnic, Ado-Ekiti;Universidade Federal de Uberlândia;Tun Hussein Onn University of Malaysia",Samuel-Soma M. Ajibade,Heliyon,Heliyon,9,10,e20297,e20297,"Climate change (CC) is one of the greatest threats to human health, safety, and the environment. Given its current and future impacts, numerous studies have employed computational tools (e.g., machine learning, ML) to understand, mitigate, and adapt to CC. Therefore, this paper seeks to comprehensively analyze the research/publications landscape on the MLCC research based on published documents from Scopus. The high productivity and research impact of MLCC has produced highly cited works categorized as science, technology, and engineering to the arts, humanities, and social sciences. The most prolific author is Shamsuddin Shahid (based at Universiti Teknologi Malaysia ), whereas the Chinese Academy of Sciences is the most productive affiliation on MLCC research. The most influential countries are the United States and China, which is attributed to the funding activities of the National Science Foundation and the National Natural Science Foundation of China (NSFC), respectively. Collaboration through co-authorship in high-impact journals such as Remote Sensing was also identified as an important factor in the high rate of productivity among the most active stakeholders researching MLCC topics worldwide. Keyword co-occurrence analysis identified four major research hotspots/themes on MLCC research that describe the ML techniques, potential risky sectors, remote sensing, and sustainable development dynamics of CC. In conclusion, the paper finds that MLCC research has a significant socio-economic, environmental, and research impact, which points to increased discoveries, publications, and citations in the near future.",,Climate change;Bibliometrics;Geography;Physical geography;Data science;Library science;Computer science;Ecology;Biology,https://openalex.org/W85536136;https://openalex.org/W256667483;https://openalex.org/W1919087151;https://openalex.org/W1979723077;https://openalex.org/W1985791643;https://openalex.org/W1999501996;https://openalex.org/W2006457820;https://openalex.org/W2011607584;https://openalex.org/W2038913727;https://openalex.org/W2060041831;https://openalex.org/W2079491641;https://openalex.org/W2087523516;https://openalex.org/W2088591118;https://openalex.org/W2144900400;https://openalex.org/W2150607630;https://openalex.org/W2166391252;https://openalex.org/W2417573750;https://openalex.org/W2515822248;https://openalex.org/W2582794771;https://openalex.org/W2588003345;https://openalex.org/W2599035873;https://openalex.org/W2745770579;https://openalex.org/W2789984548;https://openalex.org/W2802685835;https://openalex.org/W2811423591;https://openalex.org/W2891765392;https://openalex.org/W2900600890;https://openalex.org/W2904176988;https://openalex.org/W2907963385;https://openalex.org/W2929484919;https://openalex.org/W2944794516;https://openalex.org/W2950270215;https://openalex.org/W2963407560;https://openalex.org/W2971653617;https://openalex.org/W2981332902;https://openalex.org/W2990621239;https://openalex.org/W2990679425;https://openalex.org/W2994645803;https://openalex.org/W3011216618;https://openalex.org/W3013945354;https://openalex.org/W3028066085;https://openalex.org/W3030524255;https://openalex.org/W3035803741;https://openalex.org/W3042390404;https://openalex.org/W3047142640;https://openalex.org/W3087070249;https://openalex.org/W3091890796;https://openalex.org/W3105945687;https://openalex.org/W3109314392;https://openalex.org/W3119802920;https://openalex.org/W3121378357;https://openalex.org/W3126534018;https://openalex.org/W3151354512;https://openalex.org/W3160856016;https://openalex.org/W3168376939;https://openalex.org/W3174426470;https://openalex.org/W3174975695;https://openalex.org/W3183706855;https://openalex.org/W3200901906;https://openalex.org/W3201279417;https://openalex.org/W3204400791;https://openalex.org/W4206935801;https://openalex.org/W4213426537;https://openalex.org/W4226264557;https://openalex.org/W4244082399;https://openalex.org/W4246734846;https://openalex.org/W4289981577;https://openalex.org/W4297478379;https://openalex.org/W4307725072;https://openalex.org/W4308200999;https://openalex.org/W4366588036;https://openalex.org/W4383682762;https://openalex.org/W4385884980;https://openalex.org/W6670532368;https://openalex.org/W6763819649;https://openalex.org/W6768602574;https://openalex.org/W6769098882;https://openalex.org/W6775916617;https://openalex.org/W6778739564;https://openalex.org/W6779814341;https://openalex.org/W6783260418;https://openalex.org/W6783998765;https://openalex.org/W6788678385;https://openalex.org/W6790197716;https://openalex.org/W6793729196;https://openalex.org/W6802023557;https://openalex.org/W6842497516;https://openalex.org/W6846266707;https://openalex.org/W6854270186,OPENALEX,"Samuel-Soma M. Ajibade, 2023, Heliyon","Samuel-Soma M. Ajibade, 2023, Heliyon"
+Scientific production and thematic breakthroughs in smart learning environments: a bibliometric analysis,2021,article,en,310,10.1186/s40561-020-00145-4,https://openalex.org/W3127908559,40477293,Friday Joseph Agbo;Solomon Sunday Oyelere;Jarkko Suhonen;Markku Tukiainen,Friday Joseph Agbo;Solomon Sunday Oyelere;Jarkko Suhonen;Markku Tukiainen,University of Eastern Finland;Luleå University of Technology;University of Eastern Finland;University of Eastern Finland,Friday Joseph Agbo,Smart Learning Environments,Smart Learning Environments,8,1,1,1,"This study examines the research landscape of smart learning environments by conducting a comprehensive bibliometric analysis of the field over the years. The study focused on the research trends, scholar's productivity, and thematic focus of scientific publications in the field of smart learning environments. A total of 1081 data consisting of peer-reviewed articles were retrieved from the Scopus database. A bibliometric approach was applied to analyse the data for a comprehensive overview of the trend, thematic focus, and scientific production in the field of smart learning environments. The result from this bibliometric analysis indicates that the first paper on smart learning environments was published in 2002; implying the beginning of the field. Among other sources, ""Computers & Education,"" ""Smart Learning Environments,"" and ""Computers in Human Behaviour"" are the most relevant outlets publishing articles associated with smart learning environments. The work of Kinshuk et al., published in 2016, stands out as the most cited work among the analysed documents. The United States has the highest number of scientific productions and remained the most relevant country in the smart learning environment field. Besides, the results also showed names of prolific scholars and most relevant institutions in the field. Keywords such as ""learning analytics,"" ""adaptive learning,"" ""personalized learning,"" ""blockchain,"" and ""deep learning"" remain the trending keywords. Furthermore, thematic analysis shows that ""digital storytelling"" and its associated components such as ""virtual reality,"" ""critical thinking,"" and ""serious games"" are the emerging themes of the smart learning environments but need to be further developed to establish more ties with ""smart learning"". The study provides useful contribution to the field by clearly presenting a comprehensive overview and research hotspots, thematic focus, and future direction of the field. These findings can guide scholars, especially the young ones in field of smart learning environments in defining their research focus and what aspect of smart leaning can be explored.",,Thematic map;Computer science;Production (economics);Thematic analysis;Data science;Information retrieval;Geography;Sociology;Cartography;Social science;Macroeconomics;Economics;Qualitative research,https://openalex.org/W88577737;https://openalex.org/W1974219072;https://openalex.org/W1995916076;https://openalex.org/W2024679167;https://openalex.org/W2029040208;https://openalex.org/W2041870075;https://openalex.org/W2072035149;https://openalex.org/W2081818270;https://openalex.org/W2122165688;https://openalex.org/W2127940937;https://openalex.org/W2131892368;https://openalex.org/W2136630123;https://openalex.org/W2226337991;https://openalex.org/W2253312808;https://openalex.org/W2261680470;https://openalex.org/W2267754083;https://openalex.org/W2303392718;https://openalex.org/W2498193679;https://openalex.org/W2508444123;https://openalex.org/W2510091332;https://openalex.org/W2510177591;https://openalex.org/W2527888695;https://openalex.org/W2561817164;https://openalex.org/W2585780990;https://openalex.org/W2592478209;https://openalex.org/W2602916380;https://openalex.org/W2616297136;https://openalex.org/W2618192441;https://openalex.org/W2755950973;https://openalex.org/W2789556792;https://openalex.org/W2793863352;https://openalex.org/W2801278527;https://openalex.org/W2902306014;https://openalex.org/W2912586429;https://openalex.org/W2913266440;https://openalex.org/W2913592589;https://openalex.org/W2939403565;https://openalex.org/W2950799696;https://openalex.org/W2968007757;https://openalex.org/W2981769453;https://openalex.org/W2997998108;https://openalex.org/W3014212308;https://openalex.org/W3016174410;https://openalex.org/W3022833973;https://openalex.org/W3041827401;https://openalex.org/W3125707221;https://openalex.org/W3213420729;https://openalex.org/W4206344428;https://openalex.org/W4236950172;https://openalex.org/W6692808338;https://openalex.org/W6737935198;https://openalex.org/W6758963018,OPENALEX,"Friday Joseph Agbo, 2021, Smart Learning Environments","Friday Joseph Agbo, 2021, Smart Learning Environments"
+Machine Learning and Blockchain: A Bibliometric Study on Security and Privacy,2024,article,en,17,10.3390/info15010065,https://openalex.org/W4391099316,,Alejandro Valencia-Arías;Juan David González-Ruíz;Lilian Verde Flores;Luis Vega-Mori;Paula Andrea Rodríguez-Correa;Gustavo Sánchez Santos,Alejandro Valencia-Arías;Juan David González-Ruíz;Lilian Verde Flores;Luis Vega-Mori;Paula Andrea Rodríguez-Correa;Gustavo Sánchez Santos,Universidad Señor de Sipán;Universidad Nacional de Colombia;Universidad Señor de Sipán;Universidad Ricardo Palma;Institución Universitaria Escolme;Universidad Ricardo Palma,Alejandro Valencia-Arías,Information,Information,15,1,65,65,"Machine learning and blockchain technology are fast-developing fields with implications for multiple sectors. Both have attracted a lot of interest and show promise in security, IoT, 5G/6G networks, artificial intelligence, and more. However, challenges remain in the scientific literature, so the aim is to investigate research trends around the use of machine learning in blockchain. A bibliometric analysis is proposed based on the PRISMA-2020 parameters in the Scopus and Web of Science databases. An objective analysis of the most productive and highly cited authors, journals, and countries is conducted. Additionally, a thorough analysis of keyword validity and importance is performed, along with a review of the most significant topics by year of publication. Co-occurrence networks are generated to identify the most crucial research clusters in the field. Finally, a research agenda is proposed to highlight future topics with great potential. This study reveals a growing interest in machine learning and blockchain. Topics are evolving towards IoT and smart contracts. Emerging keywords include cloud computing, intrusion detection, and distributed learning. The United States, Australia, and India are leading the research. The research proposes an agenda to explore new applications and foster collaboration between researchers and countries in this interdisciplinary field.",,Blockchain;Computer science;Scopus;Field (mathematics);Data science;Cloud computing;Web of science;Internet of Things;Artificial intelligence;Computer security;Political science;Mathematics;Law;Pure mathematics;MEDLINE;Operating system,https://openalex.org/W2163539724;https://openalex.org/W2884850778;https://openalex.org/W2899063614;https://openalex.org/W2899559633;https://openalex.org/W2907683311;https://openalex.org/W2939989211;https://openalex.org/W2944852501;https://openalex.org/W2951694401;https://openalex.org/W2962621836;https://openalex.org/W2974429275;https://openalex.org/W2993463367;https://openalex.org/W3009735711;https://openalex.org/W3016342701;https://openalex.org/W3026150618;https://openalex.org/W3031802354;https://openalex.org/W3087214020;https://openalex.org/W3088273379;https://openalex.org/W3091851474;https://openalex.org/W3097704033;https://openalex.org/W3108615370;https://openalex.org/W3111635317;https://openalex.org/W3118615836;https://openalex.org/W3126615894;https://openalex.org/W3131823290;https://openalex.org/W3135725526;https://openalex.org/W3157876841;https://openalex.org/W3157894430;https://openalex.org/W3167619068;https://openalex.org/W3171918319;https://openalex.org/W3172817039;https://openalex.org/W3182418041;https://openalex.org/W3191116886;https://openalex.org/W3192184597;https://openalex.org/W3192414357;https://openalex.org/W3193560119;https://openalex.org/W3194026771;https://openalex.org/W3195473500;https://openalex.org/W3195539663;https://openalex.org/W3201827372;https://openalex.org/W3215181416;https://openalex.org/W3215514448;https://openalex.org/W4200152289;https://openalex.org/W4207038251;https://openalex.org/W4210698639;https://openalex.org/W4220835468;https://openalex.org/W4220993330;https://openalex.org/W4224230842;https://openalex.org/W4229008987;https://openalex.org/W4282032734;https://openalex.org/W4296250495;https://openalex.org/W4313307346;https://openalex.org/W4313583479;https://openalex.org/W4317038528;https://openalex.org/W4324053439;https://openalex.org/W6753458459;https://openalex.org/W6794788827;https://openalex.org/W6800042234,OPENALEX,"Alejandro Valencia-Arías, 2024, Information","Alejandro Valencia-Arías, 2024, Information"
+A Bibliometric Analysis of Fault Prediction System using Machine Learning Techniques,2022,book-chapter,en,23,10.2174/9789815036060122010008,https://openalex.org/W4303195184,,Mudita Uppal;Deepali Gupta;Vaishali Mehta,Mudita Uppal;Deepali Gupta;Vaishali Mehta,Chitkara University;Chitkara University;Govind Ballabh Pant University of Agriculture and Technology,Mudita Uppal,BENTHAM SCIENCE PUBLISHERS eBooks,BENTHAM SCIENCE PUBLISHERS eBooks,,,109,130,"Fault prediction in software is an important aspect to be considered in software development because it ensures reliability and the quality of a software product. A high-quality software product consists of a few numbers of faults and failures. Software fault prediction (SFP) is crucial for the software quality assurance process as it examines the vulnerability of software products towards failures. Fault detection is a significant aspect of cost estimation in the initial stage, and hence, a fault predictor model is required to lower the expenses used during the development and maintenance phase. SFP is applied to identify the faulty modules of the software in order to complement the development as well as the testing process. Software metric based fault prediction reflects several aspects of the software. Several Machine Learning (ML) techniques have been implemented to eliminate faulty and unnecessary data from faulty modules. This chapter gives a brief introduction to SFP and includes a bibliometric analysis. The objective of the bibliometric analysis is to analyze research trends of ML techniques that are used for predicting software faults. This chapter uses the VOSviewer software and Biblioshiny tool to visually analyze 1623 papers fetched from the Scopus database for the past twenty years. It explores the distribution of publications over the years, top-rated publishers, contributing authors, funding agencies, cited papers and citations per paper. The collaboration of countries and cooccurrence analysis as well as over the year’s trend of author keywords are also explored. This chapter can be beneficial for young researchers to locate attractive and relevant research insights within SFP.",,Software quality;Computer science;Software;Software development;Reliability engineering;Software engineering;Software construction;Software quality analyst;Software metric;Software sizing;Quality (philosophy);Software quality assurance;Process (computing);Verification and validation;Software development process;Metric (unit);Fault (geology);Engineering;Operating system;Operations management;Epistemology;Seismology;Philosophy;Geology,https://openalex.org/W631751048;https://openalex.org/W1493788687;https://openalex.org/W1838241330;https://openalex.org/W1980851144;https://openalex.org/W2007705030;https://openalex.org/W2028349769;https://openalex.org/W2034445489;https://openalex.org/W2043709414;https://openalex.org/W2045116160;https://openalex.org/W2053968218;https://openalex.org/W2095638516;https://openalex.org/W2099919734;https://openalex.org/W2150220236;https://openalex.org/W2160988203;https://openalex.org/W2305460223;https://openalex.org/W2562317638;https://openalex.org/W2616916909;https://openalex.org/W2755950973;https://openalex.org/W2766899299;https://openalex.org/W2783657687;https://openalex.org/W2889539774;https://openalex.org/W2902930463;https://openalex.org/W2921707507;https://openalex.org/W2966280563;https://openalex.org/W3008381189;https://openalex.org/W3009734373;https://openalex.org/W3014740133;https://openalex.org/W3117038359;https://openalex.org/W3139053720;https://openalex.org/W4235295935;https://openalex.org/W4248299818;https://openalex.org/W6759177930;https://openalex.org/W6831423407,OPENALEX,"Mudita Uppal, 2022, BENTHAM SCIENCE PUBLISHERS eBooks","Mudita Uppal, 2022, BENTHAM SCIENCE PUBLISHERS eBooks"
+Artificial Intelligence in Health Care: Bibliometric Analysis,2020,article,en,445,10.2196/18228,https://openalex.org/W3025370095,32723713,Yuqi Guo;Zhichao Hao;Shichong Zhao;Jiaqi Gong;Fan Yang,Yuqi Guo;Zhichao Hao;Shichong Zhao;Jiaqi Gong;Fan Yang,"University of North Carolina at Charlotte;University of Alabama;Dongbei University of Finance and Economics;University of Maryland, Baltimore;Dongbei University of Finance and Economics",Yuqi Guo,Journal of Medical Internet Research,Journal of Medical Internet Research,22,7,e18228,e18228,"BACKGROUND: As a critical driving power to promote health care, the health care-related artificial intelligence (AI) literature is growing rapidly. OBJECTIVE: The purpose of this analysis is to provide a dynamic and longitudinal bibliometric analysis of health care-related AI publications. METHODS: The Web of Science (Clarivate PLC) was searched to retrieve all existing and highly cited AI-related health care research papers published in English up to December 2019. Based on bibliometric indicators, a search strategy was developed to screen the title for eligibility, using the abstract and full text where needed. The growth rate of publications, characteristics of research activities, publication patterns, and research hotspot tendencies were computed using the HistCite software. RESULTS: The search identified 5235 hits, of which 1473 publications were included in the analyses. Publication output increased an average of 17.02% per year since 1995, but the growth rate of research papers significantly increased to 45.15% from 2014 to 2019. The major health problems studied in AI research are cancer, depression, Alzheimer disease, heart failure, and diabetes. Artificial neural networks, support vector machines, and convolutional neural networks have the highest impact on health care. Nucleosides, convolutional neural networks, and tumor markers have remained research hotspots through 2019. CONCLUSIONS: This analysis provides a comprehensive overview of the AI-related research conducted in the field of health care, which helps researchers, policy makers, and practitioners better understand the development of health care-related AI research and possible practice implications. Future AI research should be dedicated to filling in the gaps between AI health care research and clinical applications.",,Health care;Bibliometrics;Artificial intelligence;MEDLINE;Data science;Computer science;Medicine;Data mining;Political science;Law,https://openalex.org/W765754;https://openalex.org/W1976016042;https://openalex.org/W1985823426;https://openalex.org/W1996531310;https://openalex.org/W1997866278;https://openalex.org/W2011257159;https://openalex.org/W2050856345;https://openalex.org/W2059398319;https://openalex.org/W2060695172;https://openalex.org/W2103588123;https://openalex.org/W2140286230;https://openalex.org/W2142526493;https://openalex.org/W2166721403;https://openalex.org/W2396694279;https://openalex.org/W2414496760;https://openalex.org/W2482857905;https://openalex.org/W2531663067;https://openalex.org/W2604186734;https://openalex.org/W2783201053;https://openalex.org/W2788633781;https://openalex.org/W2790209545;https://openalex.org/W2792983091;https://openalex.org/W2883790289;https://openalex.org/W2887791621;https://openalex.org/W2900529437;https://openalex.org/W2905810301;https://openalex.org/W2908201961;https://openalex.org/W2926647542;https://openalex.org/W2936320514;https://openalex.org/W2937793871;https://openalex.org/W2945330811;https://openalex.org/W2953301966;https://openalex.org/W2953722276;https://openalex.org/W2964006392;https://openalex.org/W2980705747;https://openalex.org/W2986046019;https://openalex.org/W2990283046;https://openalex.org/W3011742849;https://openalex.org/W3012645020;https://openalex.org/W3092629395;https://openalex.org/W3106345160;https://openalex.org/W4210949340,OPENALEX,"Yuqi Guo, 2020, Journal of Medical Internet Research","Yuqi Guo, 2020, Journal of Medical Internet Research"
+Research themes in machine learning applications in supply chain management using bibliometric analysis tools,2022,article,en,30,10.1108/bij-12-2021-0755,https://openalex.org/W4220894906,,Syed Asif Raza;Srikrishna Madhumohan Govindaluri;M. Khurrum S. Bhutta,Syed Asif Raza;Srikrishna Madhumohan Govindaluri;M. Khurrum S. Bhutta,Sultan Qaboos University;Sultan Qaboos University;Ohio University,Syed Asif Raza,Benchmarking An International Journal,Benchmarking An International Journal,30,3,834,867,"Purpose This paper conducts a Systematic Literature Review (SLR) of Machine Learning (ML) in Supply Chain Management through bibliometric and network analysis, the authors are able to grasp key features of the contemporary literature. The study makes use of state-of-the-art analytical framework based on a unified approach to reveal insights from the present body of knowledge and the potentials for future research developments. Design/methodology/approach Unlike standard literature reviews, in SLR, a structured approach is followed. The approach enables utilizing contemporary tools and software packages such as R-package “bibliometrix” and Gephi for exploratory and visual analytics. A number of clustering methods are employed to form clusters. Later, multivariate analysis methodologies are adopted to determine the dominant clusters for the influential co-cited references. Findings Using contemporary tools from Bibliometric Analysis (BA), the authors identify in an exploratory analysis, the influential authors, sources, regions, affiliations and papers. In addition, the use of network analysis tools reveals research clusters, topological analysis, key research topics, interrelation and authors’ collaboration along with their patterns. Finally, the optimum number of clusters computed for cluster analysis is decided using a systematic procedure based on multivariate analysis such as k-means and factor analysis. Originality/value Modern-day supply chains increasingly depend on developing superior insights from large amounts of data available from diverse sources in unstructured and semi-structured formats. In order to maintain a competitive edge, the supply chains need to perform speedy analysis of big data using efficient tools that provide real-time decision-making insights. Such an analysis necessitates automated processing using intelligent ML algorithms. Through a BA followed by a detailed data visualization in a network analysis enabled grasping key features of the contemporary literature. The analysis is based on 155 documents from the period 2008 to 2018 selected using a systematic selection procedure.",,Computer science;GRASP;Data science;Network analysis;Cluster analysis;Originality;Supply chain;Supply chain management;Systematic review;Exploratory analysis;Social network analysis;Data mining;Management science;Artificial intelligence;Engineering;Software engineering;Sociology;Qualitative research;Social science;Political science;MEDLINE;Electrical engineering;Law;World Wide Web;Social media,https://openalex.org/W58954717;https://openalex.org/W139852187;https://openalex.org/W1089297094;https://openalex.org/W1491972678;https://openalex.org/W1511719718;https://openalex.org/W1529681343;https://openalex.org/W1554242993;https://openalex.org/W1554291173;https://openalex.org/W1575873103;https://openalex.org/W1856263053;https://openalex.org/W1890122984;https://openalex.org/W1911451788;https://openalex.org/W1965442071;https://openalex.org/W1965746216;https://openalex.org/W1966538856;https://openalex.org/W1968475341;https://openalex.org/W1969390721;https://openalex.org/W1970647173;https://openalex.org/W1970952970;https://openalex.org/W1972968145;https://openalex.org/W1978172667;https://openalex.org/W1979379096;https://openalex.org/W1979458009;https://openalex.org/W1982585826;https://openalex.org/W1983344181;https://openalex.org/W1984025929;https://openalex.org/W1985273827;https://openalex.org/W1988277750;https://openalex.org/W1988428279;https://openalex.org/W1992880712;https://openalex.org/W1992983421;https://openalex.org/W1994492724;https://openalex.org/W1997383668;https://openalex.org/W1998485133;https://openalex.org/W1999504788;https://openalex.org/W2003074920;https://openalex.org/W2005168277;https://openalex.org/W2005207065;https://openalex.org/W2008707928;https://openalex.org/W2009540046;https://openalex.org/W2011430131;https://openalex.org/W2011874921;https://openalex.org/W2011957532;https://openalex.org/W2013258619;https://openalex.org/W2014121877;https://openalex.org/W2014644425;https://openalex.org/W2015453663;https://openalex.org/W2017702422;https://openalex.org/W2017821581;https://openalex.org/W2018021847;https://openalex.org/W2020360355;https://openalex.org/W2020432772;https://openalex.org/W2021519095;https://openalex.org/W2023629325;https://openalex.org/W2023944948;https://openalex.org/W2024390183;https://openalex.org/W2025883194;https://openalex.org/W2026605760;https://openalex.org/W2026676048;https://openalex.org/W2026729402;https://openalex.org/W2026794123;https://openalex.org/W2026816730;https://openalex.org/W2029552401;https://openalex.org/W2029907981;https://openalex.org/W2029969606;https://openalex.org/W2033380040;https://openalex.org/W2033459821;https://openalex.org/W2033693670;https://openalex.org/W2034409962;https://openalex.org/W2035854859;https://openalex.org/W2035987259;https://openalex.org/W2038258091;https://openalex.org/W2038742525;https://openalex.org/W2039509301;https://openalex.org/W2042218363;https://openalex.org/W2042876421;https://openalex.org/W2049294565;https://openalex.org/W2049806837;https://openalex.org/W2058027354;https://openalex.org/W2059508663;https://openalex.org/W2060284579;https://openalex.org/W2061150529;https://openalex.org/W2061842011;https://openalex.org/W2061993807;https://openalex.org/W2062015398;https://openalex.org/W2062140782;https://openalex.org/W2063011680;https://openalex.org/W2063056835;https://openalex.org/W2066704625;https://openalex.org/W2068394020;https://openalex.org/W2070410573;https://openalex.org/W2070960381;https://openalex.org/W2071496984;https://openalex.org/W2074634340;https://openalex.org/W2075801623;https://openalex.org/W2076309564;https://openalex.org/W2076983736;https://openalex.org/W2080693034;https://openalex.org/W2080696742;https://openalex.org/W2082985613;https://openalex.org/W2083457386;https://openalex.org/W2084176908;https://openalex.org/W2084674986;https://openalex.org/W2090813263;https://openalex.org/W2092595282;https://openalex.org/W2092620885;https://openalex.org/W2093948910;https://openalex.org/W2097148950;https://openalex.org/W2097359812;https://openalex.org/W2097529207;https://openalex.org/W2098215764;https://openalex.org/W2100033597;https://openalex.org/W2104925392;https://openalex.org/W2106467926;https://openalex.org/W2106488040;https://openalex.org/W2110205957;https://openalex.org/W2111780926;https://openalex.org/W2113348250;https://openalex.org/W2115721093;https://openalex.org/W2116348957;https://openalex.org/W2116859162;https://openalex.org/W2117871237;https://openalex.org/W2124344619;https://openalex.org/W2124778735;https://openalex.org/W2125910575;https://openalex.org/W2127151227;https://openalex.org/W2131681506;https://openalex.org/W2131814102;https://openalex.org/W2135133355;https://openalex.org/W2135455887;https://openalex.org/W2137694668;https://openalex.org/W2141833837;https://openalex.org/W2152727262;https://openalex.org/W2156733681;https://openalex.org/W2157812421;https://openalex.org/W2160203079;https://openalex.org/W2160781605;https://openalex.org/W2161160262;https://openalex.org/W2163187547;https://openalex.org/W2164308914;https://openalex.org/W2165691491;https://openalex.org/W2167482691;https://openalex.org/W2168004073;https://openalex.org/W2170493570;https://openalex.org/W2171718612;https://openalex.org/W2261525379;https://openalex.org/W2293068345;https://openalex.org/W2302535939;https://openalex.org/W2302800291;https://openalex.org/W2314105938;https://openalex.org/W2334266275;https://openalex.org/W2339446221;https://openalex.org/W2416848540;https://openalex.org/W2470843486;https://openalex.org/W2525116986;https://openalex.org/W2530583575;https://openalex.org/W2562947506;https://openalex.org/W2588057947;https://openalex.org/W2606825238;https://openalex.org/W2608664270;https://openalex.org/W2735566545;https://openalex.org/W2753445311;https://openalex.org/W2755950973;https://openalex.org/W2756405796;https://openalex.org/W2782225523;https://openalex.org/W2796400896;https://openalex.org/W2802265855;https://openalex.org/W2849935226;https://openalex.org/W2885251002;https://openalex.org/W2887073824;https://openalex.org/W2892956201;https://openalex.org/W2893740026;https://openalex.org/W2898216773;https://openalex.org/W2902851216;https://openalex.org/W2903175657;https://openalex.org/W2904815033;https://openalex.org/W2905011444;https://openalex.org/W2907546547;https://openalex.org/W2911450871;https://openalex.org/W2914451849;https://openalex.org/W2915382319;https://openalex.org/W2936651611;https://openalex.org/W2943805251;https://openalex.org/W2943949687;https://openalex.org/W2944321612;https://openalex.org/W2945429439;https://openalex.org/W2947011708;https://openalex.org/W2947788863;https://openalex.org/W2948141579;https://openalex.org/W2950959406;https://openalex.org/W2956111096;https://openalex.org/W2963312918;https://openalex.org/W2965886286;https://openalex.org/W2966506874;https://openalex.org/W2970803022;https://openalex.org/W2976777857;https://openalex.org/W2981123275;https://openalex.org/W2986442689;https://openalex.org/W2988770751;https://openalex.org/W2989173527;https://openalex.org/W2990121029;https://openalex.org/W2990907859;https://openalex.org/W2995045082;https://openalex.org/W2995447105;https://openalex.org/W2997682577;https://openalex.org/W2998574317;https://openalex.org/W3007397514;https://openalex.org/W3008495688;https://openalex.org/W3014920224;https://openalex.org/W3016039599;https://openalex.org/W3016512120;https://openalex.org/W3018881931;https://openalex.org/W3022449086;https://openalex.org/W3033075792;https://openalex.org/W3035856362;https://openalex.org/W3081491601;https://openalex.org/W3089252064;https://openalex.org/W3099768174;https://openalex.org/W3121177474;https://openalex.org/W3125939023;https://openalex.org/W3192208786;https://openalex.org/W3194368124;https://openalex.org/W3198357836;https://openalex.org/W4200301016;https://openalex.org/W4211007335;https://openalex.org/W4233205911;https://openalex.org/W4237378413;https://openalex.org/W4252999557;https://openalex.org/W4256613398,OPENALEX,"Syed Asif Raza, 2022, Benchmarking An International Journal","Syed Asif Raza, 2022, Benchmarking An International Journal"
+A bibliometric analysis of worldwide cancer research using machine learning methods,2023,review,en,19,10.1002/cai2.68,https://openalex.org/W4364365712,38089405,Lianghong Lin;Likeng Liang;Maojie Wang;Runyue Huang;Mengchun Gong;Guangjun Song;Tianyong Hao,Lianghong Lin;Likeng Liang;Maojie Wang;Runyue Huang;Mengchun Gong;Guangjun Song;Tianyong Hao,South China Normal University;South China Normal University;Guangzhou University of Chinese Medicine;Guangdong Provincial Hospital of Traditional Chinese Medicine;Guangzhou University of Chinese Medicine;Guangdong Provincial Hospital of Traditional Chinese Medicine;Southern Medical University;San’an Optoelectronics (China);South China Normal University,Lianghong Lin,Cancer Innovation,Cancer Innovation,2,3,219,232,"Abstract With the progress and development of computer technology, applying machine learning methods to cancer research has become an important research field. To analyze the most recent research status and trends, main research topics, topic evolutions, research collaborations, and potential directions of this research field, this study conducts a bibliometric analysis on 6206 research articles worldwide collected from PubMed between 2011 and 2021 concerning cancer research using machine learning methods. Python is used as a tool for bibliometric analysis, Gephi is used for social network analysis, and the Latent Dirichlet Allocation model is used for topic modeling. The trend analysis of articles not only reflects the innovative research at the intersection of machine learning and cancer but also demonstrates its vigorous development and increasing impacts. In terms of journals, Nature Communications is the most influential journal and Scientific Reports is the most prolific one. The United States and Harvard University have contributed the most to cancer research using machine learning methods. As for the research topic, “Support Vector Machine,” “classification,” and “deep learning” have been the core focuses of the research field. Findings are helpful for scholars and related practitioners to better understand the development status and trends of cancer research using machine learning methods, as well as to have a deeper understanding of research hotspots.",,Latent Dirichlet allocation;Artificial intelligence;Computer science;Topic model;Field (mathematics);Data science;Bibliometrics;Machine learning;Library science;Mathematics;Pure mathematics,https://openalex.org/W1548482530;https://openalex.org/W1588989507;https://openalex.org/W1992492534;https://openalex.org/W2012162805;https://openalex.org/W2027641169;https://openalex.org/W2059515884;https://openalex.org/W2076811409;https://openalex.org/W2094053777;https://openalex.org/W2121197635;https://openalex.org/W2167482691;https://openalex.org/W2525784261;https://openalex.org/W2588022491;https://openalex.org/W2593573916;https://openalex.org/W2593949166;https://openalex.org/W2664267452;https://openalex.org/W2750098299;https://openalex.org/W2790313915;https://openalex.org/W2798286858;https://openalex.org/W2800670487;https://openalex.org/W2887382745;https://openalex.org/W2888732444;https://openalex.org/W2937265313;https://openalex.org/W2945395591;https://openalex.org/W2962686197;https://openalex.org/W2968176395;https://openalex.org/W3003683721;https://openalex.org/W3014848624;https://openalex.org/W3020635402;https://openalex.org/W3025370095;https://openalex.org/W3029684717;https://openalex.org/W3034410199;https://openalex.org/W3037389001;https://openalex.org/W3124449840;https://openalex.org/W3126487024;https://openalex.org/W3133796486;https://openalex.org/W3136098559;https://openalex.org/W3168716724;https://openalex.org/W3170170443;https://openalex.org/W3208563410;https://openalex.org/W4225315041;https://openalex.org/W4364365712,OPENALEX,"Lianghong Lin, 2023, Cancer Innovation","Lianghong Lin, 2023, Cancer Innovation"
+Evolution of machine learning applications in medical and healthcare analytics research: A bibliometric analysis,2024,article,en,23,10.1016/j.iswa.2024.200441,https://openalex.org/W4402635887,,Samuel-Soma M. Ajibade;Gloria Nnadwa Alhassan;Abdelhamid Zaïdi;Olukayode Oki;Joseph Bamidele Awotunde;Emeka Ogbuju;Kayode A. Akintoye,Samuel-Soma M. Ajibade;Gloria Nnadwa Alhassan;Abdelhamid Zaïdi;Olukayode Oki;Joseph Bamidele Awotunde;Emeka Ogbuju;Kayode A. Akintoye,"National Open University of Nigeria;Istanbul Commerce University;Sunway University;Western Caspian University;İstanbul Gelişim Üniversitesi;Qassim University;Walter Sisulu University;University of Ilorin;Federal University Lokoja;National Open University of Nigeria;The Federal Polytechnic, Ado-Ekiti",Samuel-Soma M. Ajibade,Intelligent Systems with Applications,Intelligent Systems with Applications,24,,200441,200441,"• The current status is presented, along with the publication patterns from 1994 to 2023, as well as the topic area categories, which include the general analysis and fundamental features that are provided include the following: total publications (TP), and percentage total publications (%TP) for MDLHC research, several viewpoints on types and research directions, as well as significant indicators at the levels of countries, institutions, and funding organizations. Furthermore, this study presents the varying number of highest publications and citations within the past decade (1994–2023). • Analysing the collaborations at the level of countries, authorship and institutions, the corresponding networks are demonstrated by network visualisation map for co-authorship on MLHC research, network visualisation map for collaborating countries on MLHC research. • The themes of all publications and the top influential journals are aggregated based on the author-keywords analysis aimed to help researchers understand the hotspots and focus. • Ultimately, the study seeks to add impetus to the current discourse surrounding the growth of ML in HC, nurturing a greater comprehension of its transformative prospects as well as challenges that require tackling to harness its complete benefits. • According to all the analyses and visualisation maps, It is also envisaged that the insights garnered from the study will avail academics, politicians, and medical practitioners with critical insights that could stimulate pioneering research initiatives and novel collaborations This bibliometric research explores the global evolution of machine learning applications in medical and healthcare research for 3 decades (1994 to 2023). The study applies data mining techniques to a comprehensive dataset of published articles related to machine learning applications in the medical and healthcare sectors. The data extraction process includes the retrieval of relevant information from the source sources such as journals, books, and conference proceedings. An analysis of the extracted data is then conducted to identify the trends in the machine learning applications in medical and healthcare research. The Results revealed the publications published and indexed in the Scopus and PubMed database over the last 30 years. Bibliometric Analysis revealed that funding played a more significant role in publication productivity compared to collaboration (co-authorships), particularly at the country level. Hotspots analysis revealed three core research themes on MLHC research hence demonstrating the importance of machine learning applications to medical and healthcare research. Further, the study showed that the MLHC research landscape has largely focused on ML applications to tackle various issues ranging from chronic medical challenges (e.g., cardiological diseases) to patient data security. The findings of this research may be useful to policy makers and practitioners in the medical and healthcare sectors and to global research endeavours in the field. Future studies could include addressing issues such as growing ethical considerations, integration, and practical applications in wearable technology, IoT, and smart healthcare systems.",,Data science;Analytics;Health care;Computer science;Political science;Law,https://openalex.org/W1968411139;https://openalex.org/W2029025845;https://openalex.org/W2163187547;https://openalex.org/W2263556835;https://openalex.org/W2536826723;https://openalex.org/W2593193389;https://openalex.org/W2610135452;https://openalex.org/W2750268731;https://openalex.org/W2765272403;https://openalex.org/W2911300722;https://openalex.org/W2913240367;https://openalex.org/W2936086693;https://openalex.org/W2940524603;https://openalex.org/W2943491685;https://openalex.org/W2947814289;https://openalex.org/W2969881216;https://openalex.org/W2999445018;https://openalex.org/W3006913750;https://openalex.org/W3011742849;https://openalex.org/W3016123475;https://openalex.org/W3019449433;https://openalex.org/W3021448296;https://openalex.org/W3035142875;https://openalex.org/W3042276730;https://openalex.org/W3048071928;https://openalex.org/W3080627676;https://openalex.org/W3087893815;https://openalex.org/W3088589938;https://openalex.org/W3092371431;https://openalex.org/W3093861859;https://openalex.org/W3101604855;https://openalex.org/W3118261252;https://openalex.org/W3150904570;https://openalex.org/W3160856016;https://openalex.org/W3182064909;https://openalex.org/W3186830123;https://openalex.org/W3193630181;https://openalex.org/W3205993471;https://openalex.org/W4206935801;https://openalex.org/W4221086457;https://openalex.org/W4225289891;https://openalex.org/W4230193413;https://openalex.org/W4239687298;https://openalex.org/W4242733110;https://openalex.org/W4244631099;https://openalex.org/W4280553349;https://openalex.org/W4281483819;https://openalex.org/W4281616267;https://openalex.org/W4281630308;https://openalex.org/W4297478379;https://openalex.org/W4298152878;https://openalex.org/W4308200999;https://openalex.org/W4312187060;https://openalex.org/W4318051995;https://openalex.org/W4327852009;https://openalex.org/W4362666995;https://openalex.org/W4366310212;https://openalex.org/W4366588036;https://openalex.org/W4379057423;https://openalex.org/W4381054425;https://openalex.org/W4383682762;https://openalex.org/W4384944264;https://openalex.org/W4385342688;https://openalex.org/W4385835130;https://openalex.org/W4385884980;https://openalex.org/W4386803046;https://openalex.org/W4386859003;https://openalex.org/W4386961689;https://openalex.org/W4389254465;https://openalex.org/W4391279317;https://openalex.org/W4402040730;https://openalex.org/W6734298742;https://openalex.org/W6744623101;https://openalex.org/W6747851429;https://openalex.org/W6752140623;https://openalex.org/W6753024113;https://openalex.org/W6755400373;https://openalex.org/W6779397425;https://openalex.org/W6780281546;https://openalex.org/W6783001559;https://openalex.org/W6800879869;https://openalex.org/W6810097369;https://openalex.org/W6810864097;https://openalex.org/W6842497516;https://openalex.org/W6851301879;https://openalex.org/W6851579319;https://openalex.org/W6853477173;https://openalex.org/W6855493788;https://openalex.org/W6903323286,OPENALEX,"Samuel-Soma M. Ajibade, 2024, Intelligent Systems with Applications","Samuel-Soma M. Ajibade, 2024, Intelligent Systems with Applications"
+Risk assessment and management of excavation system based on fuzzy set theory and machine learning methods,2020,article,en,261,10.1016/j.autcon.2020.103490,https://openalex.org/W3117942735,,Song-Shun Lin;Shui‐Long Shen;Annan Zhou;Ye‐Shuang Xu,Song-Shun Lin;Shui‐Long Shen;Annan Zhou;Ye‐Shuang Xu,Shanghai Jiao Tong University;Shantou University;RMIT University;Shanghai Jiao Tong University,Song-Shun Lin,Automation in Construction,Automation in Construction,122,,103490,103490,,,Excavation;Automatic summarization;Warning system;Engineering;Risk management;Risk assessment;Fuzzy set;Fuzzy logic;Computer science;Construction engineering;Risk analysis (engineering);Artificial intelligence;Computer security;Medicine;Geotechnical engineering;Aerospace engineering;Economics;Management,https://openalex.org/W13108582;https://openalex.org/W1498436455;https://openalex.org/W1528620860;https://openalex.org/W1563088657;https://openalex.org/W1668569279;https://openalex.org/W1968275355;https://openalex.org/W1975481270;https://openalex.org/W1978894336;https://openalex.org/W1980452149;https://openalex.org/W1980564456;https://openalex.org/W1980841949;https://openalex.org/W1980973394;https://openalex.org/W1983210776;https://openalex.org/W2011702380;https://openalex.org/W2013932252;https://openalex.org/W2016179164;https://openalex.org/W2026410682;https://openalex.org/W2031703450;https://openalex.org/W2035025114;https://openalex.org/W2042102899;https://openalex.org/W2067627945;https://openalex.org/W2081849111;https://openalex.org/W2094259335;https://openalex.org/W2097879961;https://openalex.org/W2100548091;https://openalex.org/W2116321937;https://openalex.org/W2119821739;https://openalex.org/W2122145224;https://openalex.org/W2123754130;https://openalex.org/W2125068387;https://openalex.org/W2130016085;https://openalex.org/W2147228094;https://openalex.org/W2150220236;https://openalex.org/W2153635508;https://openalex.org/W2178939760;https://openalex.org/W2292359941;https://openalex.org/W2318485605;https://openalex.org/W2360069731;https://openalex.org/W2365060897;https://openalex.org/W2393686830;https://openalex.org/W2477128123;https://openalex.org/W2506768821;https://openalex.org/W2512479836;https://openalex.org/W2581855983;https://openalex.org/W2582146055;https://openalex.org/W2731637685;https://openalex.org/W2739589480;https://openalex.org/W2754789423;https://openalex.org/W2755885017;https://openalex.org/W2761171919;https://openalex.org/W2768163011;https://openalex.org/W2789555074;https://openalex.org/W2790304257;https://openalex.org/W2794572842;https://openalex.org/W2796224854;https://openalex.org/W2798149936;https://openalex.org/W2804432451;https://openalex.org/W2884762388;https://openalex.org/W2892755442;https://openalex.org/W2896286460;https://openalex.org/W2900292137;https://openalex.org/W2905944349;https://openalex.org/W2911964244;https://openalex.org/W2921922207;https://openalex.org/W2951787506;https://openalex.org/W2954289684;https://openalex.org/W2954397328;https://openalex.org/W2954621195;https://openalex.org/W2954869684;https://openalex.org/W2959787411;https://openalex.org/W2963929932;https://openalex.org/W2965614847;https://openalex.org/W2970263100;https://openalex.org/W2991653145;https://openalex.org/W2993667365;https://openalex.org/W2996045208;https://openalex.org/W2996806689;https://openalex.org/W3000372520;https://openalex.org/W3004047739;https://openalex.org/W3004765871;https://openalex.org/W3006637824;https://openalex.org/W3007454630;https://openalex.org/W3008829399;https://openalex.org/W3014784156;https://openalex.org/W3014913272;https://openalex.org/W3081821516;https://openalex.org/W3087472426;https://openalex.org/W3120421331;https://openalex.org/W3213390689;https://openalex.org/W4239510810;https://openalex.org/W6659258946;https://openalex.org/W6697397043;https://openalex.org/W6706664090;https://openalex.org/W6750624659;https://openalex.org/W6771592987;https://openalex.org/W6773626131,OPENALEX,"Song-Shun Lin, 2020, Automation in Construction","Song-Shun Lin, 2020, Automation in Construction"
+"Faradaic deionization technology: Insights from bibliometric, data mining and machine learning approaches",2023,article,en,26,10.1016/j.desal.2023.116715,https://openalex.org/W4378191097,,Ersin Aytaç;Alba Fombona‐Pascual;Julio J. Lado;Enrique García‐Quismondo;Jesús Palma;M. Khayet,Ersin Aytaç;Alba Fombona‐Pascual;Julio J. Lado;Enrique García‐Quismondo;Jesús Palma;M. Khayet,IMDEA Energy Institute;Universidad Complutense de Madrid;Bülent Ecevit University;IMDEA Energy Institute;IMDEA Energy Institute;IMDEA Energy Institute;IMDEA Energy Institute;Universidad Complutense de Madrid;IMDEA Water,Ersin Aytaç,Desalination,Desalination,563,,116715,116715,"Faradaic deionization (FDI) is an emerging water treatment technology based on electrodes able to remove ionic species from water by charge transfer reactions. It is a young and promising technology that has attracted much attention due to its large capacity to store ions and the high selectivity of the faradaic electrode materials. This study reviews published papers on FDI from different angles: data mining, bibliometric and machine learning. Metrics such as annual growth rate, most important journals, relevant authors, collaborations maps, sentiment and subjectivity analysis, similarity and clustering analysis were performed. The results indicated that the strong interest in FDI really started in 2016, China is the most active country in FDI, and Desalination is the most important journal publishing FDI articles. The word cloud method showed that the most preferred adopted words are deionization, capacitive, electrode, material. Sentiment analysis results indicated that most of the researchers are optimistic about FDI technology. The title similarity method revealed that FDI researchers were successful in proposing unique and appropriate titles. The clustering approach stressed that FDI literature is concentrated on electrode material production, desalination application, lithium recovery and comparison with CDI.",,Capacitive deionization;Cluster analysis;Foreign direct investment;Desalination;Sentiment analysis;Similarity (geometry);Computer science;Materials science;Data science;Artificial intelligence;Chemistry;Political science;Membrane;Biochemistry;Law;Image (mathematics),https://openalex.org/W176048179;https://openalex.org/W1066524152;https://openalex.org/W1237504658;https://openalex.org/W1836098121;https://openalex.org/W1906455749;https://openalex.org/W1968015955;https://openalex.org/W1969462094;https://openalex.org/W1970836227;https://openalex.org/W1975344283;https://openalex.org/W1986720183;https://openalex.org/W1988414275;https://openalex.org/W1989404572;https://openalex.org/W1993775618;https://openalex.org/W1994497148;https://openalex.org/W1996303771;https://openalex.org/W1996945965;https://openalex.org/W2000879141;https://openalex.org/W2006091540;https://openalex.org/W2008484484;https://openalex.org/W2010076111;https://openalex.org/W2011768042;https://openalex.org/W2012685235;https://openalex.org/W2019297132;https://openalex.org/W2021858012;https://openalex.org/W2024006963;https://openalex.org/W2025691458;https://openalex.org/W2035659989;https://openalex.org/W2038748852;https://openalex.org/W2052067778;https://openalex.org/W2055681266;https://openalex.org/W2063777275;https://openalex.org/W2068122403;https://openalex.org/W2074374979;https://openalex.org/W2074868396;https://openalex.org/W2083428794;https://openalex.org/W2091898061;https://openalex.org/W2126739328;https://openalex.org/W2135971056;https://openalex.org/W2140379557;https://openalex.org/W2149350278;https://openalex.org/W2205400247;https://openalex.org/W2238394926;https://openalex.org/W2252188650;https://openalex.org/W2253936196;https://openalex.org/W2275473094;https://openalex.org/W2280518779;https://openalex.org/W2314035882;https://openalex.org/W2330142549;https://openalex.org/W2338639184;https://openalex.org/W2340584206;https://openalex.org/W2353107396;https://openalex.org/W2406812346;https://openalex.org/W2424128135;https://openalex.org/W2471508578;https://openalex.org/W2479339242;https://openalex.org/W2517972527;https://openalex.org/W2546971341;https://openalex.org/W2550284290;https://openalex.org/W2554817056;https://openalex.org/W2566958514;https://openalex.org/W2594395214;https://openalex.org/W2605171342;https://openalex.org/W2606497550;https://openalex.org/W2608195986;https://openalex.org/W2610426651;https://openalex.org/W2618288203;https://openalex.org/W2624553512;https://openalex.org/W2624618000;https://openalex.org/W2626817146;https://openalex.org/W2656940947;https://openalex.org/W2727759551;https://openalex.org/W2735170719;https://openalex.org/W2738863918;https://openalex.org/W2738938850;https://openalex.org/W2746285683;https://openalex.org/W2748523021;https://openalex.org/W2752681981;https://openalex.org/W2755950973;https://openalex.org/W2757458735;https://openalex.org/W2758840417;https://openalex.org/W2763535450;https://openalex.org/W2765377385;https://openalex.org/W2765431835;https://openalex.org/W2770361251;https://openalex.org/W2775683773;https://openalex.org/W2779258421;https://openalex.org/W2779916995;https://openalex.org/W2783504435;https://openalex.org/W2784339318;https://openalex.org/W2791589216;https://openalex.org/W2792952649;https://openalex.org/W2800224336;https://openalex.org/W2800330591;https://openalex.org/W2801877876;https://openalex.org/W2806856519;https://openalex.org/W2881035747;https://openalex.org/W2886745706;https://openalex.org/W2894953178;https://openalex.org/W2898103928;https://openalex.org/W2898585458;https://openalex.org/W2899728012;https://openalex.org/W2903541381;https://openalex.org/W2904516526;https://openalex.org/W2905091597;https://openalex.org/W2906821278;https://openalex.org/W2907239592;https://openalex.org/W2911536952;https://openalex.org/W2912550085;https://openalex.org/W2914136884;https://openalex.org/W2914194779;https://openalex.org/W2918144445;https://openalex.org/W2920015124;https://openalex.org/W2940627907;https://openalex.org/W2942739130;https://openalex.org/W2946345706;https://openalex.org/W2946490887;https://openalex.org/W2946525051;https://openalex.org/W2947287155;https://openalex.org/W2949416787;https://openalex.org/W2950113520;https://openalex.org/W2951354963;https://openalex.org/W2951542985;https://openalex.org/W2954882071;https://openalex.org/W2964225426;https://openalex.org/W2964291985;https://openalex.org/W2964806303;https://openalex.org/W2964818252;https://openalex.org/W2965963417;https://openalex.org/W2966302851;https://openalex.org/W2969486998;https://openalex.org/W2970641574;https://openalex.org/W2971287826;https://openalex.org/W2971494284;https://openalex.org/W2971766710;https://openalex.org/W2975923053;https://openalex.org/W2982472128;https://openalex.org/W2982511252;https://openalex.org/W2983052946;https://openalex.org/W2983447315;https://openalex.org/W2986947959;https://openalex.org/W2987106497;https://openalex.org/W2988911412;https://openalex.org/W2989447618;https://openalex.org/W2990363050;https://openalex.org/W2992182351;https://openalex.org/W2993115787;https://openalex.org/W2994830491;https://openalex.org/W2998549577;https://openalex.org/W2999970675;https://openalex.org/W3000936913;https://openalex.org/W3001653571;https://openalex.org/W3004493883;https://openalex.org/W3005387570;https://openalex.org/W3005820940;https://openalex.org/W3005979474;https://openalex.org/W3006119721;https://openalex.org/W3006811001;https://openalex.org/W3008723322;https://openalex.org/W3014436586;https://openalex.org/W3016292053;https://openalex.org/W3019089410;https://openalex.org/W3023309979;https://openalex.org/W3024696014;https://openalex.org/W3025325252;https://openalex.org/W3027863412;https://openalex.org/W3040087062;https://openalex.org/W3044792436;https://openalex.org/W3045495327;https://openalex.org/W3048928754;https://openalex.org/W3081345982;https://openalex.org/W3081855487;https://openalex.org/W3081886688;https://openalex.org/W3082442858;https://openalex.org/W3085405290;https://openalex.org/W3086152157;https://openalex.org/W3089365158;https://openalex.org/W3091732986;https://openalex.org/W3093197935;https://openalex.org/W3095276105;https://openalex.org/W3095461852;https://openalex.org/W3101049789;https://openalex.org/W3102294904;https://openalex.org/W3105081032;https://openalex.org/W3109965900;https://openalex.org/W3110588774;https://openalex.org/W3111874586;https://openalex.org/W3113125541;https://openalex.org/W3117342628;https://openalex.org/W3118448442;https://openalex.org/W3118790623;https://openalex.org/W3122476435;https://openalex.org/W3125361975;https://openalex.org/W3126810894;https://openalex.org/W3128693822;https://openalex.org/W3131860561;https://openalex.org/W3132225270;https://openalex.org/W3133304993;https://openalex.org/W3134010651;https://openalex.org/W3134367201;https://openalex.org/W3136315747;https://openalex.org/W3139472465;https://openalex.org/W3140419071;https://openalex.org/W3146556937;https://openalex.org/W3148734612;https://openalex.org/W3149910327;https://openalex.org/W3157053851;https://openalex.org/W3157428252;https://openalex.org/W3158114330;https://openalex.org/W3159517971;https://openalex.org/W3159948792;https://openalex.org/W3161118747;https://openalex.org/W3162153788;https://openalex.org/W3162660203;https://openalex.org/W3165351427;https://openalex.org/W3171125357;https://openalex.org/W3172184706;https://openalex.org/W3173821611;https://openalex.org/W3176028843;https://openalex.org/W3176701355;https://openalex.org/W3187135790;https://openalex.org/W3190059762;https://openalex.org/W3192086612;https://openalex.org/W3196616918;https://openalex.org/W3196978786;https://openalex.org/W3197619833;https://openalex.org/W3197951309;https://openalex.org/W3197972337;https://openalex.org/W3199121664;https://openalex.org/W3200441390;https://openalex.org/W3200967804;https://openalex.org/W3202359802;https://openalex.org/W3206921000;https://openalex.org/W3208978091;https://openalex.org/W3210781092;https://openalex.org/W3210980937;https://openalex.org/W3211137022;https://openalex.org/W3211467098;https://openalex.org/W3213032976;https://openalex.org/W3214179049;https://openalex.org/W3215736224;https://openalex.org/W3217759393;https://openalex.org/W4200292924;https://openalex.org/W4200463245;https://openalex.org/W4200492501;https://openalex.org/W4206785894;https://openalex.org/W4210528010;https://openalex.org/W4210604354;https://openalex.org/W4210744621;https://openalex.org/W4210818890;https://openalex.org/W4211137729;https://openalex.org/W4213425106;https://openalex.org/W4220788531;https://openalex.org/W4223491110;https://openalex.org/W4224227048;https://openalex.org/W4224231870;https://openalex.org/W4224326353;https://openalex.org/W4224911872;https://openalex.org/W4225296409;https://openalex.org/W4251743418;https://openalex.org/W4252260045;https://openalex.org/W4280501685;https://openalex.org/W4280634826;https://openalex.org/W4281483917;https://openalex.org/W4282923717;https://openalex.org/W4283012931;https://openalex.org/W4283019527;https://openalex.org/W4283072755;https://openalex.org/W4283278374;https://openalex.org/W4283760569;https://openalex.org/W4283803784;https://openalex.org/W4284962000;https://openalex.org/W4284963736;https://openalex.org/W4285044394;https://openalex.org/W4285081995;https://openalex.org/W4285187199;https://openalex.org/W4285253765;https://openalex.org/W4285606571;https://openalex.org/W4286255294;https://openalex.org/W4288068490;https://openalex.org/W4288702943;https://openalex.org/W4289222457;https://openalex.org/W4289933414;https://openalex.org/W4289948385;https://openalex.org/W4290375219;https://openalex.org/W4291238086;https://openalex.org/W4291570752;https://openalex.org/W4292850404;https://openalex.org/W4292939418;https://openalex.org/W4293455522;https://openalex.org/W4293688670;https://openalex.org/W4295008071;https://openalex.org/W4295012034;https://openalex.org/W4295660538;https://openalex.org/W4295736907;https://openalex.org/W4296285943;https://openalex.org/W4297499102;https://openalex.org/W4302278403;https://openalex.org/W4303986239;https://openalex.org/W4308151347;https://openalex.org/W4308192762;https://openalex.org/W4308329912;https://openalex.org/W4308428651;https://openalex.org/W4309244153;https://openalex.org/W4309951250;https://openalex.org/W4311778840;https://openalex.org/W4312431360;https://openalex.org/W4312448015;https://openalex.org/W4313216166;https://openalex.org/W4313256571;https://openalex.org/W4313680861;https://openalex.org/W4315434377;https://openalex.org/W4315650491;https://openalex.org/W4318455113;https://openalex.org/W4318615231;https://openalex.org/W4319870294;https://openalex.org/W4320472613;https://openalex.org/W4321354435;https://openalex.org/W4321378381;https://openalex.org/W4323664192;https://openalex.org/W4327569504;https://openalex.org/W4362676216;https://openalex.org/W6667437309;https://openalex.org/W6724998158;https://openalex.org/W6740136252;https://openalex.org/W6745837215;https://openalex.org/W6767049115;https://openalex.org/W6767947357;https://openalex.org/W6769704189;https://openalex.org/W6770205254;https://openalex.org/W6771464234;https://openalex.org/W6772088315;https://openalex.org/W6784953413;https://openalex.org/W6794502152;https://openalex.org/W6797929967;https://openalex.org/W6803844042;https://openalex.org/W6807173645;https://openalex.org/W6810258704;https://openalex.org/W6838560358;https://openalex.org/W6839363739;https://openalex.org/W6839797597;https://openalex.org/W6842962515;https://openalex.org/W6850076571,OPENALEX,"Ersin Aytaç, 2023, Desalination-a","Ersin Aytaç, 2023, Desalination"
+Machine learning in antibacterial discovery and development: A bibliometric and network analysis of research hotspots and trends,2023,article,en,25,10.1016/j.compbiomed.2023.106638,https://openalex.org/W4319441392,36764155,Karel Diéguez‐Santana;Humberto González‐Díaz,Karel Diéguez‐Santana;Humberto González‐Díaz,University of the Basque Country;Universidad Regional Amazónica IKIAM;Ikerbasque;University of the Basque Country,Karel Diéguez‐Santana,Computers in Biology and Medicine,Computers in Biology and Medicine,155,,106638,106638,,,Cheminformatics;Linkage (software);Computer science;Data science;Big data;Field (mathematics);Scopus;Productivity;Artificial intelligence;Data mining;Bioinformatics;MEDLINE;Chemistry;Mathematics;Pure mathematics;Gene;Macroeconomics;Biochemistry;Biology;Economics,https://openalex.org/W1021000864;https://openalex.org/W1583410561;https://openalex.org/W1950993160;https://openalex.org/W1986157690;https://openalex.org/W2029088861;https://openalex.org/W2037521840;https://openalex.org/W2039457532;https://openalex.org/W2081413516;https://openalex.org/W2085102470;https://openalex.org/W2086249877;https://openalex.org/W2093543476;https://openalex.org/W2112411768;https://openalex.org/W2129115651;https://openalex.org/W2143283561;https://openalex.org/W2150220236;https://openalex.org/W2150258411;https://openalex.org/W2150962198;https://openalex.org/W2155997698;https://openalex.org/W2163646378;https://openalex.org/W2170482677;https://openalex.org/W2171490806;https://openalex.org/W2191867853;https://openalex.org/W2273267066;https://openalex.org/W2345209196;https://openalex.org/W2550329658;https://openalex.org/W2567231876;https://openalex.org/W2583907533;https://openalex.org/W2693176153;https://openalex.org/W2734366854;https://openalex.org/W2754494334;https://openalex.org/W2755950973;https://openalex.org/W2767711842;https://openalex.org/W2775714759;https://openalex.org/W2793710025;https://openalex.org/W2896298459;https://openalex.org/W2898861515;https://openalex.org/W2901930347;https://openalex.org/W2921107389;https://openalex.org/W2937307539;https://openalex.org/W2944680032;https://openalex.org/W2954214838;https://openalex.org/W2959938226;https://openalex.org/W2963454409;https://openalex.org/W2979610116;https://openalex.org/W2985684656;https://openalex.org/W2989739077;https://openalex.org/W2990450011;https://openalex.org/W3007309629;https://openalex.org/W3036139765;https://openalex.org/W3036656090;https://openalex.org/W3037654077;https://openalex.org/W3094089973;https://openalex.org/W3107222016;https://openalex.org/W3131345956;https://openalex.org/W3139613220;https://openalex.org/W3163901847;https://openalex.org/W3181204626;https://openalex.org/W3184778096;https://openalex.org/W3193226555;https://openalex.org/W3207944298;https://openalex.org/W4205739101;https://openalex.org/W4207009226;https://openalex.org/W4281675596;https://openalex.org/W6670944780;https://openalex.org/W6672146451;https://openalex.org/W6705035250;https://openalex.org/W6744394771;https://openalex.org/W6762168938;https://openalex.org/W6799240867,OPENALEX,"Karel Diéguez‐Santana, 2023, Computers in Biology and Medicine","Karel Diéguez‐Santana, 2023, Computers in Biology and Medicine"
+Machine and deep learning methods for concrete strength Prediction: A bibliometric and content analysis review of research trends and future directions,2024,article,en,45,10.1016/j.asoc.2024.111956,https://openalex.org/W4400412165,,Raman Kumar;Essam Althaqafi;S. Gopal Krishna Patro;Vladimir Šimić;Atul Babbar;Dragan Pamučar;Sanjeev Kumar Singh;Amit Verma,Raman Kumar;Essam Althaqafi;S. Gopal Krishna Patro;Vladimir Šimić;Atul Babbar;Dragan Pamučar;Sanjeev Kumar Singh;Amit Verma,Guru Nanak Dev University;King Khalid University;Woxsen School of Business;Korea University;University of Belgrade;Yuan Ze University;Shree Guru Gobind Singh Tricentenary University;Western Caspian University;University of Belgrade;Sunway University;Galgotias University;Chandigarh University,Raman Kumar,Applied Soft Computing,Applied Soft Computing,164,,111956,111956,,,Computer science;Bibliometrics;Content (measure theory);Artificial intelligence;Machine learning;Data mining;Mathematics;Mathematical analysis,https://openalex.org/W1752416898;https://openalex.org/W1969177791;https://openalex.org/W1970404859;https://openalex.org/W2016166618;https://openalex.org/W2038808304;https://openalex.org/W2041128263;https://openalex.org/W2108584103;https://openalex.org/W2109759398;https://openalex.org/W2167849100;https://openalex.org/W2568988948;https://openalex.org/W2579526390;https://openalex.org/W2755950973;https://openalex.org/W2758887415;https://openalex.org/W2788697198;https://openalex.org/W2801822775;https://openalex.org/W2893769615;https://openalex.org/W2900511825;https://openalex.org/W2945198840;https://openalex.org/W2947180465;https://openalex.org/W2963963144;https://openalex.org/W2964938350;https://openalex.org/W2965943994;https://openalex.org/W2976353133;https://openalex.org/W2991110000;https://openalex.org/W2993891764;https://openalex.org/W3000461720;https://openalex.org/W3001491100;https://openalex.org/W3003820558;https://openalex.org/W3004315419;https://openalex.org/W3007888137;https://openalex.org/W3008035016;https://openalex.org/W3009211770;https://openalex.org/W3017605838;https://openalex.org/W3019001272;https://openalex.org/W3032147979;https://openalex.org/W3035846893;https://openalex.org/W3038033549;https://openalex.org/W3041415599;https://openalex.org/W3042860268;https://openalex.org/W3043160233;https://openalex.org/W3045019663;https://openalex.org/W3046976578;https://openalex.org/W3087991416;https://openalex.org/W3090938765;https://openalex.org/W3092657053;https://openalex.org/W3093895805;https://openalex.org/W3093946813;https://openalex.org/W3094015353;https://openalex.org/W3094556934;https://openalex.org/W3100444376;https://openalex.org/W3110396486;https://openalex.org/W3112855594;https://openalex.org/W3125850143;https://openalex.org/W3126148011;https://openalex.org/W3126997349;https://openalex.org/W3128806178;https://openalex.org/W3129045180;https://openalex.org/W3129088426;https://openalex.org/W3129992203;https://openalex.org/W3131046868;https://openalex.org/W3133841051;https://openalex.org/W3134190898;https://openalex.org/W3134953049;https://openalex.org/W3137844039;https://openalex.org/W3145107647;https://openalex.org/W3153764057;https://openalex.org/W3160856016;https://openalex.org/W3161469614;https://openalex.org/W3169818679;https://openalex.org/W3181187353;https://openalex.org/W3184697131;https://openalex.org/W3185008998;https://openalex.org/W3185551827;https://openalex.org/W3187172170;https://openalex.org/W3190592576;https://openalex.org/W3190908459;https://openalex.org/W3191416055;https://openalex.org/W3194788926;https://openalex.org/W3196351205;https://openalex.org/W3197458631;https://openalex.org/W3198870578;https://openalex.org/W3199406548;https://openalex.org/W3202180088;https://openalex.org/W3203033246;https://openalex.org/W3203897832;https://openalex.org/W3204631755;https://openalex.org/W3204723807;https://openalex.org/W3208822718;https://openalex.org/W3209858780;https://openalex.org/W3212595790;https://openalex.org/W3213767016;https://openalex.org/W3215115172;https://openalex.org/W3216342379;https://openalex.org/W3217253818;https://openalex.org/W4200036493;https://openalex.org/W4200118933;https://openalex.org/W4200132597;https://openalex.org/W4200242438;https://openalex.org/W4200440573;https://openalex.org/W4200624155;https://openalex.org/W4205161115;https://openalex.org/W4205533860;https://openalex.org/W4205617251;https://openalex.org/W4205709586;https://openalex.org/W4205773956;https://openalex.org/W4206500412;https://openalex.org/W4206579524;https://openalex.org/W4210798959;https://openalex.org/W4213016846;https://openalex.org/W4213066824;https://openalex.org/W4214839102;https://openalex.org/W4214872695;https://openalex.org/W4214895391;https://openalex.org/W4220682081;https://openalex.org/W4221013794;https://openalex.org/W4221019965;https://openalex.org/W4221041875;https://openalex.org/W4221092976;https://openalex.org/W4223602733;https://openalex.org/W4223935544;https://openalex.org/W4224282170;https://openalex.org/W4224981079;https://openalex.org/W4224982712;https://openalex.org/W4225008495;https://openalex.org/W4225311815;https://openalex.org/W4226483038;https://openalex.org/W4229365023;https://openalex.org/W4280548161;https://openalex.org/W4280650307;https://openalex.org/W4281479674;https://openalex.org/W4281483208;https://openalex.org/W4281625530;https://openalex.org/W4281644690;https://openalex.org/W4281684416;https://openalex.org/W4281754927;https://openalex.org/W4281768943;https://openalex.org/W4281792942;https://openalex.org/W4282932299;https://openalex.org/W4283031888;https://openalex.org/W4283393429;https://openalex.org/W4283579537;https://openalex.org/W4283767878;https://openalex.org/W4283810422;https://openalex.org/W4284969977;https://openalex.org/W4284994804;https://openalex.org/W4286717467;https://openalex.org/W4288081194;https://openalex.org/W4288699230;https://openalex.org/W4293770287;https://openalex.org/W4295213473;https://openalex.org/W4296456583;https://openalex.org/W4297182760;https://openalex.org/W4297362481;https://openalex.org/W4303444910;https://openalex.org/W4303832712;https://openalex.org/W4307635367;https://openalex.org/W4308173392;https://openalex.org/W4308335662;https://openalex.org/W4308444227;https://openalex.org/W4308489139;https://openalex.org/W4308548014;https://openalex.org/W4309531920;https://openalex.org/W4309709481;https://openalex.org/W4310553658;https://openalex.org/W4312107469;https://openalex.org/W4312194846;https://openalex.org/W4312208818;https://openalex.org/W4313338210;https://openalex.org/W4313399035;https://openalex.org/W4313479836;https://openalex.org/W4313584273;https://openalex.org/W4313595048;https://openalex.org/W4319844720;https://openalex.org/W4320036601;https://openalex.org/W4320077653;https://openalex.org/W4320728788;https://openalex.org/W4321499153;https://openalex.org/W4323075560;https://openalex.org/W4323356013;https://openalex.org/W4324131062;https://openalex.org/W4327718583;https://openalex.org/W4361223604;https://openalex.org/W4362522290;https://openalex.org/W4362576983;https://openalex.org/W4362640536;https://openalex.org/W4365514547;https://openalex.org/W4366134194;https://openalex.org/W4366976319;https://openalex.org/W4367043373;https://openalex.org/W4367048660;https://openalex.org/W4367186461;https://openalex.org/W4379206808;https://openalex.org/W4379529641;https://openalex.org/W4379538285;https://openalex.org/W4379618230;https://openalex.org/W4379794736;https://openalex.org/W4379875585;https://openalex.org/W4380368628;https://openalex.org/W4381546988;https://openalex.org/W4381856179;https://openalex.org/W4382279793;https://openalex.org/W4382358751;https://openalex.org/W4382364423;https://openalex.org/W4382449164;https://openalex.org/W4383227779;https://openalex.org/W4383312054;https://openalex.org/W4383501031;https://openalex.org/W4383532822;https://openalex.org/W4383868250;https://openalex.org/W4383894027;https://openalex.org/W4385387205;https://openalex.org/W4385494044;https://openalex.org/W4385517904;https://openalex.org/W4385525443;https://openalex.org/W4385603086;https://openalex.org/W4385737100;https://openalex.org/W4385891756;https://openalex.org/W4386238170;https://openalex.org/W4387083436;https://openalex.org/W4387468319;https://openalex.org/W4388489115;https://openalex.org/W4390598984;https://openalex.org/W4392807613;https://openalex.org/W4394848567;https://openalex.org/W6766775896;https://openalex.org/W6771597246;https://openalex.org/W6774454877;https://openalex.org/W6780735162;https://openalex.org/W6783427748;https://openalex.org/W6785037786;https://openalex.org/W6785118511;https://openalex.org/W6787126016;https://openalex.org/W6789997903;https://openalex.org/W6790758699;https://openalex.org/W6790877678;https://openalex.org/W6791683422;https://openalex.org/W6791957995;https://openalex.org/W6794776160;https://openalex.org/W6799067730;https://openalex.org/W6801616463;https://openalex.org/W6801783429;https://openalex.org/W6802387875;https://openalex.org/W6802698893;https://openalex.org/W6805379295;https://openalex.org/W6805403522;https://openalex.org/W6805789553;https://openalex.org/W6805874999;https://openalex.org/W6806692521;https://openalex.org/W6809292378;https://openalex.org/W6810029958;https://openalex.org/W6810155360;https://openalex.org/W6838026937;https://openalex.org/W6838417083;https://openalex.org/W6838726246;https://openalex.org/W6838863222;https://openalex.org/W6838924461;https://openalex.org/W6839241733;https://openalex.org/W6839305549;https://openalex.org/W6839550524;https://openalex.org/W6840310978;https://openalex.org/W6845518042;https://openalex.org/W6845975234;https://openalex.org/W6846350394;https://openalex.org/W6846433626;https://openalex.org/W6847049693;https://openalex.org/W6847627814;https://openalex.org/W6849499857;https://openalex.org/W6850743861;https://openalex.org/W6851465037;https://openalex.org/W6851798287;https://openalex.org/W6851818028;https://openalex.org/W6851902961;https://openalex.org/W6852273281;https://openalex.org/W6853058599;https://openalex.org/W6853161786;https://openalex.org/W6853354698;https://openalex.org/W6853393746;https://openalex.org/W6853469598;https://openalex.org/W6854252502;https://openalex.org/W6854801750;https://openalex.org/W6857323373;https://openalex.org/W6858279167;https://openalex.org/W6864684198;https://openalex.org/W6963860422,OPENALEX,"Raman Kumar, 2024, Applied Soft Computing","Raman Kumar, 2024, Applied Soft Computing"
+A Systematic Review of COVID-19 Geographical Research: Machine Learning and Bibliometric Approach,2022,review,en,23,10.1080/24694452.2022.2130143,https://openalex.org/W4307321660,,Jinglun Xi;Xiaolu Liu;Jianghao Wang;Yao Ling;Chenghu Zhou,Jinglun Xi;Xiaolu Liu;Jianghao Wang;Yao Ling;Chenghu Zhou,Chinese Academy of Sciences;Institute of Geographic Sciences and Natural Resources Research;University of Chinese Academy of Sciences;Chinese Academy of Sciences;Institute of Geographic Sciences and Natural Resources Research;University of Chinese Academy of Sciences;Chinese Academy of Sciences;Institute of Geographic Sciences and Natural Resources Research;University of Chinese Academy of Sciences;Chinese Academy of Sciences;Institute of Geographic Sciences and Natural Resources Research;University of Chinese Academy of Sciences;Chinese Academy of Sciences;Institute of Geographic Sciences and Natural Resources Research;University of Chinese Academy of Sciences,Jinglun Xi,Annals of the American Association of Geographers,Annals of the American Association of Geographers,113,3,581,598,"The rampant COVID-19 pandemic swept the globe rapidly in 2020, causing a tremendous impact on human health and the global economy. This pandemic has stimulated an explosive increase of related studies in various disciplines, including geography, which has contributed to pandemic mitigation with a unique spatiotemporal perspective. Reviewing relevant research has implications for understanding the contribution of geography to COVID-19 research. The sheer volume of publications, however, makes the review work more challenging. Here we use the support vector machine and term frequency-inverse document frequency algorithm to identify geographical studies and bibliometrics to discover primary research themes, accelerating the systematic review of COVID-19 geographical research. We confirmed 1, 171 geographical papers about COVID-19 published from 1 January 2020 to 31 December 2021, of which a large proportion are in the areas of geographic information systems (GIS) and human geography. We identified four main research themes—the spread of the pandemic, social management, public behavior, and impacts of the pandemic—embodying the contribution of geography. Our findings show the feasibility of machine learning methods in reviewing large-scale literature and highlight the value of geography in the fight against COVID-19. This review could provide references for decision makers to formulate policies combined with spatial thinking and for scholars to find future research directions in which they can strengthen collaboration with geographers.",,Pandemic;Bibliometrics;Globe;Coronavirus disease 2019 (COVID-19);Geography;Data science;Regional science;Geographic information system;Human geography;Social science;Sociology;Cartography;Economic geography;Computer science;Medicine;Library science;Infectious disease (medical specialty);Pathology;Disease;Ophthalmology,https://openalex.org/W1021000864;https://openalex.org/W1973749534;https://openalex.org/W1988273412;https://openalex.org/W2019431510;https://openalex.org/W2150874198;https://openalex.org/W2755950973;https://openalex.org/W2896775444;https://openalex.org/W2902306014;https://openalex.org/W2921659045;https://openalex.org/W3016717403;https://openalex.org/W3016927051;https://openalex.org/W3019445951;https://openalex.org/W3021755432;https://openalex.org/W3022841838;https://openalex.org/W3023029957;https://openalex.org/W3026146554;https://openalex.org/W3033503930;https://openalex.org/W3033845183;https://openalex.org/W3035597798;https://openalex.org/W3035779462;https://openalex.org/W3036828051;https://openalex.org/W3038273726;https://openalex.org/W3039144150;https://openalex.org/W3039399227;https://openalex.org/W3041985295;https://openalex.org/W3042533667;https://openalex.org/W3043220749;https://openalex.org/W3045244566;https://openalex.org/W3046822448;https://openalex.org/W3047281328;https://openalex.org/W3047456365;https://openalex.org/W3058765000;https://openalex.org/W3080452576;https://openalex.org/W3081809733;https://openalex.org/W3082062151;https://openalex.org/W3087868682;https://openalex.org/W3088139267;https://openalex.org/W3088969476;https://openalex.org/W3092274689;https://openalex.org/W3092986825;https://openalex.org/W3093121799;https://openalex.org/W3094489852;https://openalex.org/W3094643898;https://openalex.org/W3094827779;https://openalex.org/W3095667454;https://openalex.org/W3096272784;https://openalex.org/W3100188676;https://openalex.org/W3106264152;https://openalex.org/W3107819211;https://openalex.org/W3108491385;https://openalex.org/W3111564425;https://openalex.org/W3111745571;https://openalex.org/W3111767993;https://openalex.org/W3111880169;https://openalex.org/W3112073971;https://openalex.org/W3115548486;https://openalex.org/W3116298071;https://openalex.org/W3117378346;https://openalex.org/W3118643190;https://openalex.org/W3125061193;https://openalex.org/W3125897910;https://openalex.org/W3126811273;https://openalex.org/W3127125777;https://openalex.org/W3128235268;https://openalex.org/W3130026954;https://openalex.org/W3132169495;https://openalex.org/W3133767462;https://openalex.org/W3134895645;https://openalex.org/W3135690257;https://openalex.org/W3135839523;https://openalex.org/W3135896764;https://openalex.org/W3136361928;https://openalex.org/W3136669015;https://openalex.org/W3137842555;https://openalex.org/W3138200732;https://openalex.org/W3139110099;https://openalex.org/W3139385319;https://openalex.org/W3140554209;https://openalex.org/W3140918691;https://openalex.org/W3143968054;https://openalex.org/W3144945315;https://openalex.org/W3146803533;https://openalex.org/W3153907075;https://openalex.org/W3153938949;https://openalex.org/W3153954796;https://openalex.org/W3154193433;https://openalex.org/W3155699756;https://openalex.org/W3156297748;https://openalex.org/W3158895480;https://openalex.org/W3162802638;https://openalex.org/W3163076983;https://openalex.org/W3164609737;https://openalex.org/W3164766304;https://openalex.org/W3165870311;https://openalex.org/W3166174067;https://openalex.org/W3171584213;https://openalex.org/W3175964015;https://openalex.org/W3176243336;https://openalex.org/W3183607613;https://openalex.org/W3183741867;https://openalex.org/W3184526714;https://openalex.org/W3184964873;https://openalex.org/W3185864622;https://openalex.org/W3189548734;https://openalex.org/W3193258988;https://openalex.org/W3193447245;https://openalex.org/W3194700959;https://openalex.org/W3194739479;https://openalex.org/W3197255421;https://openalex.org/W3197614927;https://openalex.org/W3198092367;https://openalex.org/W3199673685;https://openalex.org/W3200799815;https://openalex.org/W3200898723;https://openalex.org/W3205521780;https://openalex.org/W3205579578;https://openalex.org/W3205857559;https://openalex.org/W3206397466;https://openalex.org/W3206979440;https://openalex.org/W3210905992;https://openalex.org/W3212449458;https://openalex.org/W3212642323;https://openalex.org/W3215812863;https://openalex.org/W3216178313;https://openalex.org/W3216289208;https://openalex.org/W4200610001;https://openalex.org/W4220790135;https://openalex.org/W4225528804;https://openalex.org/W4235271607;https://openalex.org/W4239510810,OPENALEX,"Jinglun Xi, 2022, Annals of the American Association of Geographers","Jinglun Xi, 2022, Annals of the American Association of Geographers"
+A bibliometric analysis and visualization of blockchain,2020,article,en,188,10.1016/j.future.2020.10.023,https://openalex.org/W3099441483,,Yiming Guo;Zhen-Ling Huang;Ji Guo;Xingrong Guo;Hua Li;Mengyu Liu;Safa Ezzeddine;Mpeoane Judith Nkeli,Yiming Guo;Zhen-Ling Huang;Ji Guo;Xingrong Guo;Hua Li;Mengyu Liu;Safa Ezzeddine;Mpeoane Judith Nkeli,Shanghai Maritime University;Shanghai Maritime University;Shanghai Maritime University;Shanghai Maritime University;Shanghai Maritime University;Shanghai Maritime University;Shanghai Maritime University;Shanghai Maritime University,Yiming Guo,Future Generation Computer Systems,Future Generation Computer Systems,116,,316,332,,,Blockchain;Computer science;Data science;Status quo;Bibliometrics;World Wide Web;Computer security;Political science;Law,https://openalex.org/W1559136758;https://openalex.org/W1660562555;https://openalex.org/W1990126021;https://openalex.org/W2022932831;https://openalex.org/W2043976122;https://openalex.org/W2062391261;https://openalex.org/W2099028485;https://openalex.org/W2100484636;https://openalex.org/W2116090163;https://openalex.org/W2121210812;https://openalex.org/W2150220236;https://openalex.org/W2156385131;https://openalex.org/W2169710852;https://openalex.org/W2182035090;https://openalex.org/W2183126124;https://openalex.org/W2192031548;https://openalex.org/W2290426788;https://openalex.org/W2335755599;https://openalex.org/W2377959005;https://openalex.org/W2392113277;https://openalex.org/W2544710688;https://openalex.org/W2563930052;https://openalex.org/W2566758857;https://openalex.org/W2588122799;https://openalex.org/W2588585573;https://openalex.org/W2596115488;https://openalex.org/W2604122668;https://openalex.org/W2619984247;https://openalex.org/W2629433172;https://openalex.org/W2729396025;https://openalex.org/W2747467399;https://openalex.org/W2764198340;https://openalex.org/W2768696376;https://openalex.org/W2771747728;https://openalex.org/W2783275103;https://openalex.org/W2787263245;https://openalex.org/W2789444712;https://openalex.org/W2790670692;https://openalex.org/W2791289577;https://openalex.org/W2791572971;https://openalex.org/W2795085730;https://openalex.org/W2797816609;https://openalex.org/W2806665540;https://openalex.org/W2809143401;https://openalex.org/W2810652557;https://openalex.org/W2888442703;https://openalex.org/W2888566981;https://openalex.org/W2898665361;https://openalex.org/W2900285243;https://openalex.org/W2900773116;https://openalex.org/W2900838458;https://openalex.org/W2904417349;https://openalex.org/W2912326896;https://openalex.org/W2912607954;https://openalex.org/W2914735843;https://openalex.org/W2914839923;https://openalex.org/W2918925950;https://openalex.org/W2921510663;https://openalex.org/W2933878133;https://openalex.org/W2952888913;https://openalex.org/W2954174894;https://openalex.org/W2955437544;https://openalex.org/W2957347123;https://openalex.org/W2963507231;https://openalex.org/W2964379003;https://openalex.org/W2976581604;https://openalex.org/W2979718284;https://openalex.org/W2979808856;https://openalex.org/W2979955455;https://openalex.org/W2981518695;https://openalex.org/W2989256138;https://openalex.org/W2989970371;https://openalex.org/W2995351844;https://openalex.org/W2997208348;https://openalex.org/W2997777902;https://openalex.org/W2998156057;https://openalex.org/W2998420630;https://openalex.org/W2999470653;https://openalex.org/W2999989552;https://openalex.org/W3002273207;https://openalex.org/W3016402324;https://openalex.org/W3027300826;https://openalex.org/W3027805066;https://openalex.org/W3151748982;https://openalex.org/W4238591974;https://openalex.org/W4248175462;https://openalex.org/W6648012760;https://openalex.org/W6657449812;https://openalex.org/W6675090866;https://openalex.org/W6687654962;https://openalex.org/W6731657173;https://openalex.org/W6738992178;https://openalex.org/W6752193973;https://openalex.org/W6753574358;https://openalex.org/W6758299890;https://openalex.org/W6759076272;https://openalex.org/W6765557928;https://openalex.org/W6772759383;https://openalex.org/W6793285265;https://openalex.org/W7000524901;https://openalex.org/W7030175060,OPENALEX,"Yiming Guo, 2020, Future Generation Computer Systems","Yiming Guo, 2020, Future Generation Computer Systems"
+Bibliometric analysis of the published literature on machine learning in economics and econometrics,2022,article,en,16,10.1007/s13278-022-00916-6,https://openalex.org/W4292572075,35971409,Ebru Çağlayan Akay;Naciye Tuba Yılmaz;Burcu KOCARIK GACAR,Ebru Çağlayan Akay;Naciye Tuba Yılmaz;Burcu KOCARIK GACAR,Marmara University;Marmara University;Dokuz Eylül University,Ebru Çağlayan Akay,Social Network Analysis and Mining,Social Network Analysis and Mining,12,1,109,109,,,Scopus;Field (mathematics);Artificial intelligence;Machine learning;Computer science;Variance (accounting);Bibliometrics;Web of science;Data science;Econometrics;Mathematics;Data mining;Political science;Economics;Law;Accounting;MEDLINE;Pure mathematics,https://openalex.org/W1021000864;https://openalex.org/W1492784227;https://openalex.org/W1691836324;https://openalex.org/W1743190515;https://openalex.org/W1965746216;https://openalex.org/W1984703120;https://openalex.org/W2018881137;https://openalex.org/W2021314860;https://openalex.org/W2025572017;https://openalex.org/W2026048037;https://openalex.org/W2027090774;https://openalex.org/W2047060174;https://openalex.org/W2071894795;https://openalex.org/W2072119404;https://openalex.org/W2090870577;https://openalex.org/W2105201700;https://openalex.org/W2108680868;https://openalex.org/W2114060717;https://openalex.org/W2118373411;https://openalex.org/W2134064007;https://openalex.org/W2141409967;https://openalex.org/W2155419203;https://openalex.org/W2329512751;https://openalex.org/W2344469150;https://openalex.org/W2353267094;https://openalex.org/W2416848540;https://openalex.org/W2512365341;https://openalex.org/W2522448907;https://openalex.org/W2563961554;https://openalex.org/W2584924584;https://openalex.org/W2592084954;https://openalex.org/W2605481522;https://openalex.org/W2610886376;https://openalex.org/W2751861288;https://openalex.org/W2759832051;https://openalex.org/W2765743217;https://openalex.org/W2770958024;https://openalex.org/W2772164149;https://openalex.org/W2786141192;https://openalex.org/W2804346410;https://openalex.org/W2810322781;https://openalex.org/W2885251002;https://openalex.org/W2898057422;https://openalex.org/W2908094560;https://openalex.org/W2921613140;https://openalex.org/W2924708206;https://openalex.org/W2942867818;https://openalex.org/W2950708169;https://openalex.org/W2953527948;https://openalex.org/W2963453445;https://openalex.org/W2964099165;https://openalex.org/W2979610116;https://openalex.org/W2985684656;https://openalex.org/W2990302163;https://openalex.org/W2998145162;https://openalex.org/W2999225196;https://openalex.org/W3010600010;https://openalex.org/W3013165905;https://openalex.org/W3024591130;https://openalex.org/W3032868513;https://openalex.org/W3037825799;https://openalex.org/W3044902155;https://openalex.org/W3045713571;https://openalex.org/W3046037449;https://openalex.org/W3122125470;https://openalex.org/W3125019846;https://openalex.org/W3125707221;https://openalex.org/W3127361825;https://openalex.org/W3145296828;https://openalex.org/W3150904570;https://openalex.org/W3153273683;https://openalex.org/W3160560894;https://openalex.org/W3160856016;https://openalex.org/W3161537902;https://openalex.org/W3193226555;https://openalex.org/W3214251695;https://openalex.org/W4224246713;https://openalex.org/W4226037378;https://openalex.org/W4240407251;https://openalex.org/W4250767237;https://openalex.org/W4285521953;https://openalex.org/W4293232152;https://openalex.org/W6963401302,OPENALEX,"Ebru Çağlayan Akay, 2022, Social Network Analysis and Mining","Ebru Çağlayan Akay, 2022, Social Network Analysis and Mining"
+A Machine-Learning-Based Bibliometric Analysis of the Scientific Literature on Anal Cancer,2022,article,en,15,10.3390/cancers14071697,https://openalex.org/W4220822358,35406469,Pierfrancesco Franco;Eva Segelov;Anders Johnsson;Rachel P. Riechelmann;Marianne G. Guren;Prajnan Das;Sheela Rao;Dirk Arnold;Karen‐Lise Garm Spindler;Éric Deutsch;Marco Krengli;Vincenzo Tombolini;David Sebag‐Montefiore;Francesca De Felice,Pierfrancesco Franco;Eva Segelov;Anders Johnsson;Rachel P. Riechelmann;Marianne G. Guren;Prajnan Das;Sheela Rao;Dirk Arnold;Karen‐Lise Garm Spindler;Éric Deutsch;Marco Krengli;Vincenzo Tombolini;David Sebag‐Montefiore;Francesca De Felice,Università degli Studi del Piemonte Orientale “Amedeo Avogadro”;Monash Health;Monash University;Skåne University Hospital;AC Camargo Hospital;Oslo University Hospital;University of Oslo;The University of Texas MD Anderson Cancer Center;Royal Marsden Hospital;Asklepios Klinik Altona;Aarhus University Hospital;Institut Gustave Roussy;Università degli Studi del Piemonte Orientale “Amedeo Avogadro”;Policlinico Umberto I;Sapienza University of Rome;University of Leeds;Policlinico Umberto I;Sapienza University of Rome,Pierfrancesco Franco,Cancers,Cancers,14,7,1697,1697,"Squamous-cell carcinoma of the anus (ASCC) is a rare disease. Barriers have been encountered to conduct clinical and translational research in this setting. Despite this, ASCC has been a prime example of collaboration amongst researchers. We performed a bibliometric analysis of ASCC-related literature of the last 20 years, exploring common patterns in research, tracking collaboration and identifying gaps. The electronic Scopus database was searched using the keywords ""anal cancer"", to include manuscripts published in English, between 2000 and 2020. Data analysis was performed using R-Studio 0.98.1091 software. A machine-learning bibliometric method was applied. The bibliometrix R package was used. A total of 2322 scientific documents was found. The average annual growth rate in publication was around 40% during 2000-2020. The five most productive countries were United States of America (USA), United Kingdom (UK), France, Italy and Australia. The USA and UK had the greatest link strength of international collaboration (22.6% and 19.0%). Two main clusters of keywords for published research were identified: (a) prevention and screening and (b) overall management. Emerging topics included imaging, biomarkers and patient-reported outcomes. Further efforts are required to increase collaboration and funding to sustain future research in the setting of ASCC.",,Anal cancer;Computer science;Scientific literature;Information retrieval;Data science;Cancer;Medicine;Internal medicine;Biology;Paleontology,https://openalex.org/W776995397;https://openalex.org/W1804130247;https://openalex.org/W1964106115;https://openalex.org/W1965416300;https://openalex.org/W1971960862;https://openalex.org/W2029919879;https://openalex.org/W2041176483;https://openalex.org/W2050654184;https://openalex.org/W2055442814;https://openalex.org/W2060575649;https://openalex.org/W2076341925;https://openalex.org/W2106115615;https://openalex.org/W2108952004;https://openalex.org/W2118632290;https://openalex.org/W2124675713;https://openalex.org/W2126330670;https://openalex.org/W2128978912;https://openalex.org/W2164644812;https://openalex.org/W2224538875;https://openalex.org/W2416810470;https://openalex.org/W2543747182;https://openalex.org/W2552356277;https://openalex.org/W2563123241;https://openalex.org/W2604816500;https://openalex.org/W2750756488;https://openalex.org/W2755950973;https://openalex.org/W2762345927;https://openalex.org/W2773124333;https://openalex.org/W2803009863;https://openalex.org/W2900187858;https://openalex.org/W2901532466;https://openalex.org/W2940815904;https://openalex.org/W2955245499;https://openalex.org/W3034884769;https://openalex.org/W3099049175;https://openalex.org/W3128656334;https://openalex.org/W3163069028;https://openalex.org/W3163816882;https://openalex.org/W3164232230;https://openalex.org/W3173506613;https://openalex.org/W3199622155;https://openalex.org/W4214891571;https://openalex.org/W4300707346;https://openalex.org/W6728763948,OPENALEX,"Pierfrancesco Franco, 2022, Cancers","Pierfrancesco Franco, 2022, Cancers"
+Machine Learning and Deep Learning in Energy Systems: A Review,2022,review,en,307,10.3390/su14084832,https://openalex.org/W4224282610,,Mohammad Mahdi Forootan;Iman Larki;Rahim Zahedi;Abolfazl Ahmadi,Mohammad Mahdi Forootan;Iman Larki;Rahim Zahedi;Abolfazl Ahmadi,Iran University of Science and Technology;Iran University of Science and Technology;University of Tehran;Iran University of Science and Technology,Mohammad Mahdi Forootan,Sustainability,Sustainability,14,8,4832,4832,"With population increases and a vital need for energy, energy systems play an important and decisive role in all of the sectors of society. To accelerate the process and improve the methods of responding to this increase in energy demand, the use of models and algorithms based on artificial intelligence has become common and mandatory. In the present study, a comprehensive and detailed study has been conducted on the methods and applications of Machine Learning (ML) and Deep Learning (DL), which are the newest and most practical models based on Artificial Intelligence (AI) for use in energy systems. It should be noted that due to the development of DL algorithms, which are usually more accurate and less error, the use of these algorithms increases the ability of the model to solve complex problems in this field. In this article, we have tried to examine DL algorithms that are very powerful in problem solving but have received less attention in other studies, such as RNN, ANFIS, RBN, DBN, WNN, and so on. This research uses knowledge discovery in research databases to understand ML and DL applications in energy systems’ current status and future. Subsequently, the critical areas and research gaps are identified. In addition, this study covers the most common and efficient applications used in this field; optimization, forecasting, fault detection, and other applications of energy systems are investigated. Attempts have also been made to cover most of the algorithms and their evaluation metrics, including not only algorithms that are more important, but also newer ones that have received less attention.",,Artificial intelligence;Machine learning;Computer science;Field (mathematics);Deep learning;Energy (signal processing);Process (computing);Population;Mathematics;Sociology;Pure mathematics;Statistics;Operating system;Demography,https://openalex.org/W289033159;https://openalex.org/W290561687;https://openalex.org/W977807926;https://openalex.org/W1124861640;https://openalex.org/W1221244578;https://openalex.org/W1514832573;https://openalex.org/W1583031633;https://openalex.org/W1584236903;https://openalex.org/W1705374184;https://openalex.org/W1790870804;https://openalex.org/W1973445088;https://openalex.org/W1973706763;https://openalex.org/W1984061847;https://openalex.org/W1984703120;https://openalex.org/W1991277158;https://openalex.org/W2001105935;https://openalex.org/W2011666252;https://openalex.org/W2013377700;https://openalex.org/W2020835139;https://openalex.org/W2028135373;https://openalex.org/W2029463080;https://openalex.org/W2031118743;https://openalex.org/W2038808304;https://openalex.org/W2047143310;https://openalex.org/W2070534370;https://openalex.org/W2089886615;https://openalex.org/W2091693228;https://openalex.org/W2097751040;https://openalex.org/W2111072639;https://openalex.org/W2116911268;https://openalex.org/W2118207876;https://openalex.org/W2135803899;https://openalex.org/W2167036165;https://openalex.org/W2168577773;https://openalex.org/W2187462970;https://openalex.org/W2196207709;https://openalex.org/W2218112468;https://openalex.org/W2287279778;https://openalex.org/W2290577225;https://openalex.org/W2295598076;https://openalex.org/W2338227759;https://openalex.org/W2344568978;https://openalex.org/W2398805137;https://openalex.org/W2461825869;https://openalex.org/W2473105253;https://openalex.org/W2475932179;https://openalex.org/W2490223215;https://openalex.org/W2499653742;https://openalex.org/W2515646722;https://openalex.org/W2549170467;https://openalex.org/W2569349941;https://openalex.org/W2587084097;https://openalex.org/W2592453717;https://openalex.org/W2600292797;https://openalex.org/W2748617721;https://openalex.org/W2751698537;https://openalex.org/W2752250962;https://openalex.org/W2753141486;https://openalex.org/W2754029504;https://openalex.org/W2756291343;https://openalex.org/W2758741519;https://openalex.org/W2760917493;https://openalex.org/W2765437974;https://openalex.org/W2775155156;https://openalex.org/W2780722608;https://openalex.org/W2781426785;https://openalex.org/W2784125831;https://openalex.org/W2790967054;https://openalex.org/W2792344217;https://openalex.org/W2796855349;https://openalex.org/W2801749227;https://openalex.org/W2802203651;https://openalex.org/W2802465900;https://openalex.org/W2809417225;https://openalex.org/W2883208472;https://openalex.org/W2884486887;https://openalex.org/W2888233556;https://openalex.org/W2889323772;https://openalex.org/W2890324410;https://openalex.org/W2891856506;https://openalex.org/W2891859208;https://openalex.org/W2895868491;https://openalex.org/W2895889688;https://openalex.org/W2896764759;https://openalex.org/W2897070698;https://openalex.org/W2901004617;https://openalex.org/W2901645090;https://openalex.org/W2905528277;https://openalex.org/W2910029420;https://openalex.org/W2911964244;https://openalex.org/W2918257668;https://openalex.org/W2921062906;https://openalex.org/W2921748836;https://openalex.org/W2924189842;https://openalex.org/W2925322067;https://openalex.org/W2933085505;https://openalex.org/W2933878133;https://openalex.org/W2935877504;https://openalex.org/W2938814897;https://openalex.org/W2943921667;https://openalex.org/W2944588927;https://openalex.org/W2945306337;https://openalex.org/W2950413984;https://openalex.org/W2950843237;https://openalex.org/W2959298257;https://openalex.org/W2960020789;https://openalex.org/W2961951330;https://openalex.org/W2962843543;https://openalex.org/W2963918665;https://openalex.org/W2964052759;https://openalex.org/W2964576890;https://openalex.org/W2969384816;https://openalex.org/W2969591044;https://openalex.org/W2970261355;https://openalex.org/W2972487051;https://openalex.org/W2973960501;https://openalex.org/W2974597968;https://openalex.org/W2975426891;https://openalex.org/W2980326480;https://openalex.org/W2980446921;https://openalex.org/W2983566047;https://openalex.org/W2984033187;https://openalex.org/W2984347565;https://openalex.org/W2986445385;https://openalex.org/W2987158950;https://openalex.org/W2988857877;https://openalex.org/W2991232089;https://openalex.org/W2992885437;https://openalex.org/W2993270824;https://openalex.org/W2995623352;https://openalex.org/W2996674504;https://openalex.org/W2997404503;https://openalex.org/W2997684871;https://openalex.org/W2998134171;https://openalex.org/W3003936655;https://openalex.org/W3006997870;https://openalex.org/W3007203411;https://openalex.org/W3007211815;https://openalex.org/W3008593201;https://openalex.org/W3009778813;https://openalex.org/W3011435659;https://openalex.org/W3012137445;https://openalex.org/W3012251602;https://openalex.org/W3012789894;https://openalex.org/W3013381014;https://openalex.org/W3015704045;https://openalex.org/W3015746332;https://openalex.org/W3016604868;https://openalex.org/W3016646640;https://openalex.org/W3016726239;https://openalex.org/W3018589140;https://openalex.org/W3020054080;https://openalex.org/W3021959513;https://openalex.org/W3022039226;https://openalex.org/W3022900533;https://openalex.org/W3023212902;https://openalex.org/W3023541969;https://openalex.org/W3023746602;https://openalex.org/W3026694392;https://openalex.org/W3026900034;https://openalex.org/W3027972301;https://openalex.org/W3028206171;https://openalex.org/W3028586177;https://openalex.org/W3029357900;https://openalex.org/W3033027149;https://openalex.org/W3033088344;https://openalex.org/W3034797134;https://openalex.org/W3035595432;https://openalex.org/W3036110098;https://openalex.org/W3038178920;https://openalex.org/W3039283338;https://openalex.org/W3041595900;https://openalex.org/W3044728976;https://openalex.org/W3045280445;https://openalex.org/W3045867310;https://openalex.org/W3046194311;https://openalex.org/W3046678016;https://openalex.org/W3047145943;https://openalex.org/W3047606632;https://openalex.org/W3047756433;https://openalex.org/W3052382046;https://openalex.org/W3075674906;https://openalex.org/W3080429438;https://openalex.org/W3081759690;https://openalex.org/W3081844820;https://openalex.org/W3082558305;https://openalex.org/W3082644243;https://openalex.org/W3083236402;https://openalex.org/W3084966153;https://openalex.org/W3086129719;https://openalex.org/W3086340023;https://openalex.org/W3089916352;https://openalex.org/W3090586341;https://openalex.org/W3092025375;https://openalex.org/W3092304538;https://openalex.org/W3095534907;https://openalex.org/W3096738367;https://openalex.org/W3096853769;https://openalex.org/W3097369108;https://openalex.org/W3097947691;https://openalex.org/W3098080327;https://openalex.org/W3100044956;https://openalex.org/W3100102631;https://openalex.org/W3101170768;https://openalex.org/W3105031020;https://openalex.org/W3110443213;https://openalex.org/W3111182517;https://openalex.org/W3112325088;https://openalex.org/W3112388352;https://openalex.org/W3113265941;https://openalex.org/W3114571338;https://openalex.org/W3115025749;https://openalex.org/W3115710758;https://openalex.org/W3116475140;https://openalex.org/W3116483307;https://openalex.org/W3116794653;https://openalex.org/W3125213835;https://openalex.org/W3126904039;https://openalex.org/W3130598090;https://openalex.org/W3133186580;https://openalex.org/W3134162419;https://openalex.org/W3134325399;https://openalex.org/W3134328386;https://openalex.org/W3135241484;https://openalex.org/W3135341369;https://openalex.org/W3135477757;https://openalex.org/W3135523675;https://openalex.org/W3135551422;https://openalex.org/W3137802065;https://openalex.org/W3142394151;https://openalex.org/W3144676766;https://openalex.org/W3146929222;https://openalex.org/W3151640016;https://openalex.org/W3152907062;https://openalex.org/W3153983776;https://openalex.org/W3154593458;https://openalex.org/W3157886990;https://openalex.org/W3158407575;https://openalex.org/W3158547118;https://openalex.org/W3158960803;https://openalex.org/W3162105667;https://openalex.org/W3163169408;https://openalex.org/W3163894332;https://openalex.org/W3163966836;https://openalex.org/W3165128203;https://openalex.org/W3168564117;https://openalex.org/W3172264170;https://openalex.org/W3175763617;https://openalex.org/W3178198635;https://openalex.org/W3183684283;https://openalex.org/W3183846564;https://openalex.org/W3190100309;https://openalex.org/W3194540065;https://openalex.org/W3201579518;https://openalex.org/W3203586625;https://openalex.org/W3213092119;https://openalex.org/W3213717323;https://openalex.org/W3216028647;https://openalex.org/W3216584722;https://openalex.org/W4200383902;https://openalex.org/W4200437367;https://openalex.org/W4200545292;https://openalex.org/W4205087056;https://openalex.org/W4205517422;https://openalex.org/W4205696178;https://openalex.org/W4205943556;https://openalex.org/W4205969754;https://openalex.org/W4206699374;https://openalex.org/W4210922522;https://openalex.org/W4212883601;https://openalex.org/W4213215978;https://openalex.org/W4214572926;https://openalex.org/W4214589746;https://openalex.org/W4214936883;https://openalex.org/W4220738833;https://openalex.org/W4220803086;https://openalex.org/W4220818105;https://openalex.org/W4226178925;https://openalex.org/W4226449636;https://openalex.org/W4239510810;https://openalex.org/W6677734280;https://openalex.org/W6718544758;https://openalex.org/W6747879919;https://openalex.org/W6765719207;https://openalex.org/W6770920306;https://openalex.org/W6793825141;https://openalex.org/W6794177766;https://openalex.org/W6804315982;https://openalex.org/W6808924186,OPENALEX,"Mohammad Mahdi Forootan, 2022, Sustainability","Mohammad Mahdi Forootan, 2022, Sustainability"
+Exploring machine learning: A bibliometric general approach using SciMAT,2018,preprint,en,16,10.12688/f1000research.15620.1,https://openalex.org/W4246652249,,Juan Rincon-Patino;Gustavo Ramírez-González;Juan Carlos Corrales,Juan Rincon-Patino;Gustavo Ramírez-González;Juan Carlos Corrales,University of Cauca;University of Cauca;University of Cauca,Juan Rincon-Patino,F1000Research,F1000Research,7,,1210,1210," Background: Machine learning is becoming increasingly important for companies and the scientific community. In this study, we perform a bibliometric analysis on machine learning research, in order to provide an overview of the scientific work during the period 2007-2017 in this area and to show trends that could be the basis for future developments in the field. Methods: This study is carried out using the SciMAT tool based on results extracted from Scopus. This analysis shows the strategic diagrams of evolution and a set of thematic networks. The results provide information on broad tendencies of machine learning. Results: The results show that SciMAT is a useful tool to carry out a science mapping analysis, and emphasizes the premise that machine learning has boundless applications and will continue to be an interesting research field in the future. Conclusions: Some of the conclusions exposed in this study show that classification algorithms have been widely studied and represent a relevant tool for generating different machine learning applications. Nonetheless, regression algorithms are becoming increasingly important in the scientific community, allowing the generation of solutions to predict diseases, sales, and yields, for example. ",,Field (mathematics);Artificial intelligence;Computer science;Mathematics;Pure mathematics,https://openalex.org/W239165158;https://openalex.org/W1596324102;https://openalex.org/W1972785704;https://openalex.org/W1977150449;https://openalex.org/W1981886524;https://openalex.org/W2017680781;https://openalex.org/W2029088861;https://openalex.org/W2043347849;https://openalex.org/W2071659396;https://openalex.org/W2093602450;https://openalex.org/W2102203250;https://openalex.org/W2105822516;https://openalex.org/W2114046749;https://openalex.org/W2118020653;https://openalex.org/W2135455887;https://openalex.org/W2295897189;https://openalex.org/W2591652315;https://openalex.org/W2724945533;https://openalex.org/W2727482721;https://openalex.org/W4244340606,OPENALEX,"Juan Rincon-Patino, 2018, F1000Research","Juan Rincon-Patino, 2018, F1000Research"
+Insights into the Application of Machine Learning in Industrial Risk Assessment: A Bibliometric Mapping Analysis,2023,article,en,25,10.3390/su15086965,https://openalex.org/W4366691591,,Ze Wei;Hui Liu;Xuewen Tao;Kai Pan;Rui Huang;Wenjing Ji;Jianhai Wang,Ze Wei;Hui Liu;Xuewen Tao;Kai Pan;Rui Huang;Wenjing Ji;Jianhai Wang,China Jiliang University;China Jiliang University;China Jiliang University;China Jiliang University;China Jiliang University;China Jiliang University,Ze Wei,Sustainability,Sustainability,15,8,6965,6965,"Risk assessment is of great significance in industrial production and sustainable development. Great potential is attributed to machine learning in industrial risk assessment as a promising technology in the fields of computer science and the internet. To better understand the role of machine learning in this field and to investigate the current research status, we selected 3116 papers from the SCIE and SSCI databases of the WOS retrieval platform between 1991 and 2022 as our data sample. The VOSviewer, Bibliometrix R, and CiteSpace software were used to perform co-occurrence analysis, clustering analysis, and dual-map overlay analysis of keywords. The results indicate that the development trend of machine learning in industrial risk assessment can be divided into three stages: initial exploration, stable development, and high-speed development. Machine learning algorithm design, applications in biomedicine, risk monitoring in construction and machinery, and environmental protection are the knowledge base of this study. There are three research hotspots in the application of machine learning to industrial risk assessment: the study of machine learning algorithms, the risk assessment of machine learning in the Industry 4.0 system, and the application of machine learning in autonomous driving. At present, the basic theories and structural systems related to this research have been established, and there are numerous research directions and extensive frontier branches. “Random Forest”, “Industry 4.0”, “supply chain risk assessment”, and “Internet of Things” are at the forefront of the research.",,Machine learning;Computer science;Artificial intelligence;Cluster analysis;Data science,https://openalex.org/W1004129182;https://openalex.org/W1943579973;https://openalex.org/W1982291815;https://openalex.org/W2012118327;https://openalex.org/W2013730050;https://openalex.org/W2029088861;https://openalex.org/W2038443446;https://openalex.org/W2054448874;https://openalex.org/W2055419981;https://openalex.org/W2061245874;https://openalex.org/W2081690420;https://openalex.org/W2087613535;https://openalex.org/W2088749788;https://openalex.org/W2098168647;https://openalex.org/W2108680868;https://openalex.org/W2135216654;https://openalex.org/W2135663228;https://openalex.org/W2140242553;https://openalex.org/W2154901533;https://openalex.org/W2156804614;https://openalex.org/W2161831882;https://openalex.org/W2303907023;https://openalex.org/W2735465255;https://openalex.org/W2743579215;https://openalex.org/W2744055783;https://openalex.org/W2747941871;https://openalex.org/W2752374510;https://openalex.org/W2759642985;https://openalex.org/W2765312595;https://openalex.org/W2767518613;https://openalex.org/W2782742819;https://openalex.org/W2791694051;https://openalex.org/W2791834423;https://openalex.org/W2801088198;https://openalex.org/W2806407311;https://openalex.org/W2808388724;https://openalex.org/W2810507576;https://openalex.org/W2896727370;https://openalex.org/W2898989224;https://openalex.org/W2902264868;https://openalex.org/W2902985761;https://openalex.org/W2921144593;https://openalex.org/W2934399013;https://openalex.org/W2948678706;https://openalex.org/W2955737266;https://openalex.org/W2970010390;https://openalex.org/W2976478147;https://openalex.org/W2979202956;https://openalex.org/W2981915020;https://openalex.org/W2983039014;https://openalex.org/W2996698173;https://openalex.org/W2997627599;https://openalex.org/W3011775786;https://openalex.org/W3013120860;https://openalex.org/W3021438699;https://openalex.org/W3026226282;https://openalex.org/W3043054459;https://openalex.org/W3045031900;https://openalex.org/W3097663444;https://openalex.org/W3098000326;https://openalex.org/W3105875582;https://openalex.org/W3122591279;https://openalex.org/W3156676812;https://openalex.org/W3161251598;https://openalex.org/W3196025567;https://openalex.org/W3196820725;https://openalex.org/W3199781733;https://openalex.org/W3214529957;https://openalex.org/W4200076236;https://openalex.org/W4200112031;https://openalex.org/W4205095785;https://openalex.org/W4210390716;https://openalex.org/W4220987968;https://openalex.org/W4223459552;https://openalex.org/W4224242891;https://openalex.org/W4226250091;https://openalex.org/W4246266532;https://openalex.org/W4280611329;https://openalex.org/W4283164898;https://openalex.org/W4283392904;https://openalex.org/W4284893700;https://openalex.org/W4285590154;https://openalex.org/W4285792991;https://openalex.org/W4296225859;https://openalex.org/W4310816461;https://openalex.org/W6683395808;https://openalex.org/W6769154321;https://openalex.org/W6800396134;https://openalex.org/W6840593941,OPENALEX,"Ze Wei, 2023, Sustainability","Ze Wei, 2023, Sustainability"
+Artificial Intelligence and Machine Learning in Insurance: A Bibliometric Analysis,2023,book-chapter,en,15,10.1108/s1569-37592023000110a010,https://openalex.org/W4376627022,,Praveen Kumar;Sanjay Taneja;Ercan Özen;Satinderpal Singh,Praveen Kumar;Sanjay Taneja;Ercan Özen;Satinderpal Singh,,Praveen Kumar,Contemporary studies in economic and financial analysis,Contemporary studies in economic and financial analysis,,,191,202,"Purpose: The aim of this chapter is to provide a quantitative literature review on machine learning (ML) and artificial intelligence (AI) in the Insurance Sector.Need for the Study: The current study maps the literature regarding AI and ML in the insurance sector through bibliometric tools to identify the significant gaps in the available literature, considerable insights that emerged, and a scientific evaluation of AI and ML in the Insurance sector.Methodology: The VOS viewer method was used to conduct the depth and quantitative analysis of the AI and ML in Insurance. The study of 450 articles has been retrieved through the Scopus database from 2012 to 2021. The implication of performance analysis methods has helped to explore influential journals, authors, countries, Keywords, and affiliations, elevating the literature in AI and the Insurance Sector.Finding: This study conducts an exploratory analysis and identifies the prominent authors, sources, countries, affiliations, and articles using modern bibliometric analysis (BA) tools. The geographic scattering of the study indicates that the USA and the UK have highly influential publications and contribute to AI and Insurance. East and Southern Asia countries are far behind.Practical Implication: Furthermore, this chapter can be used as a reference paper to explore the new field of study in the insurance sector using AI. The search criteria were set in the study to limit the sample published papers/articles included in Scopus data based on the AI and ML in Insurance.",,Scopus;Exploratory analysis;Exploratory research;Artificial intelligence;Actuarial science;Computer science;Data science;Political science;Business;Social science;Sociology;MEDLINE;Law,https://openalex.org/W1978071138;https://openalex.org/W2275696275;https://openalex.org/W2560122591;https://openalex.org/W2891520355;https://openalex.org/W2914735843;https://openalex.org/W2922260383;https://openalex.org/W3013109186;https://openalex.org/W3112196969;https://openalex.org/W3135398899;https://openalex.org/W3135409708;https://openalex.org/W3201845915;https://openalex.org/W3204425738;https://openalex.org/W3210870265,OPENALEX,"Praveen Kumar, 2023, Contemporary studies in economic and financial analysis","Praveen Kumar, 2023, Contemporary studies in economic and financial analysis"
diff --git a/data/outputs/pubmed_standardized.csv b/data/outputs/pubmed_standardized.csv
new file mode 100644
index 000000000..8acc2e51f
--- /dev/null
+++ b/data/outputs/pubmed_standardized.csv
@@ -0,0 +1,101 @@
+PMID,OWN,STAT,DCOM,LR,VL,IS,PY,TI,LID,AB,CI,AF,AU,C1,LA,DT,DEP,PL,JI,SO,JID,SB,ID,OTO,DE,COIS,UT,MHDA,CRDT,PHST,DI,PST,BP,AUID,PMC,PMCR,FU,CON,RN,OAB,OABL,CIN,TT,DB,CR,RP,EP,SR,TC,SR_FULL
+42298236,NLM,MEDLINE,20260616,20260615,20,1,2026,"Artificial intelligence and machine learning in robotic, teleoperated, and remote surgery: a bibliometric and knowledge mapping analysis (2015-2025).",587 [pii];10.1007/s11701-026-03600-5 [doi],"Artificial intelligence (AI) and machine learning (ML) technologies are rapidly transforming telesurgery by enhancing robotic-assisted surgical systems, remote surgical communication, image-guided interventions, and intelligent decision-making. The integration of AI-driven algorithms with telesurgical platforms has accelerated research activity across medicine, robotics, engineering, and computer science. However, the global research landscape, collaborative structure, and emerging thematic trends of AI- and ML-enabled telesurgery remain insufficiently explored. Therefore, the present study aimed to perform a comprehensive bibliometric and knowledge mapping analysis of global research on AI and ML applications in robotic, teleoperated, and remote surgery published between 2015 and 2025. A bibliometric analysis was conducted using the Scopus database on 28 May 2026. Articles published between 2015 and 2025 related to AI, machine learning, robotic surgery, teleoperation, and telesurgery were retrieved using predefined search terms. Only English-language research articles were included. Bibliometric indicators including annual publication trends, citation analysis, leading journals, productive authors, institutions, funding agencies, country collaborations, co-citation analysis, and keyword co-occurrence analysis were evaluated. Visualization and network mapping were performed using VOSviewer software (version 1.6.20). A total of 2,201 publications were identified from 112 countries. Scientific output demonstrated substantial exponential growth, increasing from 85 publications in 2015 to 1,167 publications in 2025. Medicine (29%), computer science (24%), and engineering (20%) represented the dominant research areas. Journal of Robotic Surgery emerged as the leading publication source, while China and the United States were identified as the most influential contributing countries. Keyword co-occurrence analysis highlighted major research themes including robotic surgery, deep learning, machine learning, intelligent robotics, teleoperation, and minimally invasive surgery. Overlay visualization demonstrated a recent shift toward AI-driven autonomous systems, computer vision, surgical workflow analysis, and intelligent robotic platforms. Co-citation analysis further revealed strong interdisciplinary foundations involving surgical sciences, robotics, computer vision, and advanced deep learning methodologies. Research on AI and ML applications in robotic, teleoperated, and remote surgery has grown rapidly over the last decade and is increasingly characterized by strong interdisciplinary collaboration and technological innovation. Emerging trends suggest a transition from conventional robotic-assisted surgery toward intelligent, data-driven, and semi-autonomous telesurgical systems. The findings of this bibliometric study provide valuable insights into the evolving scientific landscape of intelligent telesurgery and may support future research, clinical translation, technological development, and policy planning in robotic-assisted remote surgical care.","(c) 2026. The Author(s), under exclusive licence to Springer-Verlag London Ltd., part of Springer Nature.","Prajapati, Yogendra Narayan;Sahu, Shashank;Sharma, Anupama;Kumar, Jitendra;Chaudhary, Anu;Gupta, Avdhesh;Rathore, Chetna",Prajapati YN;Sahu S;Sharma A;Kumar J;Chaudhary A;Gupta A;Rathore C,"Department of Computer Science and Engineering, Ajay Kumar Garg Engineering College, Ghaziabad, Uttar Pradesh, India.;Department of Computer Science and Engineering, Ajay Kumar Garg Engineering College, Ghaziabad, Uttar Pradesh, India.;Department of Information Technology, Ajay Kumar Garg Engineering College, Ghaziabad, Uttar Pradesh, India.;Department of Computer Science and Engineering, ABES Engineering College, Ghaziabad, Uttar Pradesh, India.;Department of Computer Science and Engineering, Ajay Kumar Garg Engineering College, Ghaziabad, Uttar Pradesh, India.;Department of Computer Science and Engineering, Ajay Kumar Garg Engineering College, Ghaziabad, Uttar Pradesh, India. guptaavdhesh@akgec.ac.in.;ABES Institute of Technology, Near Crossing Republik, Dundahera, Ghaziabad, Uttar Pradesh, India. chetna.rathore10.10@gmail.com.",eng,Journal Article;Review,20260616,England,J Robot Surg,Journal of robotic surgery,101300401,IM,*Robotic Surgical Procedures/methods;*Machine Learning;*Artificial Intelligence/trends;*Bibliometrics;Humans;*Telemedicine,NOTNLM,Artificial intelligence;Bibliometric analysis;Deep learning;Knowledge mapping;Machine learning;Robotic surgery;Surgical robotics;Teleoperation;Telesurgery;VOSviewer,Declarations. Competing interests: The authors declare no competing interests.,2026/06/16 00:33,2026/06/16 06:35,2026/06/15 23:43,2026/06/01 00:00 [received];2026/06/10 00:00 [accepted];2026/06/16 06:35 [medline];2026/06/16 00:33 [pubmed];2026/06/15 23:43 [entrez],10.1007/s11701-026-03600-5,epublish,,,,,,,,,,,,PUBMED,,,,"Prajapati YN, 2026, J Robot Surg",0,"Prajapati YN, 2026, J Robot Surg"
+42297064,NLM,Publisher,,20260615,,,2026,Navigating the metabolic crossroads: A bibliometric analysis of the SLC7A11/xCT field from oxidative stress to ferroptosis and disulfidptosis.,S0898-6568(26)00336-0 [pii];10.1016/j.cellsig.2026.112681 [doi],"The cystine/glutamate transporter SLC7A11 is a central node in regulated cell death and tumor metabolism. Here, we performed a bibliometric analysis of 4998 publications to map the knowledge structure and temporal evolution of SLC7A11 research, alongside the rapidly expanding disulfidptosis literature. We observed exponential growth post-2012, with a recent surge driven by collaborative networks centered in China with strong links to the United States. Keyword timelines revealed a distinct three-phase trajectory: from foundational redox biology, through a ferroptosis-dominated period, to the emerging concept of disulfidptosis. Currently, ferroptosis remains the core theme in keyword co-occurrence networks, tightly interconnected with oxidative stress, apoptosis, and metabolism. Concurrently, disulfidptosis research is branching into oncology, prognostic modeling, machine learning, the tumor microenvironment (TME), and glucose starvation. Based on these trends, we highlight key translational frontiers, including data-driven patient stratification, spatiotemporal dynamics of the tumor metabolic landscape, and crosstalk among cell death modalities. Crucially, our mapping reveals notable gaps at the interface of disulfidptosis and tumor immunity. Although the immunological implications of disulfidptosis are gaining traction, studies explicitly focused on tertiary lymphoid structures (TLS) are currently absent, and the upstream ncRNA regulatory layer remains underexplored. We propose that nanomedicine-enabled platforms may help bridge disulfidptosis-driven metabolic injury with immune priming and spatial immune organization, while SLC7A11-AS1 regulatory circuits warrant systematic investigation. Together, these findings provide an evidence-informed framework for the precise targeting of SLC7A11-defined metabolic vulnerabilities.",Copyright (c) 2026 Elsevier Inc. All rights reserved.,"Lu, Shirui;Du, Xiaolu;Liu, Fangteng",Lu S;Du X;Liu F,"Department of Ultrasound, The Second Affiliated Hospital, Jiangxi Medical College, Nanchang University, Nanchang 330008, China.;Second Clinical Medical School, Nanchang University, Nanchang 330031, Jiangxi, China.;Department of Gastrointestinal Surgery, The Second Affiliated Hospital, Jiangxi Medical College, Nanchang University, Nanchang 330008, Jiangxi, China. Electronic address: ndefy24165@ncu.edu.cn.",eng,Journal Article;Review,20260615,England,Cell Signal,Cellular signalling,8904683,IM,,NOTNLM,Bibliometric analysis;Disulfidptosis;Ferroptosis;Nanomedicine;SLC7A11;SLC7A11-AS1;Tertiary lymphoid structures;Tumor microenvironment,Declaration of competing interest The authors declare that they have no competing interests.,2026/06/16 00:33,2026/06/16 00:33,2026/06/15 19:30,2026/05/16 00:00 [received];2026/06/04 00:00 [revised];2026/06/15 00:00 [accepted];2026/06/16 00:33 [medline];2026/06/16 00:33 [pubmed];2026/06/15 19:30 [entrez],10.1016/j.cellsig.2026.112681,aheadofprint,112681,,,,,,,,,,,PUBMED,,,,"Lu S, 2026, Cell Signal",0,"Lu S, 2026, Cell Signal"
+42296533,NLM,MEDLINE,20260615,20260615,28,,2026,Applications of DeepSeek in Medicine: Bibliometric Analysis and Scoping Review.,10.2196/93354 [doi];e93354,"BACKGROUND: The integration of large language models (LLMs) into medicine has reshaped health care delivery, education, and research. Although proprietary models face challenges such as data privacy, regulation, and adaptability, DeepSeek, an open-source LLM, has emerged as a customizable and cost-effective alternative with significant potential for clinical and operational applications. However, the rapid expansion of research in this area necessitates a systematic mapping of its landscape, applications, and challenges. OBJECTIVE: This study combines bibliometric analysis with a scoping review to systematically map and characterize the literature on DeepSeek's medical applications. The aims were to (1) analyze publication trends, leading contributors, and research themes and (2) identify primary application domains, strengths, limitations, and future directions. METHODS: Following the framework by Arksey and O'Malley and the PRISMA-ScR (Preferred Reporting Items for Systematic Reviews and Meta-Analyses Extension for Scoping Reviews) guidelines, a systematic search was conducted using PubMed, Web of Science, and Scopus from January 20, 2025, to November 30, 2025. Bibliometric analysis was then used to quantify publication trends, productivity, and research themes across 371 papers. The scoping review thematically synthesized the applications, strengths, and limitations of 353 original articles. RESULTS: The publication output showed a progressive increase, with China (n=163), Turkey (n=52), and the United States (n=48) as leading contributors. Keyword co-occurrence analysis formed 7 clusters; the 3 most frequent keywords were ""large language model,"" ""artificial intelligence,"" and ""patient education."" DeepSeek has shown promising yet preliminary performance across multiple domains, including patient education, clinical decision support, medical education, workflow optimization, and medical research. The evidence base remains predominantly low in quality, with 66.6% (235/353) of original articles classified as low-quality evidence, consisting largely of unvalidated benchmarking, simulated cases, and single-center retrospective analyses. Only 6.8% (24/353) of studies met the criteria to be considered high quality, and prospective randomized trials assessing patient-relevant outcomes were notably absent. CONCLUSIONS: Publications on DeepSeek's medical applications increased progressively from January 2025 through November 2025, with China, Turkey, and the United States as the leading contributors. The scoping review found that DeepSeek has been evaluated across 5 domains (patient education, clinical decision support, medical education, workflow optimization, and research), with variable but often competitive performance relative to proprietary models. Strengths included readability, diagnostic accuracy in select specialties, cost-efficiency, and local deployability. Limitations included inconsistent cross-specialty performance, hallucinations, ethical concerns, data privacy issues, and regulatory gaps. The evidence base is predominantly low-quality and simulation-based, with few prospective trials or randomized controlled trials. These findings indicate that DeepSeek's clinical readiness varies, and future research should address prospective validation, multimodal capabilities, bias mitigation, human oversight, and equitable access.","(c) Haoran Zhang, Dawei Wang, Yanliang Xu, Shuming Han, Guangxin Wang. Originally published in the Journal of Medical Internet Research (https://www.jmir.org).","Zhang, Haoran;Wang, Dawei;Xu, Yanliang;Han, Shuming;Wang, Guangxin",Zhang H;Wang D;Xu Y;Han S;Wang G,"School of Clinical Medicine, Shandong Second Medical University, Weifang, Shandong, China.;Shandong Innovation Center of Intelligent Diagnostic Technology, Central Hospital Affiliated to Shandong First Medical University, 105 Jiefang Road, Jinan, Shandong, 250013, China, 86 531 55865152.;Key Laboratory of Endocrine Glucose & Lipids Metabolism and Brain Aging, Ministry of Education;Department of Endocrinology, Shandong Provincial Hospital Affiliated to Shandong First Medical University, Jinan, Shandong, China.;Library, Shandong Second Medical University, Weifang, Shandong, China.;Shandong Innovation Center of Intelligent Diagnostic Technology, Central Hospital Affiliated to Shandong First Medical University, 105 Jiefang Road, Jinan, Shandong, 250013, China, 86 531 55865152.;Shandong Innovation Center of Intelligent Diagnostic Technology, Central Hospital Affiliated to Shandong First Medical University, 105 Jiefang Road, Jinan, Shandong, 250013, China, 86 531 55865152.",eng,Journal Article;Review;Scoping Review,20260615,Canada,J Med Internet Res,Journal of medical Internet research,100959882,IM,Large Language Models;*Bibliometrics;Humans,NOTNLM,DeepSeek;PRISMA;artificial intelligence in medicine;biomedical ethics;clinical decision support;large language model;medical education;scoping review,Conflicts of Interest: None declared.,2026/06/15 18:34,2026/06/15 18:35,2026/06/15 17:32,2026/02/11 00:00 [received];2026/05/19 00:00 [revised];2026/05/20 00:00 [accepted];2026/06/15 18:35 [medline];2026/06/15 18:34 [pubmed];2026/06/15 17:32 [entrez];2026/06/15 00:00 [pmc-release],10.2196/93354,epublish,e93354,ORCID: 0009-0007-3384-9739;ORCID: 0000-0001-7902-001X;ORCID: 0009-0001-0644-9517;ORCID: 0009-0008-4853-0648;ORCID: 0000-0003-2588-3770,PMC13268639,2026/06/15,,,,,,,,PUBMED,,,,"Zhang H, 2026, J Med Internet Res",0,"Zhang H, 2026, J Med Internet Res"
+42291761,NLM,PubMed-not-MEDLINE,20260615,20260615,12,,2026,"The landscape of machine learning in clinical applications: A thematic mapping of evolution, frontiers, and future opportunities.",10.1177/20552076261461041 [doi];20552076261461041,"BACKGROUND: Machine learning (ML) has become a transformative force in clinical research, offering predictive precision and data-driven decision-making across diverse medical domains. Despite this rapid adoption, a comprehensive informatic-based synthesis of ML applications in clinical trials remains lacking. This study systematically maps the scientific landscape, thematic evolution, and emerging directions of ML-related clinical trial research. METHODS: The analysis was conducted on PubMed-indexed clinical trials (1995-2025) using Bibliometrix R package, VOSviewer, and Microsoft Excel 2021 (Microsoft Corp., USA). Temporal trends were modeled using ARIMA(5,1,0) forecasting and additive time-series decomposition. Collaboration networks, productivity patterns (Lotka's Law), journal dispersion (Bradford's Law), keyword co-occurrence, and thematic mapping (Walktrap clustering, Callon's centrality/density) were analyzed to identify conceptual structures and research frontiers. RESULTS: A total of 1,195 publications across 563 journals were identified, showing exponential growth after 2018 and a forecasted stabilization by 2030. The USA (24.8%) and China (19.5%) led global output, reflecting strong North American-Asian collaboration. Keyword co-occurrence revealed eight clusters centered on machine learning, artificial intelligence, and radiomics, transitioning toward deep learning, precision medicine, and mHealth. Bradford's Law identified 36 core journals, including Scientific Reports, BMJ Open, and PLOS ONE. Thematic evolution showed a shift from algorithmic and retrospective studies to clinically grounded themes such as cognitive behavioral therapy and telemedicine. Emerging topics emphasized translational and patient-centered applications. CONCLUSION: This study delineates the dynamic evolution of ML in clinical trials, highlighting its growing integration into precision medicine. Future research should prioritize inclusivity, real-world implementation, and ethical frameworks to sustain equitable and clinically impactful innovation.",(c) The Author(s) 2026.,"Talib, Amir Mohamed;Abdelwahab, Siddig Ibrahim;Elhassan Taha, Manal Mohamed;Daadaa, Yassine;Alomary, Fahad Omar;Obaid, Essam Mohammed;Alhathli, Manal Ali;Farasani, Abullah;Moshi, Jobran;Khamjan, Nizar;Al-Ahmadi, Haneen Hassan",Talib AM;Abdelwahab SI;Elhassan Taha MM;Daadaa Y;Alomary FO;Obaid EM;Alhathli MA;Farasani A;Moshi J;Khamjan N;Al-Ahmadi HH,"College of Computer and Information Sciences, Imam Mohammad Ibn Saud Islamic University (IMSIU), Riyadh, Saudi Arabia. RINGGOLD: 48024;Health Research Centre, Jazan University, Jazan, Saudi Arabia. RINGGOLD: 123285;Health Research Centre, Jazan University, Jazan, Saudi Arabia. RINGGOLD: 123285;College of Computer and Information Sciences, Imam Mohammad Ibn Saud Islamic University (IMSIU), Riyadh, Saudi Arabia. RINGGOLD: 48024;College of Computer and Information Sciences, Imam Mohammad Ibn Saud Islamic University (IMSIU), Riyadh, Saudi Arabia. RINGGOLD: 48024;College of Computer and Information Sciences, Imam Mohammad Ibn Saud Islamic University (IMSIU), Riyadh, Saudi Arabia. RINGGOLD: 48024;College of Computer and Information Sciences, Imam Mohammad Ibn Saud Islamic University (IMSIU), Riyadh, Saudi Arabia. RINGGOLD: 48024;Department of Computer Sciences, Prince Nourah Bint Abdulrahman University (PNU), Riyadh, Saudi Arabia. RINGGOLD: 112893;Department of Applied Medical Sciences, College of Nursing and Health Sciences, Jazan University, Jazan, Saudi Arabia. RINGGOLD: 123285;Department of Applied Medical Sciences, College of Nursing and Health Sciences, Jazan University, Jazan, Saudi Arabia. RINGGOLD: 123285;Department of Applied Medical Sciences, College of Nursing and Health Sciences, Jazan University, Jazan, Saudi Arabia. RINGGOLD: 123285;Department of Software Engineering, College of Computer Science and Engineering, University of Jeddah, Jeddah, Saudi Arabia. RINGGOLD: 441424",eng,Journal Article;Review,20260611,United States,Digit Health,Digital health,101690863,,,NOTNLM,Artificial Intelligence;Machine Learning;bibliometric analysis;clinical trials;thematic evolution,"The authors declared no potential conflicts of interest with respect to the research, authorship, and/or publication of this article.",2026/06/15 12:54,2026/06/15 12:55,2026/06/15 07:22,2025/10/30 00:00 [received];2026/05/29 00:00 [revised];2026/06/03 00:00 [accepted];2026/06/15 12:55 [medline];2026/06/15 12:54 [pubmed];2026/06/15 07:22 [entrez];2026/06/11 00:00 [pmc-release],10.1177/20552076261461041,epublish,20552076261461041,ORCID: 0000-0002-6145-4466;ORCID: 0000-0001-6942-5136,PMC13261003,2026/06/11,,,,,,,,PUBMED,,,,"Talib AM, 2026, Digit Health",0,"Talib AM, 2026, Digit Health"
+42287932,NLM,Publisher,,20260613,167,,2026,"Effectiveness of artificial intelligence in nursing simulation education: A systematic review, meta-analysis and bibliometric visualization analysis.",S0260-6917(26)00245-5 [pii];10.1016/j.nedt.2026.107217 [doi],"OBJECTIVES: To synthesize the roles and core functions of AI in nursing simulation education for nursing students via systematic review, quantitatively evaluate its effects on students' knowledge and skill outcomes through meta-analysis, and map the research landscape and development trends of this field through bibliometric visualization analysis. DESIGN: Systematic review, meta-analysis and bibliometric visualization analysis. DATA SOURCES: Eight electronic databases: PubMed, Web of Science, MEDLINE, ERIC, Academic Search Complete, China National Knowledge Infrastructure (CNKI), Wanfang Database, VIP Chinese Science and Technology Journal Database (VIP) were employed to search studies from the time of construction to 16 December 2025. REVIEW METHODS: Studies meeting the inclusion criteria were screened. The revised Cochrane Risk of Bias tool (ROB 2) and Joanna Briggs Institute (JBI) critical appraisal checklists were used for quality assessment. Meta-analysis was performed with Review Manager 5.4, and bibliometric visualization analysis was conducted using VOSviewer 1.6.20 and Bibliometrix (based on R4.4.3). RESULTS: A total of 61 studies were included. AI primarily played two roles in nursing simulation education: peer-type new subject (n = 24) and direct mediator (n = 22). Meta-analysis showed that AI interventions significantly improved nursing students' knowledge (SMD = 1.49, 95% CI [0.55,2.43], p = 0.002) and skills (SMD = 0.66, 95% CI [0.02,1.31], p = 0.04). Bibliometric analysis identified that the United States of America and China were the two main contributing countries in this field, and the key motor themes included generative artificial intelligence, virtual patients, and geriatric care. CONCLUSIONS: AI exerts positive effects on nursing students' knowledge acquisition and skill enhancement in simulation education, with peer-type new subject and direct mediator as the dominant roles. Future research should focus on expanding AI applications in multi-specialty simulation scenarios, activating the data-driven value of machine learning, and strengthening international collaboration and standardization construction, so as to promote the sustainable development of AI-integrated nursing simulation education.",Copyright (c) 2026 Elsevier Ltd. All rights reserved.,"Yan, Xiaoqian;Wang, Ziyu;Chen, Ou;Guo, Yufang",Yan X;Wang Z;Chen O;Guo Y,"School of Nursing and Rehabilitation, Shandong University, Jinan, 250012, Shandong Province, China.;School of Nursing and Rehabilitation, Shandong University, Jinan, 250012, Shandong Province, China.;School of Nursing and Rehabilitation, Shandong University, Jinan, 250012, Shandong Province, China.;School of Nursing and Rehabilitation, Shandong University, Jinan, 250012, Shandong Province, China. Electronic address: cdguoyufang@163.com.",eng,Journal Article;Review,20260607,Scotland,Nurse Educ Today,Nurse education today,8511379,IM,,NOTNLM,Artificial intelligence;Bibliometric analysis;Meta-analysis;Nursing simulation education;Systematic review,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/06/15 11:29,2026/06/15 11:29,2026/06/13 18:05,2026/01/10 00:00 [received];2026/03/30 00:00 [revised];2026/06/02 00:00 [accepted];2026/06/15 11:29 [medline];2026/06/15 11:29 [pubmed];2026/06/13 18:05 [entrez],10.1016/j.nedt.2026.107217,aheadofprint,107217,,,,,,,,,,,PUBMED,,,,"Yan X, 2026, Nurse Educ Today",0,"Yan X, 2026, Nurse Educ Today"
+42279299,NLM,PubMed-not-MEDLINE,20260612,20260612,18,11,2026,Artificial Intelligence in Image Assisted Radiation Oncology.,10.3390/cancers18111715 [doi];1715,"Advanced imaging is the cornerstone of modern radiation oncology, contributing to each phase of patient care, from diagnosis and treatment planning to delivery and follow-up. It has evolved from providing purely geometric guidance to enabling biological and dynamic precision, capturing detailed spatial and functional information about tumors and surrounding tissues. This progress has also generated vast amounts of complex data that remain largely underexplored. AI-based methods have shown promises to unlock the potential of these data, ensuring quality and standardization while extracting previously inaccessible insights. AI-driven tools can enhance accuracy, efficiency, and personalization of radiation oncology through precision diagnosis, automated segmentation, adaptive treatment planning, real-time image guidance, and predictive response assessment. In this review, we conducted a systematic bibliometric analysis of relevant literature published in the last decade and explored current advancements in AI and radiomics applications across radiation oncology. We also addressed ongoing challenges, such as data heterogeneity, model interpretability, and clinical implementation, and discussed future directions for integrating AI-powered imaging solutions into routine practice to advance precision cancer care.",,"Wang, He;Zhao, Yao;Chen, Xinru;McDonald, Brigid;Li, Yunxiang;Xie, Jiacheng;Rhee, Dong Joo;Lim, Tze Yee;Netherton, Tucker J;Phan, Jack;Spiotto, Michael T;Lin, Mu-Han",Wang H;Zhao Y;Chen X;McDonald B;Li Y;Xie J;Rhee DJ;Lim TY;Netherton TJ;Phan J;Spiotto MT;Lin MH,"Radiation Physics, University of Texas M.D. Anderson Cancer Center, Houston, TX 77030, USA.;Radiation Physics, University of Texas M.D. Anderson Cancer Center, Houston, TX 77030, USA.;Radiation Physics, University of Texas M.D. Anderson Cancer Center, Houston, TX 77030, USA.;Radiation Physics, University of Texas M.D. Anderson Cancer Center, Houston, TX 77030, USA.;Radiation Oncology, University of Texas Southwestern Medical Center, Dallas, TX 75390, USA.;Radiation Oncology, University of Texas Southwestern Medical Center, Dallas, TX 75390, USA.;Radiation Physics, University of Texas M.D. Anderson Cancer Center, Houston, TX 77030, USA.;Radiation Physics, University of Texas M.D. Anderson Cancer Center, Houston, TX 77030, USA.;Radiation Physics, University of Texas M.D. Anderson Cancer Center, Houston, TX 77030, USA.;Radiation Oncology, University of Texas M.D. Anderson Cancer Center, Houston, TX 77030, USA.;Radiation Oncology, University of Texas M.D. Anderson Cancer Center, Houston, TX 77030, USA.;Radiation Oncology, University of Texas Southwestern Medical Center, Dallas, TX 75390, USA.",eng,Journal Article;Review,20260525,Switzerland,Cancers (Basel),Cancers,101526829,,,NOTNLM,artificial intelligence;automation;cancer detection;deep learning;image assistance;machine learning;outcome analysis;radiomics;radiotherapy,The authors declare no conflicts of interest.,2026/06/12 06:39,2026/06/12 06:40,2026/06/12 01:07,2026/04/15 00:00 [received];2026/05/15 00:00 [revised];2026/05/21 00:00 [accepted];2026/06/12 06:40 [medline];2026/06/12 06:39 [pubmed];2026/06/12 01:07 [entrez];2026/05/25 00:00 [pmc-release],10.3390/cancers18111715,epublish,,ORCID: 0000-0002-4904-531X;ORCID: 0009-0006-1621-446X;ORCID: 0000-0002-3397-5571;ORCID: 0000-0001-5977-6004,PMC13255613,2026/05/25,,,,,,,,PUBMED,,,,"Wang H, 2026, Cancers (Basel)",0,"Wang H, 2026, Cancers (Basel)"
+42274769,NLM,Publisher,,20260611,,,2026,"Alzheimer's disease-cancer research (inception to 2025): trends, themes, translational pathways, and insights from highly cited studies.",10.1007/s00210-026-05545-w [doi],"Alzheimer's disease-cancer research (ADCR) has gained increasing attention due to paradoxical epidemiological associations and shared yet oppositely regulated biological mechanisms; however, the field lacks an integrated synthesis of its intellectual and thematic structure. This study comprehensively mapped the longitudinal evolution, collaboration patterns, and conceptual architecture of ADCR. Scopus-indexed articles published between 1968 and 2025 were retrieved using a structured TITLE-ABS-KEY search strategy. Bibliometric indicators were analyzed using the Bibliometrix R package (Biblioshiny), and network, density, overlay, and thematic visualizations were generated using VOSviewer. Analyses included productivity trends, citation impact, collaboration networks, institutional and author performance, Bradford's and Lotka's laws, keyword co-occurrence, thematic evolution, and strategic mapping. The dataset comprised 7460 publications, with an annual growth rate of 11.98% and 24.79% international collaboration. Scientific output and citation impact were dominated by North America, Europe, and East Asia, led by the USA (2418 documents; 121,747 citations) and China (1406 documents; 40,410 citations). Thematically, Alzheimer's disease-centered neuroinflammatory mechanisms emerged as the principal motor theme, while cancer persisted as a foundational but less cohesive domain. Temporal analyses indicated a transition from early mechanistic fragmentation to consolidated interdisciplinary research, accompanied by the recent rise of molecular docking, machine learning, and network pharmacology. Collectively, ADCR is evolving into a mature, integrative field characterized by methodological innovation and growing translational convergence between neurodegeneration and oncology.","(c) 2026. The Author(s), under exclusive licence to Springer-Verlag GmbH Germany, part of Springer Nature.","Taha, Manal Mohamed Elhassan;Abdelwahab, Siddig Ibrahim;Alshahrani, Saeed;Jali, Abdulmajeed M;Qadri, Marwa;Alarifi, Abdulaziz;Al-Shamsi, Humaid Obaid",Taha MME;Abdelwahab SI;Alshahrani S;Jali AM;Qadri M;Alarifi A;Al-Shamsi HO,"Health Research Centre, Jazan University, Jazan University, 45142, Jazan, Saudi Arabia.;Health Research Centre, Jazan University, Jazan University, 45142, Jazan, Saudi Arabia. siddigroa@yahoo.com.;Department of Pharmacology and Toxicology, College of Pharmacy, Jazan University, 45142, Jazan, Saudi Arabia.;Department of Pharmacology and Toxicology, College of Pharmacy, Jazan University, 45142, Jazan, Saudi Arabia.;Department of Pharmacology and Toxicology, College of Pharmacy, Jazan University, 45142, Jazan, Saudi Arabia.;Department of Basic Sciences, College of Science and Health Professions, King Saud Bin Abdulaziz University for Health Sciences, Riyadh, Saudi Arabia.;King Abdullah International Medical Research Center, Riyadh, Saudi Arabia.;Burjeel Cancer Institute, Burjeel Medical City, P.O. Box 92510, Abu Dhabi, United Arab Emirates.;Department of Medical Oncology, Dana-Farber Cancer Institute, Harvard Medical School, Boston, MA, USA.;College of Medicine, Ras Al Khaimah Medical and Health Sciences University, Al Qusaidat, Al Juwais Ras Al Khaimah, United Arab Emirates.;Gulf Medical University, P.O Box 4184, Ajman, United Arab Emirates.;Emirates Oncology Society, P.O. Box 6600, Dubai, United Arab Emirates.;College of Medicine, University of Sharjah, P.O. Box 27272, Sharjah, United Arab Emirates.",eng,Journal Article,20260611,Germany,Naunyn Schmiedebergs Arch Pharmacol,Naunyn-Schmiedeberg's archives of pharmacology,0326264,IM,,NOTNLM,Alzheimer's disease;Bibliometric analysis;Cancer;Machine learning;Neuroinflammation,"Declarations. Ethics approval and consent to participate: There is no form of human subject involved in this manuscript; therefore, ethics approval is not required. Consent for publication: Not applicable. Clinical trial number: Not applicable. Competing interests: The authors declare no competing interests.",2026/06/11 12:39,2026/06/11 12:39,2026/06/11 11:14,2026/02/16 00:00 [received];2026/06/01 00:00 [accepted];2026/06/11 12:39 [medline];2026/06/11 12:39 [pubmed];2026/06/11 11:14 [entrez],10.1007/s00210-026-05545-w,aheadofprint,,,,,,,,,,,,PUBMED,,,,"Taha MME, 2026, Naunyn Schmiedebergs Arch Pharmacol",0,"Taha MME, 2026, Naunyn Schmiedebergs Arch Pharmacol"
+42273589,NLM,PubMed-not-MEDLINE,20260611,20260611,17,,2026,A bibliometric analysis of neuroimaging studies on cognitive control in autism spectrum disorder (2000-2025).,10.3389/fpsyt.2026.1765161 [doi];1765161,"OBJECTIVE: This study aims to systematically analyze neuroimaging research on cognitive control in Autism spectrum disorder (ASD) from 2000 to 2025 using bibliometric methods, in order to reveal the evolutionary trajectory, core knowledge base, research hotspots, and future frontiers of the field. METHODS: A search was conducted on the Web of Science Core Collection and Scopus databases, resulting in the inclusion of 1,581 relevant articles. VOSviewer and the Bibliometrix package in R were utilized to conduct a comprehensive visualization and quantitative analysis of annual publication volume, country/institution/author collaboration networks, keyword co-occurrence, document co-citation, and thematic evolution. RESULTS: (1) The volume of research literature showed exponential growth, with an annual growth rate of 21.61%, entering a period of rapid development particularly after 2012, which is closely related to the popularization of functional magnetic resonance imaging (fMRI) technology. (2) ""Functional connectivity,"" ""executive function,"" and ""default mode network"" were the most central keywords. ""Functional connectivity"" rapidly became a hub connecting various themes after 2010, marking a paradigm shift from ""functional localization"" to ""brain network dysregulation."" (3) The ""Triple network model"" proposed by Menon was the most cited document, laying the core theoretical foundation for understanding ASD as a disorder of large-scale brain network dysfunction. (4) ""Transdiagnostic"" research has emerged as a new hotspot, while ""multimodal imaging,"" ""machine learning,"" and ""dynamic connectivity"" represent highly promising future directions. CONCLUSION: Over the past two decades, neuroimaging research on cognitive control in ASD has undergone a profound paradigm shift: from focusing on abnormal activation in isolated brain regions to exploring the static and dynamic dysregulation of large-scale brain networks. The research perspective has also expanded from a single-disorder model to a transdiagnostic framework that includes comparisons with other neurodevelopmental disorders (e.g., ADHD). Future research should focus on the fusion of multimodal data, the application of computational psychiatry methods, and the translation of basic research findings into personalized clinical interventions.","Copyright (c) 2026 Hu, Zhao, Chen, Zhang and Dang.","Hu, Jing;Zhao, Jiawei;Chen, Hao-Jie;Zhang, Xinyue;Dang, Junhua",Hu J;Zhao J;Chen HJ;Zhang X;Dang J,"Faculty of Psychology, Tianjin Normal University, Tianjin, China.;Institute of Social Psychology, School of Humanities and Social Sciences, Xi'an Jiaotong University, Xi'an, China.;State Key Laboratory of Cognitive Neuroscience and Learning and IDG/McGovern Institute for Brain Research, Beijing Normal University, Beijing, China.;Division of Life Science and State Key Laboratory of Nervous System Disorders, The Hong Kong University of Science and Technology, Hong Kong, Hong Kong SAR, China.;State Key Laboratory of Cognitive Neuroscience and Learning and IDG/McGovern Institute for Brain Research, Beijing Normal University, Beijing, China.;Institute of Social Psychology, School of Humanities and Social Sciences, Xi'an Jiaotong University, Xi'an, China.;Department of Surgical Sciences, Uppsala University, Uppsala, Sweden.",eng,Journal Article;Systematic Review,20260526,Switzerland,Front Psychiatry,Frontiers in psychiatry,101545006,,,NOTNLM,autism spectrum disorder;bibliometrics;cognitive control;functional connectivity;neuroimaging;transdiagnostic;triple network 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/06/11 06:35,2026/06/11 06:36,2026/06/11 04:55,2025/12/10 00:00 [received];2026/05/03 00:00 [revised];2026/05/11 00:00 [accepted];2026/06/11 06:36 [medline];2026/06/11 06:35 [pubmed];2026/06/11 04:55 [entrez];2026/05/26 00:00 [pmc-release],10.3389/fpsyt.2026.1765161,epublish,1765161,,PMC13246715,2026/05/26,,,,,,,,PUBMED,,,,"Hu J, 2026, Front Psychiatry",0,"Hu J, 2026, Front Psychiatry"
+42260204,NLM,PubMed-not-MEDLINE,20260608,20260608,21,1,2026,Flexible electronics research knowledge mapping based on VOSviewer and CiteSpace bibliometric analysis.,10.1186/s11671-026-04706-3 [doi];251,"Innovations in polymer chemistry and materials science have accelerated the development of high-performance flexible electronics for applications in various fields. While prior research has extensively reviewed progress within specialized subfields of flexible electronics, a systematic examination of the field's overall research landscape and its interconnections with adjacent knowledge domains remains absent. This review presents the first detailed bibliometric analysis of flexible electronics research trends, effectively balancing scholarly rigor with accessibility. Through VOSviewer and CiteSpace analysis of publications spanning 2006-2025, the publications have maintained steady growth with a markedly increased growth rate in recent years. Wei Huang was the most productive authors, while John A. Rogers showed the highest total link strength. Considering the productive and impactful institution, China and USA are unequivocally the preeminent forces in the field of flexible electronic. And South Korea and Japan remain significant forces that cannot be overlooked. Flexible electronic, performance, fabrication, films, graphene, transparent, and nanoparticles were among the high-frequency keywords. Four future development directions were recognized including material innovation, advanced manufacturing technology revolution, multimodal flexible integrated sensors, and machine learning-enhanced flexible sensors for health monitoring. This bibliometric investigation aims to provide foundational guidance and strategic direction for advancing flexible electronics research.",(c) 2026. The Author(s).,"Li, Qing;Geng, Jingya;Zhou, Wen;Chen, Huamin",Li Q;Geng J;Zhou W;Chen H,"Minjiang University, Fuzhou, Fujian, China.;Minjiang University, Fuzhou, Fujian, China.;Pingtan Yuxiang Times Technology Co., Ltd, Fuzhou, 350108, Pingtan County, China. zw-fz@126.com.;Institute of Semiconductors, Chinese Academy of Sciences, Beijing, 100083, China. chenhuamin@semi.ac.cn.",eng,Journal Article;Review,20260609,Switzerland,Discov Nano,Discover nano,9918540788706676,,,NOTNLM,Bibliometric analysis;CiteSpace;Flexible electronics;Knowledge mapping;VOSviewer;Web of science,Declarations. Ethics approval and consent to participate: Not applicable. Consent for publication: Not applicable. Competing interests: The authors declare no competing interests.,2026/06/09 00:34,2026/06/09 00:35,2026/06/08 23:34,2025/12/30 00:00 [received];2026/05/29 00:00 [accepted];2026/06/09 00:35 [medline];2026/06/09 00:34 [pubmed];2026/06/08 23:34 [entrez];2026/06/09 00:00 [pmc-release],10.1186/s11671-026-04706-3,epublish,,,PMC13247010,2026/06/09,2025FZC102/Social Sciences Foundation of Fuzhou/;MTX2522/the Research Project of Fujian Provincial Library Association/;2024J011178/the Natural Science Foundation of Fujian/,,,,,,,PUBMED,,,,"Li Q, 2026, Discov Nano",0,"Li Q, 2026, Discov Nano"
+42251245,NLM,Publisher,,20260606,,,2026,Biodiversity conservation informatics under anthropogenic climate change: an open and FAIR bibliometric review.,10.1007/s42977-026-00323-4 [doi],"Informatics technologies are transforming biodiversity conservation by enabling large-scale data analysis, predictive modelling, and real-time monitoring in the face of anthropogenic climate change. This study presents a bibliometric analysis of global research on the application of informatics tools - such as machine learning, remote sensing, geographic information systems, and big data analytics - to biodiversity conservation and anthropogenic climate change. Using the Scopus database, we analysed 643 publications from 1993 to 2024 to identify research trends, collaboration networks, and emerging thematic areas. The results reveal a rapid increase in publications over the last decade, with developed countries and China leading research output, while contributions from Africa remain limited. Keyword co-occurrence analysis highlights key research themes, including species distribution modelling, climate change impacts, conservation technology, and ecological informatics. Co-authorship network mapping underscores the interdisciplinary and collaborative nature of biodiversity informatics and anthropogenic climate change research. This bibliometric review provides a quantitative synthesis of knowledge production in this field, offering insights into dominant research trajectories and identifying gaps in geographic representation and thematic coverage. Overall, the review reveals a large but geographically skewed scientific footprint whose future value depends on closing gaps in data-poor, biodiversity-rich regions and explicitly linking biodiversity informatics outputs to climate-resilient policy and practice. The findings inform future research and policy efforts aimed at leveraging informatics technologies for effective and inclusive biodiversity conservation strategies in a changing climate. This study is FAIR-aligned and accompanied by openly shared data and materials with ISO-aligned, machine-readable metadata.",(c) 2026. Akademiai Kiado Zrt.,"Kupika, Olga Laiza;Zlotnikova, Irina",Kupika OL;Zlotnikova I,"Okavango Research Institute, University of Botswana, Sexaxa, along Shorobe Road, Private Bag 285, Maun, Botswana.;Botswana International University of Science and Technology, Plot 10071, Boseja Ward, Private Bag 16, Palapye, Botswana. zlotnikovai@biust.ac.bw.",eng,Journal Article;Review,20260606,Switzerland,Biol Futur,Biologia futura,101738236,IM,,NOTNLM,Bibliometric analysis;Biodiversity conservation;Climate change;Informatics;Machine learning;Remote sensing,Declaration. Competing interest: The authors have no relevant financial or non-financial interests to disclose. Ethics approval: Not applicable.,2026/06/07 00:35,2026/06/07 00:35,2026/06/06 23:20,2025/03/22 00:00 [received];2026/06/03 00:00 [accepted];2026/06/07 00:35 [medline];2026/06/07 00:35 [pubmed];2026/06/06 23:20 [entrez],10.1007/s42977-026-00323-4,aheadofprint,,ORCID: 0000-0002-3512-5829;ORCID: 0000-0002-1865-8586,,,,,,,,,,PUBMED,,,,"Kupika OL, 2026, Biol Futur",0,"Kupika OL, 2026, Biol Futur"
+42239683,NLM,PubMed-not-MEDLINE,20260604,20260604,17,,2026,Global trends in chronic kidney disease related cognitive impairment/dementia: a bibliometric analysis (2005-2025).,10.3389/fneur.2026.1739096 [doi];1739096,"Research at the intersection of chronic kidney disease (CKD) and cognitive impairment/dementia has received increasing attention in recent years. This study conducted a bibliometric analysis of 7,971 English-language articles and reviews published between 2005 and 2025 and retrieved from Web of Science and Scopus. VOSviewer and CiteSpace were used for bibliometric visualization and network analysis. Publication trends, contributing countries/regions, institutions, authors, core journals, co-citation patterns, and keyword evolution were systematically examined. The included publications involved 12,719 authors from 150 countries to 13,280 institutions. Hooper SR and Kurella Tamura were among the most influential contributors in terms of productivity and impact. PLOS ONE had the highest number of publications, whereas The Lancet was the most frequently co-cited journal. Since 2014, 18 highly influential references have shown sustained citation bursts, mainly related to the kidney-brain axis and clinical outcomes. Keyword trends shifted from early themes such as dialysis and survival to cognitive health and quality of life, with recent emphasis on machine learning, electronic health records, and patient-centered care. Overall, the field has shown continuous growth, with North America and Europe occupying central positions in the collaboration network and with emerging trends indicating increasing attention to data-driven methods and patient-centered approaches.","Copyright (c) 2026 Sun, Long, Huang, Lv, Yang and He.","Sun, Ning;Long, Bo;Huang, Rui;Lv, Xuewen;Yang, Hongxiu;He, Cheng-Qi",Sun N;Long B;Huang R;Lv X;Yang H;He CQ,"Rehabilitation Medicine Center and Institute of Rehabilitation Medicine, West China Hospital, Sichuan University, Chengdu, China.;Key Laboratory of Rehabilitation Medicine in Sichuan Province, West China Hospital, Sichuan University, Chengdu, China.;Rehabilitation Medicine Center and Institute of Rehabilitation Medicine, West China Hospital, Sichuan University, Chengdu, China.;Department of Critical Care Medicine, The Second People's Hospital of Hunan Province (Brain Hospital of Hunan Province), Changsha, Hunan Province, China.;Department of Critical Care Medicine, The Second People's Hospital of Hunan Province (Brain Hospital of Hunan Province), Changsha, Hunan Province, China.;Nursing Department, The Second People's Hospital of Hunan Province (Brain Hospital of Hunan Province), Changsha, Hunan Province, China.;Rehabilitation Medicine Center and Institute of Rehabilitation Medicine, West China Hospital, Sichuan University, Chengdu, China.;Key Laboratory of Rehabilitation Medicine in Sichuan Province, West China Hospital, Sichuan University, Chengdu, China.",eng,Journal Article;Systematic Review,20260519,Switzerland,Front Neurol,Frontiers in neurology,101546899,,,NOTNLM,bibliometric analysis;co-citation analysis;collaboration network;keyword burst;kidney-brain axis;research trends,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/06/04 06:33,2026/06/04 06:34,2026/06/04 05:42,2025/11/04 00:00 [received];2026/04/14 00:00 [revised];2026/04/21 00:00 [accepted];2026/06/04 06:34 [medline];2026/06/04 06:33 [pubmed];2026/06/04 05:42 [entrez];2026/05/19 00:00 [pmc-release],10.3389/fneur.2026.1739096,epublish,1739096,,PMC13226549,2026/05/19,,,,,,,,PUBMED,,,,"Sun N, 2026, Front Neurol",0,"Sun N, 2026, Front Neurol"
+42236907,NLM,Publisher,,20260603,,,2026,Mapping the AI life sciences landscape in Greece: a bibliometric comparison with global patterns.,10.1038/s41598-026-56107-2 [doi],"Artificial intelligence is increasingly used in Life Sciences, though the pace and direction of adoption varies widely across countries. To map the Greek landscape, we performed a data‑driven analysis of 916,824 AI-related life-science papers harvested from OpenAlex and PubMed. We tagged each publication with Medical Subject Headings (MeSH) and compared topic frequencies between articles linked to at least one Greek institution and the rest of the world. Greek‑affiliated outputs are disproportionately concentrated under the theme of methodology and algorithm‑development, whereas the global corpus is dominated by disease‑focused, organism‑centered and clinical applications. Statistical contrasts across three MeSH hierarchy levels exposed clear national strengths in machine learning techniques and analytical tools, alongside under‑representation in translational, patient‑centred research. Overall this study combines bibliometric evidence with community perspectives and provides a comprehensive overview of AI activity in Life Sciences in Greece, highlighting potential thematic strengths and gaps.",(c) 2026. The Author(s).,"Adamidi, Eleni;Chatzopoulos, Serafeim;Dimopoulos, Alexandros C;Krithara, Anastasia;Nentidis, Anastasios;Pechlivanis, Nikos;Psomopoulos, Fotis;Vergoulis, Thanasis;Vichos, Kleanthis",Adamidi E;Chatzopoulos S;Dimopoulos AC;Krithara A;Nentidis A;Pechlivanis N;Psomopoulos F;Vergoulis T;Vichos K,"Athena Research Center, IMSI, Aigialias 19 & Chalepa, Marousi, Athens, 15125, Greece. eleni.adamidi@athenarc.gr.;PSYCHNOW LLC, 737 N. Michigan Avenue, Suite 2240, Chicago, IL, 60611, USA. eleni.adamidi@athenarc.gr.;Athena Research Center, IMSI, Aigialias 19 & Chalepa, Marousi, Athens, 15125, Greece.;Institute for Fundamental Biomedical Science, Biomedical Sciences Research Center ""Alexander Fleming"", Vari, Greece. dimopoulos@fleming.gr.;Department of Informatics and Telematics, School of Digital Technology, Harokopio University, Athens, Greece. dimopoulos@fleming.gr.;Institute of Informatics and Telecommunications, National Centre for Scientific Research (NCSR) ""Demokritos"", Agia Paraskevi, 15310, Greece. akrithara@iit.demokritos.gr.;Institute of Informatics and Telecommunications, National Centre for Scientific Research (NCSR) ""Demokritos"", Agia Paraskevi, 15310, Greece. tasosnent@iit.demokritos.gr.;Institute of Applied Biosciences, Centre for Research and Technology Hellas, 6th km Charilaou-Thermis rd, Thermi, Thessaloniki, 57001, Greece. nikosp41@certh.gr.;Institute of Applied Biosciences, Centre for Research and Technology Hellas, 6th km Charilaou-Thermis rd, Thermi, Thessaloniki, 57001, Greece. fpsom@certh.gr.;Athena Research Center, IMSI, Aigialias 19 & Chalepa, Marousi, Athens, 15125, Greece. vergoulis@athenarc.gr.;Athena Research Center, IMSI, Aigialias 19 & Chalepa, Marousi, Athens, 15125, Greece.",eng,Journal Article,20260603,England,Sci Rep,Scientific reports,101563288,IM,,,,Declarations. Competing interests: The authors declare no competing interests.,2026/06/04 00:39,2026/06/04 00:39,2026/06/03 23:36,2025/11/06 00:00 [received];2026/05/28 00:00 [accepted];2026/06/04 00:39 [medline];2026/06/04 00:39 [pubmed];2026/06/03 23:36 [entrez],10.1038/s41598-026-56107-2,aheadofprint,,,,,,,,,,,,PUBMED,,,,"Adamidi E, 2026, Sci Rep",0,"Adamidi E, 2026, Sci Rep"
+42234847,NLM,MEDLINE,20260606,20260606,28,,2026,Moving From Keywords to Contextual Meaning: A Commentary on Hybrid Bibliometric Synthesis in Health Research.,10.2196/102159 [doi];e102159,"The fast growth of social media mining in health research has contributed to an invaluable but quite fragmented body of literature. As the amount of unstructured patient-reported data grows, traditional bibliometric analyses face methodological limitations, particularly regarding synonym fragmentation and arbitrary parameter selection. In their recent publication, ""Thematic Mapping and Evolution of Social Media Mining in Health Research: Hybrid Bibliometric Synthesis,"" Yang and Bohnet-Joschko attempt to address these flaws by introducing a semantic-structural (hybrid) bibliometric framework. This commentary evaluates the methodological innovations of their study and its departure from traditional syntactic keyword-matching tools. By combining citation-informed transformers (SPECTER2) and biomedical language models (PubMedBERT) and dimensionality reduction and density-based clustering, the authors created a reproducible pipeline. In their architecture, they start with foundational machine learning (statistical validity) before transitioning into large language models for qualitative synthesis. I will attempt to explain how this transition from syntactic mapping to semantic vector representation solves known challenges in evidence synthesis, naturally grouping conceptual synonyms without artificially forcing boundaries on the literature. Furthermore, I examine the practical implications of their temporal findings. Such real-time social media mining applications can be very useful for retrospective reporting and evaluating targeted public health interventions. While this pipeline offers high generalizability across disciplines, it also introduces a computational literacy barrier to some, and this re-emphasizes the need for data literacy for health professions. Ultimately, the study provides a transparent approach to informatics because mathematically validated frameworks are foundational for the future of evidence-driven public health policy and clinical decision-making.",(c) Dimitrios Zikos. Originally published in the Journal of Medical Internet Research (https://www.jmir.org).,"Zikos, Dimitrios",Zikos D,"Department of Healthcare Management and Leadership, College of Health Professions, Texas Tech University Health Sciences Center, 3601 4th Street, Lubbock, TX, 79430, United States, 1 9894301787.",eng,Journal Article,20260603,Canada,J Med Internet Res,Journal of medical Internet research,100959882,IM,*Bibliometrics;Data Mining;Humans;*Biomedical Research;Social Media;Machine Learning;Semantics,NOTNLM,bibliometrics;machine learning;public health surveillance;semantic mapping;social media,Conflicts of Interest: None declared.,2026/06/03 18:39,2026/06/06 18:43,2026/06/03 15:13,2026/05/22 00:00 [received];2026/05/22 00:00 [accepted];2026/06/06 18:43 [medline];2026/06/03 18:39 [pubmed];2026/06/03 15:13 [entrez];2026/06/03 00:00 [pmc-release],10.2196/102159,epublish,e102159,ORCID: 0000-0002-2951-4350,PMC13232780,2026/06/03,,doi: 10.2196/86200,,,,,,PUBMED,,,,"Zikos D, 2026, J Med Internet Res",0,"Zikos D, 2026, J Med Internet Res"
+42224875,NLM,Publisher,,20260601,1042,,2026,GeoAI for polar vegetation mapping and hydrological interactions: A systematic review.,S0048-9697(26)00555-3 [pii];10.1016/j.scitotenv.2026.181891 [doi],"Remote sensing (RS) and Artificial intelligence (AI) are increasingly applied to monitor vegetation and hydrology in the Arctic and Antarctic, where logistical and environmental constraints make fieldwork difficult. These technologies offer new opportunities to track ecological change, but the extent, consistency, and methodological quality of current applications have not been systematically reviewed. This study presents the first PRISMA 2020 based systematic synthesis of AI enhanced RS, collectively termed GeoAI, applied to Arctic and Antarctic environments (2005-2025; 116 studies). Publication activity has expanded significantly since 2018, driven by the convergence of uncrewed aerial vehicle (UAV), multispectral imaging, satellite archives, and deep learning (DL). Bibliometric and conceptual-network analyses reveal a rapid shift from isolated ecological monitoring toward integrated, data-fusion frameworks linking vegetation, hydrology, and climate processes. Classical machine learning approaches remain foundational, while DL-based convolutional neural-network architectures are emerging as powerful tools for fine-scale segmentation and prediction. Most studies still operate at the landscape scale, with few achieving full UAV-to-satellite integration, exposing persistent spatial-resolution and validation gaps. Vegetation hydrology coupling is reported in most cases, though subsurface and process-based monitoring remain limited. Spectral-index analysis reveals a persistent reliance on greenness metrics, yet there is a growing shift toward pigment, moisture, and cryptogam-sensitive indices that more accurately capture plant physiological function and microclimatic interactions. This review establishes the empirical foundation for next-generation polar monitoring, emphasising hierarchical UAV-to-satellite fusion, open benchmark datasets, and explainable, ecologically grounded AI as essential pathways for scalable, climate-adaptive conservation of Earth's fastest-changing regions.",Copyright (c) 2026 The Author(s). Published by Elsevier B.V. All rights reserved.,"Amarasingam, Narmilan;Vomero, Mariapina;Platel, Arthur;Newman, Cassandra;Robinson, Sharon A;Bollard, Barbara",Amarasingam N;Vomero M;Platel A;Newman C;Robinson SA;Bollard B,"Securing Antarctica's Environmental Future (SAEF), University of Wollongong, Wollongong, New South Wales, 2522, Australia;Environmental Futures, University of Wollongong, Wollongong, New South Wales, 2522, Australia. Electronic address: narmilan@uow.edu.au.;Institute for Marine and Antarctic Studies, University of Tasmania, Hobart, Tasmania, 7004, Australia.;Securing Antarctica's Environmental Future (SAEF), Queensland University of Technology, Brisbane City, Queensland, 4000, Australia;QUT Centre for Robotics, Faculty of Engineering, Queensland University of Technology, Brisbane City, Queensland, 4000, Australia.;Securing Antarctica's Environmental Future (SAEF), University of Wollongong, Wollongong, New South Wales, 2522, Australia;Environmental Futures, University of Wollongong, Wollongong, New South Wales, 2522, Australia.;Securing Antarctica's Environmental Future (SAEF), University of Wollongong, Wollongong, New South Wales, 2522, Australia;Environmental Futures, University of Wollongong, Wollongong, New South Wales, 2522, Australia.;Securing Antarctica's Environmental Future (SAEF), University of Wollongong, Wollongong, New South Wales, 2522, Australia;Environmental Futures, University of Wollongong, Wollongong, New South Wales, 2522, Australia.",eng,Journal Article;Review,20260601,Netherlands,Sci Total Environ,The Science of the total environment,0330500,IM,,NOTNLM,Antarctica;Arctic;Deep learning;Drone;Machine learning;Satellite;Uncrewed aerial vehicle (UAV),"Declaration of competing interest The authors affirm that the research was conducted without any commercial or financial interests that could be perceived as potential conflicts of interest. The funding bodies did not influence the study's design, data collection, analysis, interpretation, manuscript preparation, or the decision to publish the findings.",2026/06/02 00:35,2026/06/02 00:35,2026/06/01 18:04,2025/12/08 00:00 [received];2026/04/08 00:00 [revised];2026/05/14 00:00 [accepted];2026/06/02 00:35 [medline];2026/06/02 00:35 [pubmed];2026/06/01 18:04 [entrez],10.1016/j.scitotenv.2026.181891,aheadofprint,181891,,,,,,,,,,,PUBMED,,,,"Amarasingam N, 2026, Sci Total Environ",0,"Amarasingam N, 2026, Sci Total Environ"
+42222842,NLM,PubMed-not-MEDLINE,20260601,20260601,9,,2026,Artificial intelligence and data analytics in human talent management.,10.3389/frai.2026.1793296 [doi];1793296,"INTRODUCTION: 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. METHODS: 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. RESULTS: 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). DISCUSSION AND CONCLUSION: 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 (c) 2026 Sarmiento Orna, Apolo-Silva, Solis-Naranjo, Borja-Salinas, Espinoza-Solis and Peralta-Gamboa.","Sarmiento Orna, Diana Alexandra;Apolo-Silva, Mariuxi Fernanda;Solis-Naranjo, Alvaro Paul;Borja-Salinas, Ely Israel;Espinoza-Solis, Eduardo Javier;Peralta-Gamboa, Dennis Alfredo",Sarmiento Orna DA;Apolo-Silva MF;Solis-Naranjo AP;Borja-Salinas EI;Espinoza-Solis EJ;Peralta-Gamboa DA,"Universidad Estatal de Milagro, Milagro, Ecuador.;Universidad Tecnica Estatal de Quevedo, Quevedo, Ecuador.;Universidad Estatal de Bolivar, Bolivar, Ecuador.;Universidad Estatal de Milagro, Milagro, Ecuador.;Universidad Estatal de Milagro, Milagro, Ecuador.;Universidad Estatal de Milagro, Milagro, Ecuador.",eng,Journal Article;Systematic Review,20260515,Switzerland,Front Artif Intell,Frontiers in artificial intelligence,101770551,,,NOTNLM,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/06/01 12:39,2026/06/01 12:40,2026/06/01 06:18,2026/01/21 00:00 [received];2026/04/08 00:00 [revised];2026/04/13 00:00 [accepted];2026/06/01 12:40 [medline];2026/06/01 12:39 [pubmed];2026/06/01 06:18 [entrez];2026/05/15 00:00 [pmc-release],10.3389/frai.2026.1793296,epublish,1793296,,PMC13219358,2026/05/15,,,,,,,,PUBMED,,,,"Sarmiento Orna DA, 2026, Front Artif Intell",0,"Sarmiento Orna DA, 2026, Front Artif Intell"
+42216394,NLM,MEDLINE,20260530,20260610,105,22,2026,The heart's fibrous web: A bibliometric analysis of cardiac fibrosis in Asia and Oceania.,10.1097/MD.0000000000049017 [doi];e49017,"BACKGROUND: Cardiac fibrosis is a pathophysiologic condition in heart diseases. It refers to an excess deposition of extracellular matrix, which will cause hardening and stiffness in heart tissues, leading to heart failure. By considering the high prevalence of cardiac fibrosis globally, a bibliometric analysis is conducted to elucidate the research trend involving the unique perspectives in both the Asia and Oceania regions. METHODS: Data were retrieved from the Scopus database without restrictions on publication year. Documents related to cardiac fibrosis affiliated with countries in Asia and Oceania were identified using the United Nations geoscheme classifications. The dataset was curated using biblioMagika and OpenRefine. Then, bibliometric mapping was conducted using VOSviewer to analyze co-authorship and keyword co-occurrence networks. RESULTS: A total of 983 publications were identified from 1985 to 2025, with a marked increase in research output from 2010 onwards. China emerged as the leading contributor in terms of productivity and total citations, while Australia showed the highest citation impact per publication. High-impact institutions and authors were identified, and core themes included molecular mechanisms such as transforming growth factor beta signaling, extracellular matrix remodeling, and noncoding RNAs. CONCLUSION: This study is the first to systematically examine cardiac fibrosis research output across Asia and Oceania using bibliometric methods. It contributes novel insights into the regional dynamics, intellectual structure, and emerging priorities within the field. By identifying key actors, collaboration networks, and knowledge gaps, this research provides valuable guidance for scholars, funding agencies, and policymakers to advance cardiac fibrosis research in regional and global contexts. However, reliance on citation-based metrics may introduce temporal bias, as older publications tend to accumulate more citations over time. Future studies should employ multi-database strategies, altmetric indicators, and machine learning approaches to address these limitations and capture a broader spectrum of research impact.","Copyright (c) 2026 the Author(s). Published by Wolters Kluwer Health, Inc.","Ahmad Damahuri, Arifah;Mohamad, Maslinawati;Abdul Rahman, Thuhairah Hasrah;Rmt Balasubramaniam, Vimala;Nasrudin, Nurdiyana;Azme, Nasibah",Ahmad Damahuri A;Mohamad M;Abdul Rahman TH;Rmt Balasubramaniam V;Nasrudin N;Azme N,"Laboratory Animal Care Unit, Universiti Teknologi MARA (UiTM), Sungai Buloh, Selangor, Malaysia.;Institute of Medical Molecular Biotechnology, Universiti Teknologi MARA (UiTM), Sungai Buloh, Selangor, Malaysia.;Accounting Research Institute, University Teknologi MARA (UiTM), Shah Alam, Selangor, Malaysia.;Faculty of Medicine, Universiti Teknologi MARA (UiTM), Sungai Buloh, Selangor, Malaysia.;Cardiovascular Advancement Research Excellence Institute (CARE-i), Universiti Teknologi MARA, Malaysia.;Nutrition, Metabolism & Cardiovascular Research Centre, Institute for Medical Research, Ministry of Health Malaysia, Setia Alam, Selangor, Malaysia.;Faculty of Medicine, Universiti Teknologi MARA (UiTM), Sungai Buloh, Selangor, Malaysia.;Faculty of Medicine, Universiti Teknologi MARA (UiTM), Sungai Buloh, Selangor, Malaysia.",eng,Journal Article,,United States,Medicine (Baltimore),Medicine,2985248R,IM,*Bibliometrics;Humans;Oceania/epidemiology;Asia/epidemiology;*Fibrosis;*Heart Diseases;*Myocardium/pathology,NOTNLM,Asia;Oceania;OpenRefine;VOSviewer;cardiac fibrosis;heart fibrosis,The authors have no funding and conflicts of interest to disclose.,2026/05/30 06:36,2026/05/30 06:37,2026/05/30 01:01,2024/08/29 00:00 [received];2026/05/04 00:00 [accepted];2026/05/30 06:37 [medline];2026/05/30 06:36 [pubmed];2026/05/30 01:01 [entrez];2026/05/29 00:00 [pmc-release],10.1097/MD.0000000000049017,ppublish,e49017,ORCID: 0000-0002-8488-6966;ORCID: 0000-0003-0044-2477,PMC13225514,2026/05/29,,,,,,,,PUBMED,,,,"Ahmad Damahuri A, 2026, Medicine (Baltimore)",0,"Ahmad Damahuri A, 2026, Medicine (Baltimore)"
+42214863,NLM,Publisher,,20260529,513,,2026,"Advances in multispectral and hyperspectral inversion for soil heavy metal contamination: Mechanisms, machine learning algorithms, and future perspectives.",S0304-3894(26)01520-7 [pii];10.1016/j.jhazmat.2026.142542 [doi],"Heavy metal (HM) contamination in soil exhibits insidious and cumulative effects, posing long-term risks to ecosystems and human health. Traditional field sampling and laboratory analysis are increasingly insufficient for large-scale continuous monitoring, driving the adoption of multispectral (MS) and hyperspectral (HS) remote sensing. Bibliometric analysis reveals clear research trends: target elements are primarily copper, lead, and zinc, while data acquisition has progressively shifted from laboratory spectroscopy to portable devices and satellite platforms, reflecting an expansion from local to regional scales. This has led to increasing data complexity and greater demands on model robustness and generalization. However, expanding the spatial scale and transitioning to satellite observations introduce fundamental challenges. Mixed pixels and moisture-induced spectral distortions reduce signal purity, while the indirect spectral response of HMs further complicates quantitative inversion. Sample scarcity and spatial heterogeneity also limit cross-regional generalization, constraining model robustness and stability. In response, models have evolved from traditional linear regression to ensemble learning methods such as Extreme Gradient Boosting (XGBoost), and further to deep learning frameworks, including Convolutional Neural Networks (CNN) and Transformers, enabling hierarchical feature extraction and task-oriented structural design. This paper reviews the key technical bottlenecks in soil HM spectral inversion, integrating bibliometric insights with methodological advances to provide a comprehensive framework for understanding current progress and guiding future developments in large-scale, high-precision inversion.",Copyright (c) 2026 Elsevier B.V. All rights reserved.,"Huang, Minghao;Wu, Xiang;Peng, Qian",Huang M;Wu X;Peng Q,"School of Geographic Sciences, School of Resources and Environmental Science, Hubei Key Laboratory of Regional Development and Environmental Response, Hubei University, Wuhan 430062, China.;School of Geographic Sciences, School of Resources and Environmental Science, Hubei Key Laboratory of Regional Development and Environmental Response, Hubei University, Wuhan 430062, China;Key Laboratory of Danjiangkou Reservoir Area's Aquatic Eco-Environment and Health, Shiyan City (Hanjiang Normal University), Shiyan 442000, China.;School of Geographic Sciences, School of Resources and Environmental Science, Hubei Key Laboratory of Regional Development and Environmental Response, Hubei University, Wuhan 430062, China;Key Laboratory of the Evaluation and Monitoring of Southwest Land Resources (Ministry of Education), Sichuan Normal University, Chengdu 610068, China. Electronic address: qianpeng@hubu.edu.cn.",eng,Journal Article;Review,20260528,Netherlands,J Hazard Mater,Journal of hazardous materials,9422688,IM,,NOTNLM,Hyperspectral;Indirect Inversion Mechanisms;Machine learning;Multispectral;Soil Heavy metals;Spectral Feature Selection,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/05/30 00:33,2026/05/30 00:33,2026/05/29 19:49,2026/02/21 00:00 [received];2026/05/25 00:00 [revised];2026/05/26 00:00 [accepted];2026/05/30 00:33 [medline];2026/05/30 00:33 [pubmed];2026/05/29 19:49 [entrez],10.1016/j.jhazmat.2026.142542,aheadofprint,142542,,,,,,,,,,,PUBMED,,,,"Huang M, 2026, J Hazard Mater",0,"Huang M, 2026, J Hazard Mater"
+42207432,NLM,MEDLINE,20260528,20260531,58,5,2026,"Animal production under climate change: a global scientometric analysis of research structure, thematic evolution, and knowledge gaps.",10.1007/s11250-026-05071-0 [doi];282,"Climate change is a major driver of transformation in livestock systems; however, existing reviews remain fragmented, often addressing environmental impacts or adaptation strategies in isolation, without systematically integrating the structure, evolution, and knowledge gaps of the field. This study addresses this limitation through a comprehensive bibliometric-scientometric analysis of global research on climate change and animal production. A total of 1,694 peer-reviewed articles and reviews indexed in Scopus (1974-2025) were retrieved using a structured search applied to titles, abstracts, and keywords. Data were processed through duplicate removal and keyword harmonization, and analyzed using Bibliometrix (R) and VOSviewer to perform co-occurrence network analysis, thematic clustering, and temporal trend evaluation. Results indicate a sustained annual growth rate of 9.47% and increasing international collaboration (35.71%), reflecting the rapid expansion of the field. The co-occurrence network reveals a highly interconnected structure, with ""climate change"" acting as the central organizing concept linking environmental, physiological, genetic, and production-related domains. Thematic analysis shows that research on greenhouse gas emissions and environmental impacts is well established, whereas emerging areas-such as climate-smart agriculture, One Health, and integrated sustainability frameworks-remain less connected to applied and policy-oriented research. Temporal trends highlight a shift, particularly after 2015, from impact-oriented studies toward more integrated approaches incorporating sustainability, animal welfare, resilience, and adaptive management, alongside increasing use of digital tools such as modeling and machine learning. In addition, life cycle modeling further indicates that the field remains in an early expansion stage, having reached approximately 11.6% of its estimated saturation level, with continued growth expected over the coming decades. Despite this progress, important gaps persist, particularly regarding the translation of scientific knowledge into practice and the uneven geographic distribution of research efforts. Strengthening region-specific and socially inclusive research, enhancing the integration between technological innovation and field-level application, and advancing interdisciplinary frameworks are key priorities to improve the adaptive capacity of livestock systems. By mapping the structure, evolution, and gaps of the field, this study provides a robust basis to inform future research agendas and support the transition toward more resilient and sustainable livestock systems under climate change.",(c) 2026. The Author(s).,"Silveira, Robson Mateus Freitas;McManus, Concepta;da Silva, Iran Jose Oliveira",Silveira RMF;McManus C;da Silva IJO,"Environment Livestock Research Group (NUPEA), Department of Biosystems Engineering, ""Luiz de Queiroz"" Agriculture College (ESALQ), University of Sao Paulo (USP), Piracicaba, SP, 13418-900, Brazil. robsonsilveira@usp.br.;Center for Nuclear Energy in Agriculture (CENA), University of Sao Paulo (USP), Av. Centenario, 303 - Sao Dimas, Piracicaba, SP, 13416-000, Brazil.;Environment Livestock Research Group (NUPEA), Department of Biosystems Engineering, ""Luiz de Queiroz"" Agriculture College (ESALQ), University of Sao Paulo (USP), Piracicaba, SP, 13418-900, Brazil.",eng,Journal Article;Review,20260528,United States,Trop Anim Health Prod,Tropical animal health and production,1277355,IM,Animals;*Climate Change;*Animal Husbandry;Bibliometrics;*Livestock;Research;Evidence Gaps,NOTNLM,Adaptation;Animal welfare;Food security;Greenhouse gases;Heat stress;Sustainability,"Declarations. Consent to participate: Not applicable. Consent for publication: Not applicable. Generative AI and AI-assisted technologies: During the preparation of this manuscript, the authors used ChatGPT to assist with readability improvement, language refinement, and manuscript organization. The manuscript was critically reviewed, revised, and validated by the authors, who assume full responsibility for the accuracy, originality, and integrity of the content. The graphical abstract was created with the assistance of AI-based image generation tools and subsequently reviewed, refined, and validated by the authors to ensure scientific accuracy and consistency with the manuscript content. Conflict of interest: The authors declare that they have no conflicts of interest.",2026/05/28 12:33,2026/05/28 12:34,2026/05/28 11:20,2026/02/20 00:00 [received];2026/04/29 00:00 [accepted];2026/05/28 12:34 [medline];2026/05/28 12:33 [pubmed];2026/05/28 11:20 [entrez];2026/05/28 00:00 [pmc-release],10.1007/s11250-026-05071-0,epublish,,ORCID: 0000-0003-2285-9695;ORCID: 0000-0002-1106-8962;ORCID: 0000-0002-4416-8433,PMC13219208,2026/05/28,,,,,,,,PUBMED,,,,"Silveira RMF, 2026, Trop Anim Health Prod",0,"Silveira RMF, 2026, Trop Anim Health Prod"
+42200024,NLM,PubMed-not-MEDLINE,20260527,20260527,16,,2026,Global trends and academic landscapes of AI applications in basal cell carcinoma research: a bibliometric analysis.,10.3389/fonc.2026.1779358 [doi];1779358,"BACKGROUND: Basal cell carcinoma (BCC), one of the most prevalent skin cancers, still faces substantial challenges in timely diagnosis and optimal management. Artificial intelligence (AI) holds promise for improving early detection, risk stratification, and treatment decision-making in BCC. However, detailed and comprehensive bibliometric analyses in this field remain scarce. METHODS: Publications related to AI and BCC were retrieved from the Web of Science Core Collection, Scopus, and Embase using predefined keyword strategies. All relevant records were exported, and 226 publications were ultimately included for analysis after screening and deduplication. Bibliometric analyses were performed using VOSviewer, CiteSpace, and the bibliometrix R package to characterize co-authorship networks, citations, keyword co-occurrence patterns, and journal distributions. RESULTS: Annual publication output increased markedly after 2019, reaching 42 publications in 2025. The United States (43 publications) and China (36 publications) were the most productive countries, with the United States also hosting many of the leading institutions and authors. According to Bradford's law of scattering, 13 core journals were identified; among them, Diagnostics (9 publications) and Skin Research and Technology (8 publications) had the highest output. Keyword analyses indicated that research hotspots center on deep learning-driven dermoscopic and digital pathology image analysis, primarily for classification and segmentation in computer-aided diagnosis of BCC. CONCLUSION: AI research in BCC has expanded rapidly since 2019. Future studies should prioritize multicenter, cross-device, and cross-population validation of multimodal AI systems and their integration into routine clinical practice to improve early detection and overall management of BCC.","Copyright (c) 2026 Li, Bai and Asihaer.","Li, Yicheng;Bai, Yanping;Asihaer, Lina",Li Y;Bai Y;Asihaer L,"Beijing University of Chinese Medicine, School of China-Japan Friendship Hospital Clinical Medicine, Beijing, China.;China-Japan Friendship Hospital, Department of Dermatology, Beijing, China.;Beijing University of Chinese Medicine, School of China-Japan Friendship Hospital Clinical Medicine, Beijing, China.",eng,Journal Article;Review,20260511,Switzerland,Front Oncol,Frontiers in oncology,101568867,,,NOTNLM,artificial intelligence;basal cell carcinoma;bibliometrics;deep learing;dermoscopy;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/05/27 12:20,2026/05/27 12:21,2026/05/27 04:34,2026/01/01 00:00 [received];2026/03/22 00:00 [revised];2026/04/27 00:00 [accepted];2026/05/27 12:21 [medline];2026/05/27 12:20 [pubmed];2026/05/27 04:34 [entrez];2026/05/11 00:00 [pmc-release],10.3389/fonc.2026.1779358,epublish,1779358,,PMC13199083,2026/05/11,,,,,,,,PUBMED,,,,"Li Y, 2026, Front Oncol",0,"Li Y, 2026, Front Oncol"
+42199009,NLM,Publisher,,20260527,,,2026,The emerging role of oligodendrocytes in Alzheimer's disease: Integrating bibliometric insights with molecular pathogenesis.,10.1177/13872877261450636 [doi],"BackgroundOligodendrocytes (OLs) have received relatively limited attention in Alzheimer's disease (AD) research; however, recent studies highlight their significant role in AD pathology, particularly in neuroinflammation and myelin integrity.ObjectiveTo bibliometrically analyze oligodendrocyte research in AD.MethodsLiterature was retrieved from Web of Science and Scopus on July 8, 2025. CiteSpace, VOSviewer, and R-based bibliometrix were used for visualization and trend analysis.ResultsA total of 1780 publications from 1981 to 2025 were analyzed. Research output in this field grew significantly, particularly post-2010, following an exponential growth pattern consistent with Price's Law. The USA, China, and Japan were the top contributors, with the USA showing the highest number of publications. The University of California System, Harvard University, and Mayo Clinic emerged as central institutions, while influential authors included George Bartzokis, David A. Bennett, and Patrick L. McGeer. Leading journals, like Frontiers in Cellular Neuroscience and Acta Neuropathologica have seen a steady increase in research contributions over the years. Keywords analysis showed that terms such as ""microbiota"", ""microglia"", ""astrocyte"", ""Alzheimer's disease"", ""neurodegeneration"", ""oligodendrocyte"" are prominently displayed, Keywords evolution analysis showed that ""exosomes"", ""extracellular vesicles"", ""white matter injury"", ""oligodendrocyte precursor cell"", ""neurodegeneration"" ""myelination"" ""machine learning"" gradually attracted attention.ConclusionsThe study illustrates a paradigm shift in AD research, from classic pathological markers to a broader understanding that includes neuroglial interactions. This trend emphasizes the role of OLs in neuroinflammation and myelin integrity, presenting new avenues for therapeutic strategies.",,"Yang, Xiaojuan;Gao, Yanlin;Zhang, Minheng;Pan, Jian;Liu, Hongwei;Fan, Haixia",Yang X;Gao Y;Zhang M;Pan J;Liu H;Fan H,"Department of Geriatrics, First Hospital of Shanxi Medical University, Taiyuan, People's Republic of China. RINGGOLD: 105862;Department of Geriatrics, First Hospital of Shanxi Medical University, Taiyuan, People's Republic of China. RINGGOLD: 105862;Department of Gerontology, The First People's Hospital of Jinzhong, Jinzhong, China. RINGGOLD: 674204;Department of Anesthesiology, Shenzhen People's Hospital Longhua Branch, Shenzhen, China. RINGGOLD: 12387;Department of Neurology, Xuanwu Hospital of Capital Medical University, Beijing, China.;Department of Geriatrics, First Hospital of Shanxi Medical University, Taiyuan, People's Republic of China. RINGGOLD: 105862",eng,Journal Article,20260527,United States,J Alzheimers Dis,Journal of Alzheimer's disease : JAD,9814863,IM,,NOTNLM,Alzheimer's disease;bibliometric analysis;neurodegenerative disorders;neuroinflammation;oligodendrocytes,,2026/05/27 06:42,2026/05/27 06:42,2026/05/27 03:13,2026/05/27 06:42 [medline];2026/05/27 06:42 [pubmed];2026/05/27 03:13 [entrez],10.1177/13872877261450636,aheadofprint,13872877261450636,ORCID: 0009-0007-6404-2997,,,,,,,,,,PUBMED,,,,"Yang X, 2026, J Alzheimers Dis",0,"Yang X, 2026, J Alzheimers Dis"
+42198236,NLM,PubMed-not-MEDLINE,20260527,20260529,18,5,2026,Global Trends in Integrating Machine Learning (ML) with Model-Informed Drug Development (MIDD): A Bibliometric and Systematic Review (2015-2025).,10.3390/pharmaceutics18050542 [doi];542,"Background/Objectives: The integration of machine learning (ML) within model-informed drug development (MIDD) represents a rapidly evolving paradigm in pharmacometrics, enabling improved prediction, optimization, and regulatory decision-making across drug development pipelines. However, the extent to which ML methods are explicitly integrated into regulatory decision-making remains limited and unevenly characterized. This study aims to systematically map the ML-MIDD scholarly landscape, identify core sources and contributors, assess thematic evolution, and summarize key methodological advancements through an integrative bibliometric and systematic review. Methods: A comprehensive literature search was conducted across Web of Science, Scopus, and PubMed (2015-2025), followed by metadata harmonization and deduplication. Bibliometric analysis was performed using Bibliometrix, VOSviewer, and PRISMA guidelines to characterize publication trends, collaboration patterns, thematic structures, and representative methodological contributions. Results: A total of 770 records were initially retrieved, with Scopus contributing the largest share (n = 343; 44.5%), followed by Web of Science (n = 322; 41.8%) and PubMed (n = 105; 13.6%). After deduplication, 607 unique publications remained (78.8% of total), and 560 were included in the final systematic review (97.6% of full texts). Publications spanned 269 sources, with core journals accounting for 28% of output. The United States led in volume (n = 665; 20.8%) and international collaboration (16.47%). Thematic evolution revealed transitions from foundational PK/PD methods (2016-2018) to applied ML-driven precision pharmacology (2022-2025). Conclusions: Emerging methods included deep learning, reinforcement learning, and hybrid mechanistic-ML models. ML-MIDD is a rapidly maturing interdisciplinary field, evidenced by expanding methodological diversity and increasing use of ML-enabled components within regulatory-relevant modeling workflows, rather than formal regulatory endorsement of ML-MIDD as a standalone methodology, indicating growing translational relevance but continued need for validation and regulatory clarity.",,"Dermawan, Doni;Chtita, Samir;Alotaiq, Nasser",Dermawan D;Chtita S;Alotaiq N,"Department of Applied Biotechnology, Faculty of Chemistry, Warsaw University of Technology, 00-661 Warsaw, Poland.;Laboratory of Analytical and Molecular Chemistry, Faculty of Sciences Ben M'Sik, Hassan II University of Casablanca, Casablanca 20670, Morocco.;Health Sciences Research Center (HSRC), Imam Mohammad Ibn Saud Islamic University (IMSIU), Riyadh 13317, Saudi Arabia.",eng,Journal Article;Review,20260428,Switzerland,Pharmaceutics,Pharmaceutics,101534003,,,NOTNLM,artificial intelligence;bibliometric analysis;deep learning;machine learning;model-informed drug development;pharmacometrics;physiologically based pharmacokinetic modeling;precision pharmacology;quantitative systems pharmacology,The authors declare no conflicts of interest.,2026/05/27 06:36,2026/05/27 06:37,2026/05/27 01:23,2025/12/18 00:00 [received];2026/01/09 00:00 [revised];2026/01/09 00:00 [accepted];2026/05/27 06:37 [medline];2026/05/27 06:36 [pubmed];2026/05/27 01:23 [entrez];2026/04/28 00:00 [pmc-release],10.3390/pharmaceutics18050542,epublish,,ORCID: 0000-0003-2545-1775;ORCID: 0000-0003-2344-5101;ORCID: 0009-0005-8709-8710,PMC13210285,2026/04/28,IMSIU-DDRSP-RP25/Deanship of Scientific Research at Imam Mohammad Ibn Saud Islamic University (IMSIU)/,,,,,,,PUBMED,,,,"Dermawan D, 2026, Pharmaceutics",0,"Dermawan D, 2026, Pharmaceutics"
+42197123,NLM,MEDLINE,20260527,20260529,31,10,2026,Mapping the Convergence of Frontier Technologies for Major Environmental Challenges: A Chemical and Molecular Perspective on the Use of AI for Climate Action and Antimicrobial Resistance.,10.3390/molecules31101571 [doi];1571,"The planet faces the critical interconnected challenges of climate change and antimicrobial resistance (AMR); these two crises mutually reinforce each other, threatening global health and ecosystem stability. This study conducts a systematic documentary analysis to map the convergence and identify the structural gaps between two key technological domains: artificial intelligence (AI) for climate action and molecular methods for AMR. The methodology was based on a corpus of 179 scientific documents indexed in Scopus (2010-2025), analyzed with data science tools to identify trends, collaborations, and impact. Quantitative results revealed clear leadership by the United States, accounting for 37.4% of publications, followed by China (26.8%); this leadership reflects the concentration of high-throughput molecular surveillance infrastructure and data science clusters essential for monitoring the environmental resistome. In terms of scientific impact, Spain showed the highest average, with 32.8 citations per article. The most influential work, a review on food security and sustainability, accumulated 275 citations. Network analysis identified authors such as Zhu, Yongguan, with 240 citations in total, as central nodes in international collaborations. Thematically, metagenomics and machine learning emerged as mature and interconnected research cores. This analysis confirms a solid yet still fragmented relationship between the two fields. The analysis reveals that, while metagenomic tools dominate the current literature, a gap persists in correlating genotypic resistance potential with functional phenotypic expression under changing climatic stressors. The results confirm a solid yet still fragmented foundation, highlighting the need for hybrid platforms that transition from descriptive bibliometrics to functional integration for designing systemic solutions. Future work should prioritize the development of hybrid platforms, such as intelligent biosensors, and collaborative governance frameworks that accelerate effective responses to these dual crises.",,"Rojas-Flores, Segundo Jonathan;Liza, Rafael;Nazario-Naveda, Renny;Diaz, Felix;Delfin-Narciso, Daniel;Cardenas, Moises Gallozzo;Cabanillas-Chirinos, Luis",Rojas-Flores SJ;Liza R;Nazario-Naveda R;Diaz F;Delfin-Narciso D;Cardenas MG;Cabanillas-Chirinos L,"Facultad de Ingenieria y Arquitectura, Universidad Autonoma del Peru, Lima 15842, Peru.;Escuela de Posgrado, Universidad Continental, Lima 15113, Peru.;Departamento de Ciencias, Universidad Tecnologica del Peru, Trujillo 13011, Peru.;Facultad de Ingenieria y Arquitectura, Universidad Autonoma del Peru, Lima 15842, Peru.;Grupo de Investigacion en Ciencias Aplicadas y Nuevas Tecnologias, Universidad Privada del Norte, Trujillo 13011, Peru.;Departamento de Ciencias, Universidad Tecnologica del Peru, Trujillo 13011, Peru.;Institutos y Centro de Investigacion, Universidad Cesar Vallejo, Trujillo 13001, Peru.",eng,Journal Article;Review,20260508,Switzerland,Molecules,"Molecules (Basel, Switzerland)",100964009,IM,"*Artificial Intelligence;*Climate Change;Metagenomics;Humans;*Drug Resistance, Microbial",NOTNLM,antimicrobial resistance;artificial intelligence;climate change;metagenomics,The authors declare no conflicts of interest.,2026/05/27 06:41,2026/05/27 06:42,2026/05/27 01:19,2026/02/19 00:00 [received];2026/04/23 00:00 [revised];2026/05/06 00:00 [accepted];2026/05/27 06:42 [medline];2026/05/27 06:41 [pubmed];2026/05/27 01:19 [entrez];2026/05/08 00:00 [pmc-release],10.3390/molecules31101571,epublish,,ORCID: 0000-0002-7295-1564;ORCID: 0000-0002-8232-058X;ORCID: 0000-0002-9664-0496,PMC13210365,2026/05/08,,,,,,,,PUBMED,,,,"Rojas-Flores SJ, 2026, Molecules",0,"Rojas-Flores SJ, 2026, Molecules"
+42181175,NLM,MEDLINE,20260525,20260525,17,,2026,Global knowledge graph of osteoporosis biomarkers based on large language model embeddings and complex network algorithms.,10.3389/fendo.2026.1776707 [doi];1776707,"BACKGROUND: This study applies advanced artificial intelligence technologies to reconstruct the global research landscape of osteoporosis (OP) biomarkers and to predict emerging nodes with potential clinical value. METHODS: Literature from the Web of Science Core Collection and PubMed over the past 20 years was integrated. The OpenAI text-embedding-3-large model mapped keywords into a high-dimensional semantic space, enabling deep clustering through cosine similarity and reducing polysemy. The Walktrap community detection algorithm and Callon strategic diagram were used to identify high-centrality, low-density themes in the ""fourth quadrant."" Gemini 2.5 Pro was applied to generate entity-relation triples, which were validated through a human-in-the-loop process and integrated into a refined knowledge graph. Topological indicators such as betweenness centrality were used to detect emerging potential nodes. RESULTS: A total of 1595 core publications were included, showing a significant linear rise in annual output. Nine major research themes were identified. The strategic diagram highlighted three high-potential domains: inflammation and immune regulation, detection technologies and biosensing, and gut microbiota and metabolism. Knowledge-graph analysis revealed oxidative stress as a key bridging node integrating immune, metabolic, and other systems. Several emerging nodes with strong connective potential were identified outside traditional hotspots, including molecular biomarkers such as lncRNA MEG3, miR-21-5p, spermidine, and Treg-Exo, as well as imaging innovations such as opportunistic CT screening and vertebral bone marrow PDFF. These findings indicate a paradigm shift in OP research from single-hormone mechanisms toward a multidimensional network involving inflammation, immunity, gut microbiota, and imaging. CONCLUSION: Integrating AI-based embedding models with complex network algorithms, this study overcomes limitations of traditional bibliometrics and systematically uncovers the latent knowledge structure of OP biomarkers. The identified emerging nodes offer robust evidence and forward-looking guidance for early precision screening-such as liquid biopsy and radiation-free imaging-and for developing novel therapeutic strategies, including bone-targeted exosomes and gut-bone axis interventions.","Copyright (c) 2026 Tan, Liang, Liu, Fan, Pan, Zhou, Yang and Wang.","Tan, Qizhi;Liang, Wenchu;Liu, Manting;Fan, Qiaoming;Pan, Wenhao;Zhou, Junlin;Yang, Qingyi;Wang, Kexin",Tan Q;Liang W;Liu M;Fan Q;Pan W;Zhou J;Yang Q;Wang K,"Guangzhou University of Chinese Medicine, Guangzhou, China.;The Eighth Clinical Medical College of Guangzhou University of Chinese Medicine, Foshan, China.;Guangzhou University of Chinese Medicine, Guangzhou, China.;Guangdong Provincial Hospital of Integrated Traditional Chinese and Western Medicine, Foshan, Guangdong, China.;Guangzhou University of Chinese Medicine, Guangzhou, China.;Guangzhou University of Chinese Medicine, Guangzhou, China.;Guangzhou University of Chinese Medicine, Guangzhou, China.;Guangzhou University of Chinese Medicine, Guangzhou, China.",eng,Journal Article,20260508,Switzerland,Front Endocrinol (Lausanne),Frontiers in endocrinology,101555782,IM,Humans;*Osteoporosis/diagnosis/metabolism;*Biomarkers/metabolism/analysis;*Algorithms;Artificial Intelligence;Large Language Models,NOTNLM,biomarkers;complex network analysis;knowledge graph;large language model embeddings;osteoporosis,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/05/25 12:35,2026/05/25 12:36,2026/05/25 07:59,2025/12/28 00:00 [received];2026/04/08 00:00 [revised];2026/04/20 00:00 [accepted];2026/05/25 12:36 [medline];2026/05/25 12:35 [pubmed];2026/05/25 07:59 [entrez];2026/05/08 00:00 [pmc-release],10.3389/fendo.2026.1776707,epublish,1776707,,PMC13193976,2026/05/08,,,0 (Biomarkers),,,,,PUBMED,,,,"Tan Q, 2026, Front Endocrinol (Lausanne)",0,"Tan Q, 2026, Front Endocrinol (Lausanne)"
+42176042,NLM,Publisher,,20260523,,,2026,"Pharmacology through the lens of bibliometrics: global trends, research hotspots, and collaborations (2015-2026).",10.1007/s00210-026-05470-y [doi],"The current study conducts extensive bibliometric analysis of pharmacology bibliometric publications worldwide during 2015-April 15, 2026. The objective of this study was to explore publication trends, contributors, and research hotspots. The search process was conducted using the Scopus database, with analysis being performed using the VOSviewer software. In total, 1014 articles were selected out of 1242 studies. The yearly publication count has risen significantly from 23 in 2015 to 280 in 2025, representing approximately 12 times more publications, while total citation count amounted to 14,984 citations, with a maximum citation count of 3922 in 2025. Geographical distribution demonstrated China as the leading producer with 419 publications, while the second and third places belong to the USA (104) and India (96). However, the USA leads in terms of collaboration intensity. Journals with the highest number of published papers include Frontiers in Pharmacology, with 43 articles and 786 citations. The keyword co-occurrence analysis reveals the presence of key topics such as drug therapy, oxidative stress, inflammation, and bibliometric analysis. Emerging topics include artificial intelligence and machine learning. The results of collaboration network analysis show growing globalization trends, although regional differences remain significant.","(c) 2026. The Author(s), under exclusive licence to Springer-Verlag GmbH Germany, part of Springer Nature.","Kumar, Narendra",Kumar N,"Department of Biotechnology, Noida Institute of Engineering and Technology, Greater Noida, Uttar Pradesh, 201306, India. narendra.kumar@niet.co.in.",eng,Journal Article,20260523,Germany,Naunyn Schmiedebergs Arch Pharmacol,Naunyn-Schmiedeberg's archives of pharmacology,0326264,IM,,NOTNLM,Artificial intelligence;Bibliometrics;Citation analysis;Drug Research;Pharmacology;Research trends;Scientometrics;VOSviewer,Declarations. Ethics approval: Not applicable. Consent to participate: Not applicable. Consent for publication: Not applicable. Competing interests: The authors declare no competing interests.,2026/05/24 04:33,2026/05/24 04:33,2026/05/23 11:04,2026/04/22 00:00 [received];2026/05/15 00:00 [accepted];2026/05/24 04:33 [medline];2026/05/24 04:33 [pubmed];2026/05/23 11:04 [entrez],10.1007/s00210-026-05470-y,aheadofprint,,,,,,,,,,,,PUBMED,,,,"Kumar N, 2026, Naunyn Schmiedebergs Arch Pharmacol",0,"Kumar N, 2026, Naunyn Schmiedebergs Arch Pharmacol"
+42175949,NLM,Publisher,,20260523,,,2026,Computational Advances in Biomaterial Engineering: Mapping Research Trajectories Through Bibliometric Analysis.,10.1177/19373368261449957 [doi],"Alternatives to animal models, including computational-based approaches, are now prioritized by regulatory and funding agencies in biomedical research. Despite this shift in policy, computer models in tissue engineering and regenerative medicine remain underutilized and have not been fully integrated into research and development pipelines. This study aims to identify current and emerging computational techniques in regenerative biomaterials through comprehensive bibliometric analysis and to examine future directions in the evolving field of tissue engineering. Using the Web of Science database, a total of 678 studies with a primarily computational component between January 1, 2014, and March 31, 2025, were included in the analysis. Studies were grouped by computational method (e.g., computational fluid dynamics [CFD], molecular dynamics [MD], agent-based modeling) and by tissue type (e.g., bone, cartilage). Our analysis found that CFD/finite element modeling (FEM) was the most common computational method used for biomaterial research. Based on co-citation and co-keyword network analyses, CFD/FEM was primarily applied to study and optimize material properties like viscoelasticity, porosity, and microstructure. Parameter estimation and sensitivity analysis were a key application across all computational methods. Timeline and thematic analyses identified that modeling of stem cell biomaterials is an emerging topic, including research to emulate cell behavior, scaffold mechanics, and their complex interactions. Hybrid models, especially combining CFD/FEM with MD, are likely to become more prevalent to integrate multimodel data. Since 2023, data-driven models including machine learning and artificial intelligence have emerged as surrogate models for complex mechanistic simulations. However, concerns about data scarcity and the interpretability of these models must still be addressed to meet regulatory standards. Integrating data-driven and mechanistic models creates a synergistic solution that overcomes the limitations of either method alone. Informed by insights from this bibliometric review, researchers can confidently apply computational techniques for innovative biomaterial solutions in tissue engineering and regenerative medicine.Impact StatementComputational modeling is at the forefront of design and development in tissue engineering and regenerative medicine. This review uses bibliometric analysis to synthesize the research landscape of computational modeling for regenerative biomaterials over the last decade. We identified established and emerging computational techniques, such as computational fluid dynamics and mathematical models, for the optimization of scaffolds, cell dynamics, and manufacturing methods. Owing to the growing complexity of biomaterial engineering, partly driven by high-throughput data, future computational pipelines will likely rely on hybrid models that integrate mechanistic modeling with machine learning and artificial intelligence.",,"Munipalle, Meghana;Dang, Annie;Celiz, Adam;Li, Jianyu;Li-Jessen, Nicole Y K",Munipalle M;Dang A;Celiz A;Li J;Li-Jessen NYK,"Department of Biomedical Engineering, Faculty of Medicine and Health Sciences, McGill University, Montreal, Canada.;Department of Computer Science, Faculty of Science, McGill University, Montreal, Canada.;Department of Bioengineering, Faculty of Engineering, Imperial College London, London, UK.;Department of Biomedical Engineering, Faculty of Medicine and Health Sciences, McGill University, Montreal, Canada.;Department of Mechanical Engineering, Faculty of Engineering, McGill University, Montreal, Canada.;Department of Surgery, Faculty of Medicine and Health Sciences, McGill University, Montreal, Canada.;Department of Biomedical Engineering, Faculty of Medicine and Health Sciences, McGill University, Montreal, Canada.;School of Communication Sciences & Disorders, Faculty of Medicine and Health Sciences, McGill University, Montreal, Canada.;Department of Otolaryngology-Head & Neck Surgery, Faculty of Medicine and Health Sciences, McGill University, Montreal, Canada.;Translational Research in Respiratory Diseases Program, The Research Institute of the McGill University Health Centre, Montreal, Canada.",eng,Journal Article;Review,20260523,United States,Tissue Eng Part B Rev,"Tissue engineering. Part B, Reviews",101466660,IM,,NOTNLM,bibliometrics;biomaterials;computer simulation;machine learning;regenerative medicine;scaffold design,,2026/05/24 04:36,2026/05/24 04:36,2026/05/23 09:43,2026/05/24 04:36 [medline];2026/05/24 04:36 [pubmed];2026/05/23 09:43 [entrez],10.1177/19373368261449957,aheadofprint,19373368261449957,ORCID: 0009-0007-6325-7005;ORCID: 0000-0003-2963-4763,,,,,,,,,,PUBMED,,,,"Munipalle M, 2026, Tissue Eng Part B Rev",0,"Munipalle M, 2026, Tissue Eng Part B Rev"
+42163960,NLM,PubMed-not-MEDLINE,20260521,20260521,13,,2026,The global state of GLIM criteria in oncology: a bibliometric analysis of research trends (2019-2025).,10.3389/fnut.2026.1802280 [doi];1802280,"OBJECTIVES: This study aims to delineate the research landscape and evolutionary trajectory of the GLIM criteria in oncology. By mapping development from initial diagnosis to emerging frontiers, it identifies research hotspots, collaborative patterns, and paradigm shifts to provide a strategic reference for optimizing nutrition management and future oncological inquiries. METHODS: A systematic search was performed in the Web of Science Core Collection and Scopus databases (2019-2025), followed by comprehensive bibliometric analyses and network visualizations using CiteSpace and VOSviewer. RESULTS: A total of 342 publications were identified, showing a sharp linear increase from 2019 to 94 papers in 2025. China, Spain, Japan, Brazil and Italy led global productivity, with Shi Hanping as the most prolific author, while several European nations achieved higher citation impact. Capital Medical University emerged as the leading institution. The most productive were Nutrients, Clinical Nutrition, and Frontiers in Nutrition. Keyword analysis identified ""GLIM criteria"" as the central theme, with ""overall survival"" exhibiting the strongest citation burst. The field has evolved from initial tool validation and body composition analysis toward the increasing application of machine learning-based approaches in prognostic modeling. Current research frontiers emphasize ""nutritional therapy"" and ""precision intervention,"" with clinical applications expanding from common gastrointestinal and lung cancers to a broader spectrum of malignancies. This trajectory indicates a maturing research paradigm shifting from basic malnutrition diagnosis toward data-driven, precision clinical intervention. CONCLUSION: The GLIM criteria have evolved from a simple diagnostic validation framework toward an emergent role in precision oncology.","Copyright (c) 2026 Zhang, Lyu, Liu, Chen, Ming and Huang.","Zhang, Guoqing;Lyu, Yishu;Liu, Xinying;Chen, Yingyi;Ming, Fu;Huang, Jiaguo",Zhang G;Lyu Y;Liu X;Chen Y;Ming F;Huang J,"Department of Clinical Nutrition, West China Hospital, Sichuan University, Chengdu, Sichuan, China.;Department of Clinical Nutrition, West China Hospital, Sichuan University, Chengdu, Sichuan, China.;Department of Clinical Nutrition, West China Hospital, Sichuan University, Chengdu, Sichuan, China.;Department of Clinical Nutrition, West China Hospital, Sichuan University, Chengdu, Sichuan, China.;Department of Clinical Nutrition, West China Hospital, Sichuan University, Chengdu, Sichuan, China.;Department of Urology, Affiliated Xiaoshan Hospital, Hangzhou Normal University, Hangzhou, Zhejiang, China.",eng,Journal Article;Systematic Review,20260505,Switzerland,Front Nutr,Frontiers in nutrition,101642264,,,NOTNLM,bibliometric analysis;global leadership initiative on malnutrition;inflammation;muscle mass;oncology,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/05/21 06:33,2026/05/21 06:34,2026/05/21 04:35,2026/02/02 00:00 [received];2026/04/14 00:00 [revised];2026/04/16 00:00 [accepted];2026/05/21 06:34 [medline];2026/05/21 06:33 [pubmed];2026/05/21 04:35 [entrez];2026/05/05 00:00 [pmc-release],10.3389/fnut.2026.1802280,epublish,1802280,,PMC13183560,2026/05/05,,,,,,,,PUBMED,,,,"Zhang G, 2026, Front Nutr",0,"Zhang G, 2026, Front Nutr"
+42159683,NLM,Publisher,,20260520,,,2026,Machine learning assisted technoeconomic assessment of microalgal biofuel production pathways.,10.1007/s00449-026-03340-8 [doi],"The incorporation of artificial intelligence (AI) and machine learning (ML) into microalgal research is transforming biomass generation, biofuel synthesis, and wastewater remediation strategies. Sophisticated ML techniques, such as artificial neural networks (ANN), support vector machines (SVM), and genetic algorithms (GA), facilitate precise simulation and forecasting of highly intricate microalgal systems. Although constraints related to data accessibility and model scalability persist, ML-based methodologies are increasingly demonstrating their value in enhancing the sustainability and operational efficiency of microalgal processes. Simultaneously, technoeconomic analysis (TEA) has become an indispensable framework for assessing biorefinery viability through systematic evaluation of life-cycle environmental burdens. Recent progress in TEA methodologies has strengthened iterative design optimization, uncertainty quantification, and user accessibility via open-source computational platforms. Broader systems boundaries now account for policy mechanisms, performance during end-use phase, and international market dynamics, thereby reinforcing TEA's contribution to sustainable bioeconomic advancement. Collectively, these computational and analytical innovations are expediting the deployment of scalable and economically feasible microalgal technologies.Highlights The convergence of AI/ML technologies significantly advances microalgal biomass enhancement and biofuel process optimization. Chlorella remains a prominent genus investigated for biodiesel application owing to its elevated lipid accumulation and productivity. ML approaches, including ANN and SVM, effectively represent and simulate complex microalgal cultivation systems. Bibliometric evaluations indicate a rising research trajectory in AI/ML-driven microalgal studies. Persistent limitations include restricted data availability and challenges in scaling AI/ML frameworks to practical industrial environments.","(c) 2026. The Author(s), under exclusive licence to Springer-Verlag GmbH Germany, part of Springer Nature.","Singh, Rashmi;Abbaszadeh, Mohaddeseh;Punna, Sai Kumar;Pusuluru, Suvarshitha;Samuel, Melvin S;Ethiraj, Selvarajan;Almukhlifi, Hanadi A;Khan, Farhan R;Hazazi, Ali;Menaa, Farid",Singh R;Abbaszadeh M;Punna SK;Pusuluru S;Samuel MS;Ethiraj S;Almukhlifi HA;Khan FR;Hazazi A;Menaa F,"Department of Physics, Institute of Applied Sciences and Humanities, GLA University, Mathura, Uttar Pradesh, 281406, India.;W Booth School of Engineering Practice and Technology, McMaster University, Hamilton, ON, Canada. moha.abaszadeh@gmail.com.;Department of Materials Science and Engineering, University of Houston, Houston, TX, 77004, USA.;Department of Engineering Data Science, University of Houston, Houston, TX, 77004, USA.;Department of Materials Science and Engineering, University of Wisconsin Milwaukee, Milwaukee, WI, 53211, USA. melvinsamuel08@gmail.com.;Department of Bioengineering, Saveetha School of Engineering, Saveetha Institute of Medical and Technical, Chennai, Tamil Nadu, 602105, India. melvinsamuel08@gmail.com.;Department of Genetic Engineering, College of Engineering and Technology, School of Bioengineering, SRM Institute of Science and Technology, Kattankulathur, Tamil Nadu, India.;Department of Chemistry, Faculty of Science, University of Tabuk, Tabuk, 71491, Kingdom of Saudi Arabia.;Department of Clinical Laboratory Science, College of Applied Medical Sciences, Shaqra University, Al-Quwayihah, Riyadh, 11971, Kingdom of Saudi Arabia.;Department of Pathology and Laboratory Medicine, Security Forces Hospital Program, Riyadh, 11481, Kingdom of Saudi Arabia.;College of Medicine, Alfaisal University, Riyadh, 11533, Kingdom of Saudi Arabia.;Department of Biomedical and Environmental Engineering (BEE), California Innovations Corporation (CIC), San Diego, CA, 92037, USA.",eng,Journal Article;Review,20260520,Germany,Bioprocess Biosyst Eng,Bioprocess and biosystems engineering,101088505,IM,,NOTNLM,Artificial Intelligence;Biofuel Production;Biomass;Biowaste-to-Bioenergy;Machine Learning;Microalgae,Declarations. Conflict of interest: The authors declare no competing interests.,2026/05/20 12:39,2026/05/20 12:39,2026/05/20 11:13,2026/02/25 00:00 [received];2026/04/15 00:00 [accepted];2026/05/20 12:39 [medline];2026/05/20 12:39 [pubmed];2026/05/20 11:13 [entrez],10.1007/s00449-026-03340-8,aheadofprint,,,,,,,,,,,,PUBMED,,,,"Singh R, 2026, Bioprocess Biosyst Eng",0,"Singh R, 2026, Bioprocess Biosyst Eng"
+42157858,NLM,PubMed-not-MEDLINE,20260520,20260520,18,,2026,Integrative bibliometric and transcriptomic analyses identify selenium-associated molecular signatures in the aging brain.,10.3389/fnagi.2026.1791352 [doi];1791352,"BACKGROUND AND PURPOSE: The aging brain is particularly sensitive to alterations in selenium status. Selenium deficiency has been associated with impaired neural function, cognitive decline, and increased vulnerability to neurodegeneration. However, the molecular mechanisms that link selenium biology to brain aging remain poorly understood. METHODS: We conducted a bibliometric analysis of 1,826 publications and identified brain-aging DEGs from public datasets. After intersecting these with selenium-related gene sets, we used machine-learning feature selection and SHAP/nomogram evaluation to prioritize core genes, validated findings in an independent cohort, performed immune-infiltration and gene-drug enrichment analyses, and confirmed age-related transcriptional and protein changes in mouse brain tissue. RESULTS: Bibliometric analysis showed a steady increase in publications on selenium and aging over the past two decades, with major research hotspots focusing on oxidative stress, selenoproteins, and cognitive function, while the selenium-cognition relationship remains relatively underexplored. Intersection analysis identified seven potential targets linking selenium to brain aging, from which machine-learning feature selection prioritized three core genes (SP1, SEPHS2, and MSRB1) that were significantly differentially expressed in aged samples. SHAP and nomogram analyses indicated that SP1 and SEPHS2 were the main contributors to model discrimination. Animal experiments further confirmed increased SP1 and decreased SEPHS2 expression at both mRNA and protein levels in aged mouse brains, consistent with the bioinformatic findings. CONCLUSION: This study identifies SP1 and SEPHS2 as key genes linking selenium to brain aging, providing new insights into the role of selenium in brain aging and suggesting that these genes may represent potential biomarkers or therapeutic targets for brain aging and aging-related brain disorders.","Copyright (c) 2026 Liu, Yan, Gao, Zhang, Zhang, Liu, Chen and Lei.","Liu, Shan;Yan, Bo;Gao, Han;Zhang, Lin;Zhang, Zihan;Liu, Yaru;Chen, Fanglian;Lei, Ping",Liu S;Yan B;Gao H;Zhang L;Zhang Z;Liu Y;Chen F;Lei P,"Department of Geriatrics, Tianjin Medical University General Hospital, Tianjin, China.;Key Laboratory of Post-Trauma Neuro-Repair and Regeneration in Central Nervous System, Ministry of Education, Tianjin Key Laboratory of Injuries, Variations and Regeneration of Nervous System, Tianjin Neurological Institute, Tianjin Medical University General Hospital, Tianjin, China.;Department of Gastroenterology, The Central Hospital of Enshi Tujia and Miao Autonomous Prefecture, Enshi, China.;Department of Geriatrics, Tianjin Medical University General Hospital, Tianjin, China.;Key Laboratory of Post-Trauma Neuro-Repair and Regeneration in Central Nervous System, Ministry of Education, Tianjin Key Laboratory of Injuries, Variations and Regeneration of Nervous System, Tianjin Neurological Institute, Tianjin Medical University General Hospital, Tianjin, China.;Department of Geriatrics, Tianjin Medical University General Hospital, Tianjin, China.;School of Medicine, Nankai University, Tianjin, China.;Department of Geriatrics, Tianjin Medical University General Hospital, Tianjin, China.;Key Laboratory of Post-Trauma Neuro-Repair and Regeneration in Central Nervous System, Ministry of Education, Tianjin Key Laboratory of Injuries, Variations and Regeneration of Nervous System, Tianjin Neurological Institute, Tianjin Medical University General Hospital, Tianjin, China.;Key Laboratory of Post-Trauma Neuro-Repair and Regeneration in Central Nervous System, Ministry of Education, Tianjin Key Laboratory of Injuries, Variations and Regeneration of Nervous System, Tianjin Neurological Institute, Tianjin Medical University General Hospital, Tianjin, China.;Department of Geriatrics, Tianjin Medical University General Hospital, Tianjin, China.;Key Laboratory of Post-Trauma Neuro-Repair and Regeneration in Central Nervous System, Ministry of Education, Tianjin Key Laboratory of Injuries, Variations and Regeneration of Nervous System, Tianjin Neurological Institute, Tianjin Medical University General Hospital, Tianjin, China.",eng,Journal Article,20260504,Switzerland,Front Aging Neurosci,Frontiers in aging neuroscience,101525824,,,NOTNLM,SEPHS2;SP1;bibliometrics;brain aging;machine learning;selenoproteins,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/05/20 06:32,2026/05/20 06:33,2026/05/20 04:34,2026/01/19 00:00 [received];2026/03/18 00:00 [revised];2026/03/31 00:00 [accepted];2026/05/20 06:33 [medline];2026/05/20 06:32 [pubmed];2026/05/20 04:34 [entrez];2026/05/04 00:00 [pmc-release],10.3389/fnagi.2026.1791352,epublish,1791352,,PMC13180909,2026/05/04,,,,,,,,PUBMED,,,,"Liu S, 2026, Front Aging Neurosci",0,"Liu S, 2026, Front Aging Neurosci"
+42151094,NLM,MEDLINE,20260518,20260522,31,3,2026,Research Topics and Trends of Artificial Intelligence in Critical Care Nursing: A Bibliometric Analysis.,10.1111/nicc.70468 [doi],"BACKGROUND: Artificial intelligence (AI) is utilized in various health-related areas, including medical imaging, personal diagnosis, therapeutic interventions and predictive analytics through electronic health records (EHRs). The incorporation of AI is especially significant in critical care, where it has shown the ability to improve patient outcomes. AIM: To analyse the research status, hotspots and development trends of AI in critical care nursing (CCN) over the past decade, providing a reference for clinical nursing practice and future studies. STUDY DESIGN: To explore the research on the application of AI in CCN practice, articles were retrieved from the Web of Science Core Collection (WOSCC) database from 1 January 2015 to 30 April 30 2025. Bibliometric and cluster analyses were performed using CiteSpace 6.3 R1 software, where the parameters included the number of publications annually, country/region, participating institutions, journals, authors, cited references, keywords and other related parameters. RESULTS: The research involved 1597 publications, reflecting the growth of publications each year regarding the application of AI in CCN. The top 5 most frequent keywords were 'cardiac arrest', 'big data', 'definitions', 'models' and 'deep learning (DL)', with DL, models and clinical decision-making support identified as current research hotspots. CONCLUSIONS: The application of AI in CCN is promising. The current research is mainly focussed on early disease detection, deep learning and risk prediction in various domains. It is suggested to further enhance the collaboration among disciplines and countries, maximize the scientific collaboration network among institutions and authors and promote the deep integration of AI technologies with CCN. This should be based on the research hotspots and trends to develop to meet the demands of the quality care of critically ill patients. RELEVANCE TO CLINICAL PRACTICE: This study highlights that AI-driven deep learning and predictive models are becoming essential tools for clinical decision-making in critical care nursing. Integrating these technologies into routine practice can facilitate earlier disease detection and risk prediction, ultimately enhancing the quality of care and safety for critically ill patients.",(c) 2026 British Association of Critical Care Nurses.,"Wang, Yi;Xia, Biyun;Zhu, Qin;Chai, Fei;Cao, Meili;Ji, Yan",Wang Y;Xia B;Zhu Q;Chai F;Cao M;Ji Y,"Department of Intensive Care Unit, The Third Affiliated Hospital of Naval Medical University, Shanghai, China.;Department of Intensive Care Unit, The Third Affiliated Hospital of Naval Medical University, Shanghai, China.;Department of Intensive Care Unit, The Third Affiliated Hospital of Naval Medical University, Shanghai, China.;Department of Intensive Care Unit, The Third Affiliated Hospital of Naval Medical University, Shanghai, China.;Department of Intensive Care Unit, The Third Affiliated Hospital of Naval Medical University, Shanghai, China.;Department of Intensive Care Unit, The Third Affiliated Hospital of Naval Medical University, Shanghai, China.",eng,Journal Article;Review,,England,Nurs Crit Care,Nursing in critical care,9808649,IM,*Artificial Intelligence/trends;Humans;*Bibliometrics;*Critical Care Nursing/trends;Deep Learning;Critical Care,NOTNLM,CiteSpace;artificial intelligence;bibliometric analysis;critical care nursing;research hotspots,,2026/05/19 00:28,2026/05/19 00:29,2026/05/18 22:42,2026/03/07 00:00 [revised];2025/09/08 00:00 [received];2026/03/11 00:00 [accepted];2026/05/19 00:29 [medline];2026/05/19 00:28 [pubmed];2026/05/18 22:42 [entrez],10.1111/nicc.70468,ppublish,e70468,ORCID: 0000-0002-0781-7764;ORCID: 0009-0008-2905-3348,,,,,,,,,,PUBMED,,,,"Wang Y, 2026, Nurs Crit Care",0,"Wang Y, 2026, Nurs Crit Care"
+42145939,NLM,PubMed-not-MEDLINE,20260518,20260518,13,,2026,Bibliometric Trends in the Integration of Computer Vision With Healthcare.,10.1049/htl2.70085 [doi];e70085,"Computer vision, enabled by machine learning and image processing techniques, plays a crucial role in healthcare by facilitating the analysis of medical images such as magnetic resonance imaging, computed tomography and X-rays. It supports disease diagnosis, treatment planning, telemedicine and remote patient monitoring. Despite rapid growth, research in this field remains fragmented, making it difficult to comprehensively understand its evolution and research patterns. This study aimed to systematically analyse global research trends in computer vision applications in healthcare using bibliometric methods. A bibliometric analysis was conducted on 1023 publications retrieved from the Web of Science (Wos) database published between 2000 and 2022. Scientific output, citation patterns, leading journals, authors, institutions, countries, funding agencies and research themes were analysed using VOSviewer, Biblioshiny and ScientoPy. The annual scientific output showed a consistent upward trend, with a peak in 2021. IEEE Access emerged as the most productive journal (90 publications), while IEEE transactions on medical imaging was the most cited source. China led in publication output and international collaboration, followed by the United States. Keyword analysis revealed dominant themes such as deep learning, image segmentation, classification and medical imaging. This bibliometric analysis provides a comprehensive overview of the intellectual structure, research hotspots and collaborative patterns in computer vision-based healthcare research. The findings offer valuable insights for researchers, clinicians and policymakers and identify potential directions for future investigations.",(c) 2026 The Author(s). Healthcare Technology Letters published by John Wiley & Sons Ltd on behalf of The Institution of Engineering and Technology.,"Issrani, Rakhi;Zeeshan, Hafiz Muhammad;Iqbal, Abid;Ahmad, Shahzad;Iqbal, Shazia;Prabhu, Namdeo;Baig, Muhammad Nadeem",Issrani R;Zeeshan HM;Iqbal A;Ahmad S;Iqbal S;Prabhu N;Baig MN,Department of Research Analytics Saveetha Dental College and Hospitals Saveetha Institute of Medical and Technical Sciences Saveetha University Chennai India.;Department of Computer Science National College of Business Administration and Economics Lahore Pakistan.;Department of Computer Science Superior University Lahore Pakistan.;Central Library Prince Sultan University Riyadh Kingdom of Saudi Arabia.;Faculty of Medicine and Health Sciences The University of Buckingham Buckingham UK.;IMBB the University of Lahore Lahore Pakistan.;Faculty of Medicine and Health Sciences The University of Buckingham Buckingham UK.;Department of Oral and Maxillofacial Surgery & Diagnostic Sciences College of Dentistry Jouf University Sakaka Kingdom of Saudi Arabia.;Department of Preventive Dentistry College of Dentistry Jouf University Sakaka Kingdom of Saudi Arabia.,eng,Journal Article;Review,20260514,England,Healthc Technol Lett,Healthcare technology letters,101646459,,,NOTNLM,artificial intelligence;computer vision systems;deep learning;healthcare,The authors declare no conflicts of interest.,2026/05/18 12:43,2026/05/18 12:44,2026/05/18 06:39,2025/01/09 00:00 [received];2026/02/05 00:00 [revised];2026/03/16 00:00 [accepted];2026/05/18 12:44 [medline];2026/05/18 12:43 [pubmed];2026/05/18 06:39 [entrez];2026/05/14 00:00 [pmc-release],10.1049/htl2.70085,epublish,e70085,ORCID: 0000-0002-0046-3529,PMC13174573,2026/05/14,,,,,,,,PUBMED,,,,"Issrani R, 2026, Healthc Technol Lett",0,"Issrani R, 2026, Healthc Technol Lett"
+42141908,NLM,Publisher,,20260516,,,2026,Emerging trends in artificial intelligence research in lymphedema: An evaluation in light of bibliometric and altmetric data.,10.1177/02683555261453763 [doi],"BackgroundThis study aims to systematically evaluate the current landscape of artificial intelligence (AI) and machine learning applications in lymphedema research by employing bibliometric and altmetric analyses. The goal is to identify major trends, research focuses, and influential contributors in this rapidly evolving field.MethodA total of 43 AI-related articles on lymphedema published between 1975 and 2025 were retrieved from the Web of Science Core Collection. Bibliometric indicators such as publication years, journals, countries, authorship, and citation metrics were analyzed. Altmetric scores were also assessed. Each study was classified by study type and thematic focus.ResultOriginal research articles constituted the majority (n = 26), with clinical studies being the most common subtype. The United States and China led in publication output. Most studies were published in Q1-Q2 journals, indicating high scientific quality. Scientific Reports was the most productive journal. General AI applications and risk prediction emerged as dominant themes. A moderate positive correlation was found between average annual citations and altmetric scores (r = 0.470, p = 0.039), suggesting consistency between academic impact and online visibility.ConclusionThis is the first study to comprehensively map AI-based research in the field of lymphedema using bibliometric and altmetric methods. The findings reveal increasing global interest and high-impact publications, particularly in the domains of risk prediction and early diagnosis. These insights may guide future methodological frameworks and interdisciplinary collaborations in this emerging field.",,"Tas, Nurmuhammet;Celik, Gurhan;Erden, Yakup;Temel, Mustafa Huseyin;Bagcier, Fatih;Coskun, Evrim",Tas N;Celik G;Erden Y;Temel MH;Bagcier F;Coskun E,"Clinic of Physical Medicine and Rehabilitation, Erzurum City Hospital, Erzurum, Turkey.;Clinic of General Surgery, Basaksehir Cam and Sakura City Hospital, Istanbul, Turkey. RINGGOLD: 622463;Clinic of Physical Medicine and Rehabilitation, Izzet Baysal Physical Medicine and Rehabilitation Training and Research Hospital, Bolu, Turkey. RINGGOLD: 652290;Clinic of Physical Medicine and Rehabilitation, Univeristy of Health Sciences Sultan 2.Abdulhamid Han Training and Research Hospital, Istanbul, Turkey.;Clinic of Physical Medicine and Rehabilitation, Basaksehir Cam and Sakura City Hospital, Istanbul, Turkey. RINGGOLD: 622463;Clinic of Physical Medicine and Rehabilitation, Istanbul Physical Medicine Rehabilitation Training and Research Hospital, Istanbul, Turkey.",eng,Journal Article;Review,20260516,England,Phlebology,Phlebology,9012921,IM,,NOTNLM,lymphoedema,,2026/05/16 06:36,2026/05/16 06:36,2026/05/16 05:43,2026/05/16 06:36 [medline];2026/05/16 06:36 [pubmed];2026/05/16 05:43 [entrez],10.1177/02683555261453763,aheadofprint,2683555261453763,ORCID: 0000-0002-8033-4208;ORCID: 0000-0003-0256-5833,,,,,,,,,,PUBMED,,,,"Tas N, 2026, Phlebology",0,"Tas N, 2026, Phlebology"
+42138315,NLM,Publisher,,20260515,,,2026,Artificial Intelligence in Oral Cancer Diagnosis: A Bibliometric Mapping Study Based on Scopus Literature (2000-2025).,10.1097/SCS.0000000000012865 [doi],"OBJECTIVE: To map global research trends in artificial intelligence (AI) applications for oral cancer diagnosis using bibliometric analysis. DESIGN: Publications retrieved from Scopus and PubMed (2000-2025) were analyzed using VOSviewer for keyword co-occurrence and thematic clustering. A total of 523 unique records were included. Eight clusters were identified and interpreted. RESULTS: A total of 777 records were retrieved from Scopus and PubMed, of which 523 unique publications were included after deduplication and screening. Keyword co-occurrence analysis using VOSviewer identified 66 frequently occurring keywords organized into 8 thematic clusters, highlighting major research domains spanning image-based deep learning, early detection and screening of OPMDs, prognostic modelling and radiomics, and classical machine learning approaches. CONCLUSIONS: Bibliometric mapping highlights the interdisciplinary growth of artificial intelligence in oral cancer diagnosis. The study provides a comprehensive strategic overview for researchers and clinicians aiming to align with emerging diagnostic paradigms that will be crucial for advancing early detection strategies, enhancing diagnostic precision, and facilitating the integration of AI-driven technologies into routine clinical practice in oral oncology.","Copyright (c) 2026 by Mutaz B. Habal, MD.","Dalmia, Piyush;Bheke, Prachi;Sathpathy, Akash;Pandey, Ankur;Kundu, Mousami",Dalmia P;Bheke P;Sathpathy A;Pandey A;Kundu M,"KCTRI Centre, Hubballi.;Bapuji Dental College and Hospital, Davangere, Karnataka.;Tata Steel Foundation, Jamshedpur, Jharkhand.;Dental College Azamgarh, Azamgarh, Uttar Pradesh.;Awadh Dental College and Hospital, Jamshedpur, Jharkhand, India.",eng,Journal Article,20260515,United States,J Craniofac Surg,The Journal of craniofacial surgery,9010410,IM,,NOTNLM,Artificial intelligence;bibliometric analysis;deep learning;early detection;histopathology;machine learning;oral squamous cell carcinoma,The authors report no conflicts of interest.,2026/05/15 17:36,2026/05/15 17:36,2026/05/15 08:33,2026/03/11 00:00 [received];2026/04/03 00:00 [accepted];2026/05/15 17:36 [medline];2026/05/15 17:36 [pubmed];2026/05/15 08:33 [entrez],10.1097/SCS.0000000000012865,aheadofprint,,ORCID: 0009-0002-9993-4286,,,,,,,,,,PUBMED,,,,"Dalmia P, 2026, J Craniofac Surg",0,"Dalmia P, 2026, J Craniofac Surg"
+42133616,NLM,MEDLINE,20260514,20260516,21,5,2026,Data-driven differentiation analysis of urban high-tech industries: Research on bibliometrics and large language models.,10.1371/journal.pone.0348590 [doi];e0348590,"This study examines inter-city heterogeneity in China's high-tech industries from a regional innovation systems (RIS) perspective, with a particular focus on how variations in knowledge production, technological application, and actor configurations are associated with divergent urban innovation trajectories. We compile more than 39,000 publications from the Web of Science (WOS) and nearly 10,000 patent records from the national patent database for the period 2016-2025, covering four representative cities-Wuhan, Chengdu, Hangzhou, and Tianjin-and four technological domains: artificial intelligence (AI), fiber-optic communication (FOC), intelligent connected vehicles (ICV), and storage chips (SC). The study develops an integrated analytical framework combining bibliometric analysis, co-word network modeling, collaboration network mapping, and large language model (LLM)-assisted semantic interpretation. LLMs are employed primarily in keyword cleaning, terminology standardization, and topic identification, improving the consistency and interpretability of textual metadata. Visualizations generated using VOSviewer highlight pronounced inter-city differences in technological portfolios, research priorities, and collaboration structures. The results suggest distinct urban innovation configurations across the four cities. Wuhan exhibits strong positioning in FOC and SC, reflecting a combined industry-academy orientation. Hangzhou shows high frontier intensity in AI and ICV, consistent with an industry-led and digitally driven innovation profile. Chengdu demonstrates substantial academic output but comparatively weaker evidence of technological translation, while Tianjin, despite a smaller overall scale, displays notable specialization in applied domains such as brain-computer interfaces and smart port technologies. Rather than replacing quantitative analysis, LLM-assisted interpretation supports the identification and contextualization of these patterns by enhancing semantic coherence and reducing noise in large-scale textual data. Overall, the proposed framework provides a reproducible and scalable approach for examining regional technological differentiation and is applicable to comparative studies of urban innovation systems across different regions and industrial contexts.","Copyright: (c) 2026 Song et al. This is an open access article distributed under the terms of the Creative Commons Attribution License, which permits unrestricted use, distribution, and reproduction in any medium, provided the original author and source are credited.","Song, Hua;Zeng, Jun;Zheng, Yang;Huang, Han;Wang, Hongyu",Song H;Zeng J;Zheng Y;Huang H;Wang H,"School of Management, Wuhan University of Technology, Wuhan, China.;School of Management, Wuhan University of Technology, Wuhan, China.;School of Information Management, Wuhan University, Wuhan, China.;School of Management, Wuhan University of Technology, Wuhan, China.;School of Management, Wuhan University of Technology, Wuhan, China.",eng,Journal Article,20260514,United States,PLoS One,PloS one,101285081,IM,*Bibliometrics;China;*Language;Humans;Cities;*Industry;Artificial Intelligence;Large Language Models,,,The authors have declared that no competing interests exist.,2026/05/14 18:36,2026/05/14 18:37,2026/05/14 13:34,2025/10/04 00:00 [received];2026/04/17 00:00 [accepted];2026/05/14 18:37 [medline];2026/05/14 18:36 [pubmed];2026/05/14 13:34 [entrez];2026/05/14 00:00 [pmc-release],10.1371/journal.pone.0348590,epublish,e0348590,ORCID: 0009-0000-4133-1058;ORCID: 0000-0001-5635-1131,PMC13175361,2026/05/14,,,,,,,,PUBMED,,,,"Song H, 2026, PLoS One",0,"Song H, 2026, PLoS One"
+42126947,NLM,Publisher,,20260513,,,2026,"The influence of global artificial intelligence on accessibility design for people with disabilities: trends, hotspots and emerging technologies.",10.1080/17483107.2026.2662425 [doi],"PURPOSE: With the rapid advancement of artificial intelligence, applications in accessibility design for persons with disabilities are continually expanding. However, the related research remains fragmented, with insufficient evidence regarding the practical implementation of personalised, intelligent accessibility design and limited examination of emerging trends and challenges associated with design efficiency, user experience optimisation, and interdisciplinary integration. METHODS: This study utilises bibliometric analysis, drawing on literature from the Web of Science Core Collection database, and employs software tools such as Microsoft Excel 2021, VOSviewer, CiteSpace and Charticulator to examine the current state, research hotspots, and future development trends in this field. RESULTS: The results indicate a significant increase in the number of publications in this field between 1 January 2001 and 31 December 2025, particularly in terms of research collaboration between institutions in the United States and China. The findings further demonstrate that, in recent years, scholarly research on accessibility design for persons with disabilities has primarily focused on key themes such as ""artificial intelligence,"" ""assistive technology,"" and ""deep learning."" CONCLUSION: We constructed a global theoretical knowledge map and used it to synthesise fragmented evidence on AI-enabled accessibility design, revealing a paradigm shift from ""single-sensory compensation"" to ""multimodal cognitive enhancement."" Drawing on identified hotspots and structural gaps-particularly limited attention to multiple disabilities and insufficient social-ethical engagement-we propose targeted directions to better align technological development with the diverse needs of persons with disabilities.",,"Tao, Xuanyu;Chang, Hongru;Wang, Caiyun",Tao X;Chang H;Wang C,"Coll Arts, Northeastern University, Shenyang, Liaoning, China.;School of Textiles and Fashion, Shanghai University of Engineering Science, Shanghai, China.;Coll Arts, Northeastern University, Shenyang, Liaoning, China.",eng,Journal Article;Review,20260513,England,Disabil Rehabil Assist Technol,Disability and rehabilitation. Assistive technology,101255937,IM,,NOTNLM,Artificial intelligence;accessibility design for people with disabilities;assistive technology;bibliometrics;deep learning;inclusive design,,2026/05/13 18:29,2026/05/13 18:29,2026/05/13 12:33,2026/05/13 18:29 [medline];2026/05/13 18:29 [pubmed];2026/05/13 12:33 [entrez],10.1080/17483107.2026.2662425,aheadofprint,1,,,,,,,"Recalibrating research priorities: Bibliometric evidence indicates an excessive concentration of research on sensory compensation. Future resources should be strategically redirected towards cognitive impairments and multiple comorbidities to fill the ""knowledge vacuum"" and promote a paradigm shift from functional compensation to cognitive empowerment.Mitigating employment displacement risks: Vigilance is required regarding the potential crowding-out effects of AI automation on disability-sector workers. Ethical principles of ""human-machine collaboration"" should be established, accompanied by proactive planning for reskilling pathways, to prevent technological dividends from exacerbating within-group inequalities.Correcting ""technology-centric"" bias: To address the lack of research on user agency, co-design should be mandated to ensure that technologies accurately match real needs and to eliminate ""pseudo-accessibility."".",eng,,,PUBMED,,,27,"Tao X, 2026, Disabil Rehabil Assist Technol",0,"Tao X, 2026, Disabil Rehabil Assist Technol"
+42116339,NLM,MEDLINE,20260512,20260514,105,19,2026,Forging new insights in forensic microbiome studies: A 2000 to 2024 bibliometric analysis redefining the landscape.,10.1097/MD.0000000000048661 [doi];e48661,"BACKGROUND: Microbial diversity has been extensively studied across various fields, including medicine and therapeutics. Its application in forensics is rapidly expanding due to its effectiveness. This study aimed to conduct a comprehensive bibliometric analysis of global research on forensic microbiome, providing a foundational knowledge framework for this emerging field. METHODS: A comprehensive literature search was performed using the Web of Science Core Collection database to identify publications related to the forensic microbiome. Annual publication output, research collaborations, research hotspots, and developmental trends in this field were analyzed using bibliometric software (VOSviewer and CiteSpace). RESULTS: In total, 709 articles published between 2000 and 2024 were selected. The first study in this field was published in 2000. Recently, the number of publications and citations has grown significantly. Cooperation network analysis revealed that the United States of America contributes the most to forensic microbiome research, with the highest publication volume. Michigan State University emerged as the most prolific institution. Forensic Science International is the most productive journal in this field. Carter David O. contributed the most to the articles and is the most co-cited authors. Keywords cluster analysis identified 4 major research clusters: bacteria, forensic medicine, 16s ribosomal ribonucleic acid, and machine learning. Machine learning, human microbiome, and forensic microbiology have attracted increasing attention from researchers. CONCLUSION: This bibliometric analysis provides a data-driven and objective overview of forensic microbiome research currently, offering readers a valuable reference for future research. Our review provides insights into contemporary trends, global patterns of collaboration, fundamental knowledge, high-interest research areas, and emerging frontiers in the forensic microbiome.","Copyright (c) 2026 the Author(s). Published by Wolters Kluwer Health, Inc.","Han, Gui-Yan;Wang, Zheng-Jiang;Wang, De-Xia;Wang, Chun-Yan;Yang, Mai-Qing",Han GY;Wang ZJ;Wang DX;Wang CY;Yang MQ,"Department of Pathology, Weifang People's Hospital (First Affiliated Hospital of Shandong Second Medical University), Weifang, Shandong, China.;Department of Pathology, Weifang People's Hospital (First Affiliated Hospital of Shandong Second Medical University), Weifang, Shandong, China.;Medical Department, Weifang People's Hospital (First Affiliated Hospital of Shandong Second Medical University), Weifang, Shandong, China.;Department of Family Planning, Weifang People's Hospital (First Affiliated Hospital of Shandong Second Medical University), Weifang, Shandong, China.;Department of Pathology, Weifang People's Hospital (First Affiliated Hospital of Shandong Second Medical University), Weifang, Shandong, China.",eng,Journal Article,,United States,Medicine (Baltimore),Medicine,2985248R,IM,"*Bibliometrics;Humans;*Microbiota;*Forensic Sciences;*Forensic Medicine;RNA, Ribosomal, 16S;Machine Learning",NOTNLM,Citespace;VOSviewer;bibliometric analysis;forensic;microbiome,The authors have no funding or conflicts of interest to disclose.,2026/05/12 06:37,2026/05/12 06:38,2026/05/12 01:01,2025/03/25 00:00 [received];2026/04/16 00:00 [accepted];2026/05/12 06:38 [medline];2026/05/12 06:37 [pubmed];2026/05/12 01:01 [entrez];2026/05/08 00:00 [pmc-release],10.1097/MD.0000000000048661,ppublish,e48661,ORCID: 0000-0001-5318-1130,PMC13166549,2026/05/08,,,"0 (RNA, Ribosomal, 16S)",,,,,PUBMED,,,,"Han GY, 2026, Medicine (Baltimore)",0,"Han GY, 2026, Medicine (Baltimore)"
+42115141,NLM,MEDLINE,20260511,20260515,28,,2026,Thematic Mapping and Evolution of Social Media Mining in Health Research: Hybrid Bibliometric Synthesis.,10.2196/86200 [doi];e86200,"BACKGROUND: Social media platforms offer extensive data, as they are widely used globally. Social media mining (SMM) enables real-time monitoring of user-reported health information and serves as a supplement to traditional health data analytics. However, the rapid proliferation of literature has produced fragmentation, and a comprehensive knowledge map regarding SMM is lacking. Further, existing bibliometric reviews in health fields are easily undermined by synonym fragmentation and parameter settings, reducing their robustness. Thus, a more robust, reproducible, and decision-oriented bibliometric framework is required. OBJECTIVE: This study aimed to (1) outline key thematic clusters in health-related SMM and map their dynamic evolution, and (2) methodologically demonstrate how machine learning-based bibliometric analysis can strengthen the robustness, transparency, and foresight capacity of evidence synthesis. METHODS: This study designed a fully automated and reproducible bibliometric analysis of PubMed journal articles published from 2015 to 2025 (n=250) and analyzed records with both abstracts and keywords (n=189). We performed cleaning and standardization for titles, abstracts, author keywords, and MeSH terms, and carried out an exploratory descriptive analysis to obtain preliminary insights into publication patterns. Subsequently, we used SPECTER2 and PubMedBERT embeddings with keywords and abstracts to construct a hybrid similarity matrix. Then, we applied Uniform Manifold Approximation and Projection for dimensionality reduction, followed by Hierarchical Density-Based Spatial Clustering of Applications with Noise for thematic clustering, and visualized the results in a 3D strategic coordinate system (maturity, influence, and recency). We performed intercluster relationship analysis and time-slice analysis to examine thematic intersections and evolution. To ensure robustness and enhance interpretability, we implemented dual-level validation. RESULTS: We identified 6 thematic clusters: cluster 1 (candidate incubator pool of peripheral cross-cutting topics in health-related SMM), cluster 2 (computational methods in health informatics), cluster 3 (public attitudes and sociopsychological determinants), cluster 4 (infodemiology and the COVID-19 information ecosystem), cluster 5 (health communication and public health engagement), and cluster 6 (social media analysis and network methods). Strategic 3D mapping revealed that methodological clusters (clusters 2 and 6) occupied high-maturity and high-influence positions, while application-driven clusters (clusters 3 and 4) occupied high-influence and high-recency positions, representing rapidly expanding frontiers. Clusters 1 and 5 demonstrated strong potential for further growth. Temporal slicing confirmed a trajectory moving from methodological consolidation and thematic diversification to a renewed focus on convergence and problem-solving. Validation showed strong semantic coherence and robustness of the methods and findings. CONCLUSIONS: We developed a semantic-structural hybrid bibliometric framework with dual-level validation, reducing synonym fragmentation and parameter sensitivity inherent in traditional approaches. The resulting decision-oriented knowledge map offers strategic guidance for infodemiology-informed and audience-segmented public health communication, research priority settings, and the deployment and evaluation of real-world surveillance and pharmacovigilance workflows while supporting evidence-driven and patient-centered decision-making in public health and health care.","(c) Mia Jiming Yang, Sabine Bohnet-Joschko. Originally published in the Journal of Medical Internet Research (https://www.jmir.org).","Yang, Mia Jiming;Bohnet-Joschko, Sabine",Yang MJ;Bohnet-Joschko S,"Chair of Management and Innovation in Healthcare, Faculty of Management, Economics and Society, Witten/Herdecke University, Alfred-Herrhausen-Str. 50, Witten, North Rhine-Westphalia, 58455, Germany, 49 2302-926-38043.;Chair of Management and Innovation in Healthcare, Faculty of Management, Economics and Society, Witten/Herdecke University, Alfred-Herrhausen-Str. 50, Witten, North Rhine-Westphalia, 58455, Germany, 49 2302-926-38043.",eng,Journal Article;Review,20260508,Canada,J Med Internet Res,Journal of medical Internet research,100959882,IM,*Social Media;*Bibliometrics;*Data Mining/methods;Humans;Machine Learning,NOTNLM,bibliometrics;health research;machine learning;social media mining;strategic mapping,Conflicts of Interest: None declared.,2026/05/12 00:33,2026/05/12 00:34,2026/05/11 22:32,2025/10/20 00:00 [received];2026/03/27 00:00 [revised];2026/04/02 00:00 [accepted];2026/05/12 00:34 [medline];2026/05/12 00:33 [pubmed];2026/05/11 22:32 [entrez];2026/05/08 00:00 [pmc-release],10.2196/86200,epublish,e86200,ORCID: 0000-0001-8213-3904;ORCID: 0000-0002-1119-9786,PMC13160668,2026/05/08,,,,,,doi: 10.2196/102159,,PUBMED,,,,"Yang MJ, 2026, J Med Internet Res",0,"Yang MJ, 2026, J Med Internet Res"
+42110918,NLM,PubMed-not-MEDLINE,20260511,20260511,10,,2026,Intelligent technologies in operating room nursing: A bibliometric analysis of research.,10.1016/j.ijnsa.2026.100557 [doi];100557,"BACKGROUND: The integration of intelligent technologies in operating room nursing represents a rapidly evolving field. Intelligent operating room nursing refers to the application of artificial intelligence, robotic systems, smart sensing, and data-driven decision support tools within the intraoperative setting to assist perioperative nurses in risk identification, workflow optimization, real-time clinical monitoring, and individualized patient care. Despite growing technological adoption, systematic understanding of the research landscape, knowledge structure, and developmental trajectories remains limited. OBJECTIVE: We aimed to analyze comprehensively worldwide research trends, identify key contributors, and reveal emerging developments in intelligent operating room nursing through bibliometric analysis. INFORMATION SOURCES: Web of Science, Scopus, PubMed, Embase, Cochrane Library, and CINAHL were searched from January 2015 to April 2025. METHODS: Following predefined inclusion and exclusion criteria based on relevance to intelligent operating room nursing and publication quality, 291 eligible articles were analyzed using R software with bibliometrix package, VOSviewer, and CiteSpace for bibliometric analysis, network visualization, and thematic evolution assessment. RESULTS: Publication output increased from 16 articles in 2015 to 49 in 2024, with 45.4% of total publications concentrated between 2022 and 2024. The United States dominated with 132 publications, followed by Germany and the United Kingdom (33 each). The Technical University of Munich led institutional contributions with 7 publications. Keyword analysis revealed evolution from an early focus on operating room scheduling and multi-objective optimization (2017) to deep learning applications (between 2020 and 2023), natural language processing (2023), and robotic scrub nurse development (between 2023 and 2025). Six major research themes emerged: Surgical Robotics & Equipment, Nursing Staff & Scheduling, Communication & Collaboration, Information Systems & Data Management, Intelligent Algorithms & Decision Support, and Safety, Quality, & Risk Management. CONCLUSIONS: The field demonstrated rapid growth with clear thematic evolution toward nursing-centered intelligent automation and human-machine collaboration systems. Future researchers should prioritize comparative effectiveness studies, implementation strategies, and global health equity considerations to ensure widespread clinical translation. REGISTRATION: Not applicable. SOCIAL MEDIA ABSTRACT: Global bibliometric analysis (between 2015 and April 2025) revealed rapid growth in intelligent operating room nursing, with robotic surgery, artificial intelligence, and human-machine collaboration as emerging trends.",(c) 2026 The Authors.,"Yu, Yang;Rao, Zhili;Zheng, Wen;Su, Ting;Wen, Xin;Yao, Lijun;Zheng, Weixi;Wang, Ying;Chen, Xiaofang;Wang, Yaling",Yu Y;Rao Z;Zheng W;Su T;Wen X;Yao L;Zheng W;Wang Y;Chen X;Wang Y,"Department of Operating Room, Fuzhou University Affiliated Provincial Hospital, Fuzhou, China.;Department of Operating Room, Fuzhou University Affiliated Provincial Hospital, Fuzhou, China.;Emergency Department, Fujian Provincial Children's Hospital, Fujian Children's Hospital (Fujian Branch of Shanghai Children's Medical Center), College of Clinical Medicine for Obstetrics & Gynecology and Pediatrics, Fujian Medical University, China.;Department of Operating Room, Fuzhou University Affiliated Provincial Hospital, Fuzhou, China.;Department of Operating Room, Fuzhou University Affiliated Provincial Hospital, Fuzhou, China.;Department of Operating Room, Fuzhou University Affiliated Provincial Hospital, Fuzhou, China.;Department of Operating Room, Fuzhou University Affiliated Provincial Hospital, Fuzhou, China.;Department of Operating Room, Fuzhou University Affiliated Provincial Hospital, Fuzhou, China.;Department of Operating Room, Fuzhou University Affiliated Provincial Hospital, Fuzhou, China.;Department of Operating Room, Fuzhou University Affiliated Provincial Hospital, Fuzhou, China.",eng,Journal Article,20260506,England,Int J Nurs Stud Adv,International journal of nursing studies advances,101769252,,,NOTNLM,Artificial intelligence;Bibliometric analysis;Human-machine collaboration;Operating room nursing;Perioperative care;Robotics;Surgical robotics,The authors declare that they have no competing interests related to this work. This bibliometric analysis of intelligent nursing care in operating rooms was conducted independently without any financial or non-financial conflicts of interest that could inappropriately influence the research findings or conclusions.,2026/05/11 13:00,2026/05/11 13:01,2026/05/11 06:47,2025/12/10 00:00 [received];2026/05/02 00:00 [revised];2026/05/03 00:00 [accepted];2026/05/11 13:01 [medline];2026/05/11 13:00 [pubmed];2026/05/11 06:47 [entrez];2026/05/06 00:00 [pmc-release],10.1016/j.ijnsa.2026.100557,epublish,100557,,PMC13157165,2026/05/06,,,,,,,,PUBMED,,,,"Yu Y, 2026, Int J Nurs Stud Adv",0,"Yu Y, 2026, Int J Nurs Stud Adv"
+42104780,NLM,Publisher,,20260509,,,2026,Artificial Intelligence Applications in General Surgery in the United States of America: A Bibliometric Analysis.,10.1177/10926429261449958 [doi],"BACKGROUND: Artificial intelligence (AI) is rapidly transforming surgical practice, with applications spanning preoperative planning, intraoperative guidance, postoperative management, and surgical education. Despite accelerating research activity, the structure, thematic evolution, and funding landscape of AI research in general surgery remain incompletely characterized. This study aimed to systematically evaluate scientific production on AI in general surgery in the United States over the past 5 years using a bibliometric approach. METHODS: A bibliometric analysis was conducted following Preliminary Guideline for Reporting Bibliometric Reviews of the Biomedical Literature and Preferred Reporting Items for Systematic Reviews and Meta-Analysis guidelines using Web of Science. English-language articles published between 2020 and 2025 with a U.S.-affiliated senior author and focused on AI use in general surgery were included. Publications were analyzed across five primary domains: authorship metrics, thematic endpoints, journal characteristics, country of origin, and funding patterns. Bibliometric indicators included H-index, citation counts, Article Influence Score (AIS), and Bradford's Law classification. Funding distribution across endpoints was evaluated using chi-square or Fisher's exact tests, with effect sizes estimated using Cramer's V and odds ratios. Temporal trends in endpoints and keywords were assessed using Poisson and negative binomial regression models. RESULTS: Fifty-nine studies met inclusion criteria, comprising 20 reviews and 39 original investigations. Scientific production increased consistently from one study in 2019 to 17 in 2023 and 16 in 2024, demonstrating sustained growth. Surgical workflow recognition (n = 19) and clinical decision support (n = 18) were the predominant research domains, representing 63% of the included literature. Temporal analysis demonstrated significant annual growth in reviews (Incidence rate ratios [IRR] 2.09, P = .002) and workflow-focused studies (IRR 1.37, P = .031). Keyword analysis revealed sustained prominence of AI and machine learning, with limited emergence of new thematic directions. Most studies reported no funding (57.6%). Although overall funding distribution did not significantly differ across application categories (P = .846), clinically actionable AI applications were significantly more likely to receive funding compared with other research areas (OR 4.0, 95% CI 1.22-13.13; P = .029). CONCLUSION: AI research in U.S. general surgery is growing but remains concentrated in workflow and decision-support domains. Funding favors clinically actionable applications, highlighting the need for broader, equity-focused AI development.",,"Vasconcellos, Clara Avelar Mendes de;Forchezatto, Elisa Guimaraes;Lyons, Gabriela;Souza E Silva, Thiago;Nogueira, Raquel;Malcher, Flavio;Cavazzola, Leandro Totti;Lima, Diego Laurentino",Vasconcellos CAM;Forchezatto EG;Lyons G;Souza E Silva T;Nogueira R;Malcher F;Cavazzola LT;Lima DL,"Estacio de Sa University/IDOMED - Vista Carioca Campus, Rio de Janeiro, Brazil.;Pontifical Catholic University of Parana (PUCPR), Curitiba, Brazil.;Faculdade Souza Marques, Rio de Janeiro, Brazil.;Real Instituto de Cirurgia Oncologica, Real Hospital Portugues, Recife, Brazil.;Department of Surgery, Montefiore Medical Center, Bronx, New York, USA.;Lenox Hill Hospital, New York, New York, USA.;Federal University of Rio Grande do Sul, Porto Alegre, Brazil.;Department of Surgery, Montefiore Medical Center, Bronx, New York, USA.",eng,Journal Article,20260509,United States,J Laparoendosc Adv Surg Tech A,Journal of laparoendoscopic & advanced surgical techniques. Part A,9706293,IM,,NOTNLM,applications;artificial intelligence;general surgery,,2026/05/09 06:33,2026/05/09 06:33,2026/05/09 04:32,2026/05/09 06:33 [medline];2026/05/09 06:33 [pubmed];2026/05/09 04:32 [entrez],10.1177/10926429261449958,aheadofprint,10926429261449958,ORCID: 0000-0001-7383-1284,,,,,,,,,,PUBMED,,,,"Vasconcellos CAM, 2026, J Laparoendosc Adv Surg Tech A",0,"Vasconcellos CAM, 2026, J Laparoendosc Adv Surg Tech A"
+42102035,NLM,Publisher,,20260508,,,2026,Mapping the Research Landscape and Emerging Trends in Hashimoto's Encephalopathy: A CiteSpace-Based Visualization Analysis.,10.1159/000552032 [doi],"INTRODUCTION: Hashimoto's thyroiditis is the leading cause of hypothyroidism in iodine-sufficient regions and is often accompanied by various comorbid conditions. Hashimoto's encephalopathy (HE) represents one of its most severe neurological complications. This study aims to provide clinicians and researchers with a comprehensive understanding of recent research trends in HE. METHODS: We retrieved global publications on HE from 1990 to 2025 from the Web of Science Core Collection database. Bibliometric analysis was conducted utilizing CiteSpace. RESULTS: As of now, 641 publications on HE have been authored by researchers across 65 countries. Yoneda Makoto has authored the largest number of publications on HE, while Brain L. is the most frequently co-cited author. The Mayo Clinic emerges as the leading institution in HE research, and the United States ranks first in terms of publication volume, maintaining a dominant position in the field. Neurology stands out as both the most prolific journal in terms of publications and the most frequently co-cited source. An analysis of keywords and cited references reveals that current research hotspots in HE primarily center on its clinical manifestations, diagnostic criteria, and serological biomarkers-particularly the role of anti-alpha-enolase antibodies. CONCLUSION: These focal points reflect ongoing efforts to better characterize the disease and enhance diagnostic accuracy. In addition, the integration of emerging technologies-such as advanced imaging, high-throughput omics, and machine learning-holds promise for developing novel strategies aimed at the early detection and more precise diagnosis of HE, potentially improving patient outcomes.","S. Karger AG, Basel.","Wang, Qian;Cai, Ningjing;Ding, Zhiguo;Wang, Junhui;Li, Peijin",Wang Q;Cai N;Ding Z;Wang J;Li P,,eng,Journal Article;Review,20260508,Switzerland,Neuroendocrinology,Neuroendocrinology,0035665,IM,,,,,2026/05/08 18:33,2026/05/08 18:33,2026/05/08 13:35,2025/10/23 00:00 [received];2026/04/03 00:00 [accepted];2026/05/08 18:33 [medline];2026/05/08 18:33 [pubmed];2026/05/08 13:35 [entrez],10.1159/000552032,aheadofprint,1,,,,,,,,,,,PUBMED,,,28,"Wang Q, 2026, Neuroendocrinology",0,"Wang Q, 2026, Neuroendocrinology"
+42100761,NLM,PubMed-not-MEDLINE,20260508,20260508,12,,2026,Artificial intelligence in chronic kidney disease: Bibliometric and visual analysis of trends and future directions.,10.1177/20552076261446519 [doi];20552076261446519,"BACKGROUND: Artificial intelligence (AI) applications in medicine are rapidly expanding, revolutionizing the field of Chronic Kidney Disease (CKD) through diagnostics, prognosis prediction, and treatment decision-making. Despite significant progress, systematic analyses integrating AI with CKD remain limited. METHODS: Literature included in this study was sourced from the Web of Science Core Collection. Using tools such as CiteSpace, VOSviewer, and R-Bibliometrix, 888 relevant publications were analyzed. Research data encompassed dimensions including annual publication trends, author influence, institutional contributions, national output, keywords, and co-citation evolution. RESULTS: Research on AI and CKD has experienced exponential growth, particularly since 2019. China and the United States dominate paper publications, with leading institutions including the Sun Yat-sen University and University of California System. Core authors focus on AI-driven non-invasive biomarkers and CKD diagnosis via histopathological images. Global research trends shift from traditional machine learning to deep learning, emphasizing digital pathology and multimodal models to improve diagnostic and prognostic outcomes. CONCLUSION: Between 2019 and 2025, the number of related publications grew rapidly, accelerating AI-driven advancements in CKD. Research emphasis has evolved from initial exploratory studies to clinically oriented applications centered on ""deep learning models for image analysis, disease diagnosis, outcome prediction, and multimodal data integration."" Future efforts should prioritize integrating multi-omics technologies into multimodal models and developing fully automated hybrid models to advance AI from diagnostic support to clinical decision-making. These insights provide direction for future AI-driven innovations, promising enhanced precision in CKD management and improved patient outcomes.",(c) The Author(s) 2026.,"Yu, Wenqian;Sun, Siyuan;Wang, Haohan;Cheng, Yurong;Yu, Dajun",Yu W;Sun S;Wang H;Cheng Y;Yu D,"Xiyuan Hospital, China Academy of Chinese Medical Sciences, Beijing, China. RINGGOLD: 425205;Dongzhimen Hospital, Beijing University of Chinese Medicine, Beijing, China. RINGGOLD: 47839;Xiyuan Hospital, China Academy of Chinese Medical Sciences, Beijing, China. RINGGOLD: 425205;Xiyuan Hospital, China Academy of Chinese Medical Sciences, Beijing, China. RINGGOLD: 425205;Xiyuan Hospital, China Academy of Chinese Medical Sciences, Beijing, China. RINGGOLD: 425205",eng,Journal Article,20260428,United States,Digit Health,Digital health,101690863,,,NOTNLM,artificial intelligence;bibliometrics;chronic kidney disease;research hotspots;visual analysis,"The authors declared no potential conflicts of interest with respect to the research, authorship, and/or publication of this article.",2026/05/08 06:32,2026/05/08 06:33,2026/05/08 05:09,2025/12/16 00:00 [received];2026/03/10 00:00 [revised];2026/04/03 00:00 [accepted];2026/05/08 06:33 [medline];2026/05/08 06:32 [pubmed];2026/05/08 05:09 [entrez];2026/04/28 00:00 [pmc-release],10.1177/20552076261446519,epublish,20552076261446519,ORCID: 0009-0009-5919-3138;ORCID: 0009-0001-8947-3570;ORCID: 0009-0000-2870-5828;ORCID: 0009-0006-7613-2933;ORCID: 0009-0004-1812-0454,PMC13145021,2026/04/28,,,,,,,,PUBMED,,,,"Yu W, 2026, Digit Health",0,"Yu W, 2026, Digit Health"
+42095999,NLM,PubMed-not-MEDLINE,20260507,20260529,38,5,2026,Artificial intelligence in periodontal disease research: a bibliometric and visualized analysis of global research trends (2007-2025).,10.1007/s44445-026-00160-0 [doi];63,"Periodontal disease is one of the most common diseases in stomatology. With the continuous development of artificial intelligence (AI), its integration with periodontology is rapidly evolving. However, a comprehensive bibliometric analysis mapping this interdisciplinary field is currently lacking. We conducted a bibliometric analysis by retrieving publications related to AI and periodontal disease from the Web of Science Core Collection (WoSCC) for the period January 2007 to July 2025. Data processing and visualization were performed using R (Bibliometrix), VOSviewer, and CiteSpace. A total of 496 relevant articles (437 research papers; 59 reviews) were included. Annual publication output has shown sustained growth, particularly since 2021. China contributed the most publications (153 articles), followed by the United States. Among institutions, Pusan National University, South Korea (32 articles), and Saveetha Institute of Medical and Technical Science, India (31 articles) were the most productive. BMC Oral Health published the highest number of articles (n = 23). The co-authorship network involved 2,604 authors, with Pradeep Kumar Yadalam being the most prolific (15 articles). Co-citation analysis identified Orhan Kaan, Abu Patricia Angela R., and Falk Schwendicke as the most cited authors. Keyword analysis revealed ""periodontitis,"" ""machine learning,"" and ""artificial intelligence"" as core research foci, while burst detection indicated ""progression"" and ""expression"" as emerging thematic directions. This study provides a systematic overview of the research landscape, highlighting evolving trends, key contributors, and knowledge structure in AI applications for periodontal disease. The findings offer valuable insights to help dentists and researchers understand current applications, identify frontiers, and potentially guide the future clinical translation of AI technologies in periodontology.",(c) 2026. The Author(s).,"Zhou, Wuyan;Liu, Xun;Yu, Jinghong;Li, Yaoxu;Cheng, Lin;Wang, Guanliang;Jiang, Fulin",Zhou W;Liu X;Yu J;Li Y;Cheng L;Wang G;Jiang F,"Department of Stomatology, Chongqing University Three Gorges Hospital, School of Medicine, Chongqing University, Chongqing, China.;Department of Stomatology, People's Hospital of Chongqing Hechuan, Chongqing, China.;Department of Stomatology, Chongqing University Three Gorges Hospital, School of Medicine, Chongqing University, Chongqing, China.;Department of Stomatology, Chongqing University Three Gorges Hospital, School of Medicine, Chongqing University, Chongqing, China.;Department of Stomatology, People's Hospital of Chongqing Hechuan, Chongqing, China.;Radiotherapy Center, People's Hospital of Chongqing Hechuan, Chongqing, China. benwolf008@163.com.;Department of Stomatology, Chongqing University Three Gorges Hospital, School of Medicine, Chongqing University, Chongqing, China.",eng,Journal Article;Review,20260507,Saudi Arabia,Saudi Dent J,The Saudi dental journal,9313603,,,NOTNLM,Artificial intelligence;Bibliometrics;Periodontal disease;Trends,Declarations. Competing interests: The authors declare no competing interests.,2026/05/07 12:37,2026/05/07 12:38,2026/05/07 11:08,2025/11/13 00:00 [received];2026/03/25 00:00 [accepted];2026/05/07 12:38 [medline];2026/05/07 12:37 [pubmed];2026/05/07 11:08 [entrez];2026/05/07 00:00 [pmc-release],10.1007/s44445-026-00160-0,epublish,,,PMC13153353,2026/05/07,"wzwjw-kw2024025/the Chongqing Wanzhou District Science and Health Joint Medical Research Plan/;2024-5/the ""Sanjiang Talent"" Research Fund of Hechuan District, Chongqing City/",,,,,,,PUBMED,,,,"Zhou W, 2026, Saudi Dent J",0,"Zhou W, 2026, Saudi Dent J"
+42092273,NLM,MEDLINE,20260612,20260612,323,,2026,Global Trends in Postoperative Sepsis After Pancreatoduodenectomy: A Bibliometric Analysis.,S0022-4804(26)00242-8 [pii];10.1016/j.jss.2026.04.010 [doi],"INTRODUCTION: Postoperative sepsis after pancreatoduodenectomy (PSPD) remains a major determinant of morbidity and mortality. Although extensive clinical studies have explored its risk factors and management, the global research landscape and evolving priorities of PSPD have not been systematically characterized. METHODS: Publications related to PSPD from 1980 to July 2025 were retrieved from the Web of Science Core Collection. CiteSpace, VOSviewer, and R-based bibliometrix were used to analyze publication trends, collaborative networks, influential journals and references, research hotspots, and emerging trends. RESULTS: A total of 297 studies were included. Global PSPD research has grown steadily over the past 45 years, with rapid acceleration since 2020. The United States, Japan, Germany, Italy, and China were the leading contributors, supported by high-output institutions such as the University of Verona, Vita-Salute San Raffaele University, and Mayo Clinic. Research hotspots centered on risk stratification, surgical technique optimization, prevention of postoperative pancreatic fistula, and perioperative infection control. Emerging frontiers include surgical site infection prevention, microbiome-gut barrier and bacterial translocation mechanisms, precision risk prediction using machine learning models, and individualized perioperative strategies. CONCLUSIONS: Global PSPD research has evolved from descriptive clinical studies toward mechanistic, predictive, and precision-oriented investigations. Future progress will likely depend on integrating surgical innovation with microbiological, immunological, and data-driven approaches to enable earlier identification and targeted prevention of PSPD.",Copyright (c) 2026 The Author(s). Published by Elsevier Inc. All rights reserved.,"Wang, Na;Li, Xiangyang;Wang, Linyu;Zhu, Zhongqiang;Gu, Mengyuan;Zou, Kun;Zhang, Junqiang",Wang N;Li X;Wang L;Zhu Z;Gu M;Zou K;Zhang J,"Department of Critical Care Medicine, The Second Hospital and Clinical Medical School, Lanzhou University, Lanzhou, Gansu Province, China.;Department of Critical Care Medicine, The Second Hospital and Clinical Medical School, Lanzhou University, Lanzhou, Gansu Province, China.;Department of Critical Care Medicine, The Second Hospital and Clinical Medical School, Lanzhou University, Lanzhou, Gansu Province, China.;Department of Critical Care Medicine, The Second Hospital and Clinical Medical School, Lanzhou University, Lanzhou, Gansu Province, China.;Department of Critical Care Medicine, The Second Hospital and Clinical Medical School, Lanzhou University, Lanzhou, Gansu Province, China.;Department of Critical Care Medicine, The Second Hospital and Clinical Medical School, Lanzhou University, Lanzhou, Gansu Province, China.;Department of Critical Care Medicine, The Second Hospital and Clinical Medical School, Lanzhou University, Lanzhou, Gansu Province, China. Electronic address: zhangjqlz@163.com.",eng,Journal Article;Review,20260505,United States,J Surg Res,The Journal of surgical research,0376340,IM,*Pancreaticoduodenectomy/adverse effects;Humans;*Sepsis/epidemiology/etiology/prevention & control;*Postoperative Complications/epidemiology/etiology/prevention & control;Bibliometrics;Risk Factors;Pancreatic Fistula/prevention & control/etiology/epidemiology;Surgical Wound Infection/prevention & control/epidemiology/etiology,NOTNLM,Bibliometric analysis;Pancreatoduodenectomy;Perioperative management;Postoperative pancreatic fistula;Postoperative sepsis;Risk stratification;Surgical site infection,,2026/05/07 00:32,2026/06/12 13:03,2026/05/06 23:48,2026/01/03 00:00 [received];2026/03/24 00:00 [revised];2026/04/02 00:00 [accepted];2026/06/12 13:03 [medline];2026/05/07 00:32 [pubmed];2026/05/06 23:48 [entrez],10.1016/j.jss.2026.04.010,ppublish,48,,,,,,,,,,,PUBMED,,,57,"Wang N, 2026, J Surg Res",0,"Wang N, 2026, J Surg Res"
+42083522,NLM,MEDLINE,20260613,20260613,22,,2026,Web of Science Bibliometrics Analysis of Magnetic Resonance Imaging Research Advances in Multiple Sclerosis.,10.2174/0115734056439145260413194039 [doi],"INTRODUCTION: Comprehensive bibliometric analysis of magnetic resonance imaging applications in multiple sclerosis research remains scarce despite exponential growth. This study maps 25-year global MS-MRI trends (2000-2024) to identify transformative shifts. METHODS: We analyzed 8,038 publications from the Web of Science Core Collection using VOSviewer, Bibliometrix, and CiteSpace. Machine learning clustering quantified collaboration networks, while dual-map overlays and burst detection quantified interdisciplinary bridges and paradigm shifts. RESULTS: Publication growth showed three phases: steady (2005-2011, +6.2%/year), accelerated (2011-2021, peak 480 publications), and stabilization (2022-2024), with recent decline linked to diagnostic criteria simplification and artificial intelligence-driven consolidation. The USA dominated total output (24.2%), while the UK led international collaboration (44.2% multi-country publications). China's unique focus on psychoneuroimmunology contrasts with Western clinical-translational priorities. The strongest interdisciplinary link connected Neurology/Sports/Ophthalmology and Molecular/Biology/Genetics fields (Z-score = 5.3). Artificial intelligence drove paradigm shifts, with deep learning showing the highest keyword burst strength (413.27). Central authors (e.g., Massimo Filippi, Frederik Barkhof) bridged magnetic resonance imaging biomarkers and therapeutic innovation. DISCUSSION: MS-MRI research is evolving from descriptive observations to AI-driven precision medicine. Future success relies on a closed-loop paradigm integrating ultra-high-field MRI and multi-omics. CONCLUSION: This analysis reveals: (1) Magnetic resonance imaging-artificial intelligence-biomarker integration resolves clinical-radiological paradoxes, enabling dynamic patient stratification; (2) ultra-high-field magnetic resonance imaging and multi-omics provide a roadmap for precision neurology in therapy personalization; (3) global collaboration synergies may democratize advanced multiple sclerosis care.",,"Li, Xiaoxing;Peng, Dingbang;Liang, Xiao;Wang, Yao;Yang, Chen;Wu, Lin;Zhou, Fuqing",Li X;Peng D;Liang X;Wang Y;Yang C;Wu L;Zhou F,"Department of Radiology, Jiangxi Provincial Key Laboratory for Precision Pathology and Intelligent Diagnosis, The First Affiliated Hospital, Jiangxi Medical College, Nanchang University, 17 Yongwaizheng Street, Nanchang, Jiangxi 330006, People's Republic of China.;Jiangxi Province Medical Imaging Research Institute, 17 Yongwaizheng Street, Nanchang, Jiangxi 330006, People's Republic of China.;Clinical Research Center For Medical Imaging In Jiangxi Province, 17 Yongwaizheng Street, Nanchang, Jiangxi 330006, People's Republic of China.;Department of Radiology, Fuzhou Medical College, Nanchang University, Fuzhou, 9 Donglin Road, Fuzhou, Jiangxi 344000, People's Republic of China.;Department of Radiology, Jiangxi Provincial Key Laboratory for Precision Pathology and Intelligent Diagnosis, The First Affiliated Hospital, Jiangxi Medical College, Nanchang University, 17 Yongwaizheng Street, Nanchang, Jiangxi 330006, People's Republic of China.;Jiangxi Province Medical Imaging Research Institute, 17 Yongwaizheng Street, Nanchang, Jiangxi 330006, People's Republic of China.;Clinical Research Center For Medical Imaging In Jiangxi Province, 17 Yongwaizheng Street, Nanchang, Jiangxi 330006, People's Republic of China.;Shandong First Medical University, Shandong Academy of Medical Sciences Department of Radiology, Shandong Cancer Hospital and Institute Jinan China.;Department of Radiology, Jiangxi Provincial Key Laboratory for Precision Pathology and Intelligent Diagnosis, The First Affiliated Hospital, Jiangxi Medical College, Nanchang University, 17 Yongwaizheng Street, Nanchang, Jiangxi 330006, People's Republic of China.;Jiangxi Province Medical Imaging Research Institute, 17 Yongwaizheng Street, Nanchang, Jiangxi 330006, People's Republic of China.;Clinical Research Center For Medical Imaging In Jiangxi Province, 17 Yongwaizheng Street, Nanchang, Jiangxi 330006, People's Republic of China.;Department of Radiology, Jiangxi Provincial Key Laboratory for Precision Pathology and Intelligent Diagnosis, The First Affiliated Hospital, Jiangxi Medical College, Nanchang University, 17 Yongwaizheng Street, Nanchang, Jiangxi 330006, People's Republic of China.;Jiangxi Province Medical Imaging Research Institute, 17 Yongwaizheng Street, Nanchang, Jiangxi 330006, People's Republic of China.;Department of Radiology, Jiangxi Provincial Key Laboratory for Precision Pathology and Intelligent Diagnosis, The First Affiliated Hospital, Jiangxi Medical College, Nanchang University, 17 Yongwaizheng Street, Nanchang, Jiangxi 330006, People's Republic of China.;Jiangxi Province Medical Imaging Research Institute, 17 Yongwaizheng Street, Nanchang, Jiangxi 330006, People's Republic of China.;Clinical Research Center For Medical Imaging In Jiangxi Province, 17 Yongwaizheng Street, Nanchang, Jiangxi 330006, People's Republic of China.",eng,Journal Article,,United Arab Emirates,Curr Med Imaging,Current medical imaging,101762461,IM,Humans;*Magnetic Resonance Imaging;*Multiple Sclerosis/diagnostic imaging;*Bibliometrics;*Biomedical Research,NOTNLM,Artificial Intelligence;Bibliometric Analysis;Magnetic Resonance Imaging;Multiple Sclerosis;Precision Medicine,,2026/05/05 06:32,2026/06/13 06:38,2026/05/05 03:33,2025/09/20 00:00 [received];2026/01/05 00:00 [revised];2026/01/15 00:00 [accepted];2026/06/13 06:38 [medline];2026/05/05 06:32 [pubmed];2026/05/05 03:33 [entrez],10.2174/0115734056439145260413194039,ppublish,e15734056439145,ORCID: 0009-0000-5739-2963;ORCID: 0000-0001-7449-9922;ORCID: 0000-0002-0890-910X,,,,,,,,,,PUBMED,,,,"Li X, 2026, Curr Med Imaging",0,"Li X, 2026, Curr Med Imaging"
+42076636,NLM,PubMed-not-MEDLINE,,20260507,26,8,2026,Computer Vision-Based Techniques for Conveyor Belt Condition Monitoring: A Systematic Review.,10.3390/s26082527 [doi];2527,"Conveyor belts are critical equipment in mining operations, where continuous and reliable material transport is essential for production efficiency. This systematic review aims to analyze computer vision-based techniques applied to conveyor belt condition monitoring. Following PRISMA guidelines, a search was conducted in the Scopus and Web of Science databases, and 80 studies were selected after applying predefined eligibility criteria. These studies were synthesized through quantitative bibliometric methods and structured qualitative thematic categorization. The findings reveal a significant increase in scientific output after 2020, as well as its geographic distribution and potentially the most influential contributions. The main research lines focus on damage detection, deviation detection, and foreign object detection. A clear transition is also observed from traditional image processing methods-such as filtering, segmentation, and geometric analysis-toward deep learning models, including YOLO, CenterNet, and hybrid architectures, with improvements in precision, speed, and stability. Nevertheless, challenges remain related to datasets representativeness, the heterogeneity of evaluation protocols, and variability in operational conditions. Finally, opportunities for advancement are identified through multimodal datasets, adaptive models, and lightweight solutions that facilitate integration into asset management systems and support scalable industrial adoption.",,"Rios-Colque, Pablo;Rios-Colque, Victor;Rios-Colque, Luis;Robles, Pedro A",Rios-Colque P;Rios-Colque V;Rios-Colque L;Robles PA,"Ingenieria Mecanica-Electromecanica-Mecatronica, Facultad Nacional de Ingenieria, Universidad Tecnica de Oruro, Oruro, Bolivia.;Ingenieria Mecanica-Electromecanica-Mecatronica, Facultad Nacional de Ingenieria, Universidad Tecnica de Oruro, Oruro, Bolivia.;Doctorado en Industria Inteligente, Facultad de Ingenieria, Pontificia Universidad Catolica de Valparaiso, Valparaiso 2340000, Chile.;Escuela de Ingenieria Quimica, Facultad de Ingenieria, Pontificia Universidad Catolica de Valparaiso, Valparaiso 2340000, Chile.",eng,Journal Article;Review,20260420,Switzerland,Sensors (Basel),"Sensors (Basel, Switzerland)",101204366,IM,,NOTNLM,artificial intelligence;computer vision;condition monitoring;conveyor belt;image processing;machine learning;maintenance;smart industry,The authors declare no conflicts of interest.,2026/05/04 06:33,2026/05/04 06:34,2026/05/04 01:22,2026/02/11 00:00 [received];2026/04/08 00:00 [revised];2026/04/14 00:00 [accepted];2026/05/04 06:34 [medline];2026/05/04 06:33 [pubmed];2026/05/04 01:22 [entrez];2026/04/20 00:00 [pmc-release],10.3390/s26082527,epublish,,ORCID: 0009-0003-2939-0516;ORCID: 0009-0006-0101-7471;ORCID: 0009-0007-3408-9233;ORCID: 0000-0002-8312-7554,PMC13120119,2026/04/20,,,,,,,,PUBMED,,,,"Rios-Colque P, 2026, Sensors (Basel)",0,"Rios-Colque P, 2026, Sensors (Basel)"
+42063116,NLM,PubMed-not-MEDLINE,20260501,20260503,38,1,2026,AI-based knee osteoarthritis progression prediction: a comprehensive global bibliometric and hotspot evolution analysis (2010-2025).,10.1186/s43019-026-00319-3 [doi];18,"BACKGROUND: Knee osteoarthritis (OA) is a leading global cause of disability, yet conventional tools lack sensitivity for early detection and precise prognostication. Artificial intelligence (AI) and machine learning (ML) offer powerful means to enhance prediction of knee OA onset and progression. This bibliometric study maps global research trends and thematic evolution rather than evaluating the clinical effectiveness of individual AI tools. OBJECTIVE: This study systematically maps the global research landscape on AI-based knee OA progression prediction from 2010 to November 2025, highlighting key contributors, collaboration networks, methodological trends, and evolving research hotspots. METHODS: A comprehensive bibliometric analysis was performed using Web of Science, Scopus, PubMed, and IEEE Xplore. Embase was not included due to substantial overlap (>90%) with PubMed/MEDLINE. Search terms included ""artificial intelligence,"" ""machine learning,"" ""deep learning,"" ""knee osteoarthritis,"" and '""progression prediction."" Following systematic deduplication and dual-reviewer screening (Cohen's kappa = 0.89), 1087 publications were included in the final analytic corpus. Extracted data covered publication and citation metrics, authorship, institutional and national contributions, and keyword co-occurrence. Network and overlay visualizations were used to characterize international collaboration and temporal evolution of research themes. RESULTS: Among the 1087 included publications, annual output increased from 3 in 2010 to 198 in 2025 (partial year through November), accumulating more than 18,000 citations. The USA was the leading contributor (42%), followed by China (26%) and the United Kingdom (15%). Harvard University and the University of California, San Francisco, emerged as the most productive institutions. Methodological focus shifted from traditional ML approaches (2010-2016) to deep learning, particularly convolutional neural networks (2017-2021), and more recently to multimodal and interpretable AI (2022-2025). Research hotspots evolved from automated radiographic grading to comprehensive progression prediction integrating imaging, clinical variables, patient-reported outcomes, and pain trajectories. CONCLUSIONS: This bibliometric analysis demonstrates that AI-driven knee OA progression prediction has developed into a dynamic, globally collaborative field with growing translational focus. Emerging research hotspots suggest increasing interest in multimodal, interpretable, and patient-centered models. Key gaps include limited external validation, heavy reliance on few cohorts (OAI/MOST), and insufficient research on clinical implementation, which should be prioritized to realize AI's potential for improving patient outcomes.",(c) 2026. The Author(s).,"Ozdemir, Ekrem;Topsakal, Fatih Emre",Ozdemir E;Topsakal FE,"Erzurum Regional Training and Research Hospital, Erzurum, Turkey. e.o.1986@hotmail.com.;Erzurum Regional Training and Research Hospital, Erzurum, Turkey.",eng,Journal Article,20260430,England,Knee Surg Relat Res,Knee surgery & related research,101575761,,,NOTNLM,Artificial intelligence;Bibliometric analysis;Deep learning;Knee osteoarthritis;Machine learning;Progression prediction,Declarations. Ethics approval and consent to participate: Not applicable. Consent for publication: Both authors affirm that informed consent for publication of all images and data was obtained from the responsible data owner where applicable. Competing interests: The authors declare no competing interests.,2026/05/01 06:34,2026/05/01 06:35,2026/05/01 00:55,2025/11/24 00:00 [received];2026/03/29 00:00 [accepted];2026/05/01 06:35 [medline];2026/05/01 06:34 [pubmed];2026/05/01 00:55 [entrez];2026/04/30 00:00 [pmc-release],10.1186/s43019-026-00319-3,epublish,,,PMC13130423,2026/04/30,,,,,,,,PUBMED,,,,"Ozdemir E, 2026, Knee Surg Relat Res",0,"Ozdemir E, 2026, Knee Surg Relat Res"
+42059442,NLM,Publisher,,20260430,,,2026,Global trends and hotspots of machine learning in the diagnosis of prostate cancer: a bibliometric analysis from 1997 to 2024.,10.4274/dir.2026.263844 [doi],"PURPOSE: Prostate cancer (PCa) diagnosis has advanced with the integration of machine learning (ML). This study analyzes global trends in ML-based PCa diagnosis research using bibliometric methods. METHODS: A systematic search was conducted in the Web of Science Core Collection database for articles published between 1997 and 2024. Bibliometric analysis was performed using VOSviewer (v1.6.20), CiteSpace (v6.3.R1), and R (v4.3.3). RESULTS: The analysis included 1,045 articles, involving 6,704 authors from 4,762 institutions across 327 countries or regions. The number of publications increased over time, rising sharply from 2018. China published the highest number of articles (290), whereas the United States demonstrated the greatest research impact, leading in total citations (8,207) and international collaborations. The Berlin Institute of Health published the highest number of articles (120). Within this dataset, European Radiology had the highest H-index. Key authors included Stephan C, Jung K, and Cammann H. Keyword analysis identified ""system,"" ""MRI,"" and ""guidelines"" as prominent terms, with emerging trends focusing on ""convolutional neural network,"" ""data system,"" and ""transfer learning."" CONCLUSION: ML in PCa diagnosis has advanced substantially, transitioning from fundamental biomarker investigations to sophisticated deep learning applications centered on medical imaging. Future directions emphasize the development of accurate, generalizable ML models integrated into clinical workflows with a continued focus on convolutional neural networks and transfer learning. CLINICAL SIGNIFICANCE: This study delineates the global research evolution of maching learning for prostate cancer diagnosis, offering clear clinical guidance for the translation and routine application of artificial intelligence- assisted diagnostic models.",,"Shi, Yixiao",Shi Y,"Operating Room of Anesthesia Surgery Center, West China Hospital/West China School of Nursing, Sichuan University, Sichuan, China",eng,Journal Article,20260430,Turkey,Diagn Interv Radiol,"Diagnostic and interventional radiology (Ankara, Turkey)",101241152,IM,,NOTNLM,Bibliometrics;research trends;diagnosis;machine learning;prostate cancer,The author declared no conflicts of interest.,2026/04/30 12:34,2026/04/30 12:34,2026/04/30 07:55,2026/04/30 12:34 [medline];2026/04/30 12:34 [pubmed];2026/04/30 07:55 [entrez],10.4274/dir.2026.263844,aheadofprint,,,,,,,,,,,,PUBMED,,,,"Shi Y, 2026, Diagn Interv Radiol",0,"Shi Y, 2026, Diagn Interv Radiol"
+42046359,NLM,MEDLINE,20260428,20260428,38,1,2025,[Visualization analysis of studies on Oncomelania hupensis control from 2005 to 2024].,10.16250/j.32.1915.2025036 [doi],"OBJECTIVE: To analyze Chinese and English publications pertaining to Oncomelania hupensis control from 2005 to 2024, so as to decipher the research status and hotspots of O. hupensis control. METHODS: Chinese and English publications pertaining to O. hupensis control from 2005 to 2024 were retrieved in the Web of Science Core Collection Database and China National Knowledge Infrastructure. The annual number of publications was analyzed from 2005 to 2024, and the author and institution cooperation networks were mapped using the software CiteSpace 6.3.1. Keywords were extracted from publications to map the co-occurrence, burst and timeline of keywords to identify the research hotspots of O. hupensis control. RESULTS: A total of 158 English publications and 771 Chinese publications were included for bibliometric analyses. The overall output of English publications was relatively small from 2005 to 2024, the annual average publication was 7.90 publications. Parasites & Vectors was the most productive journal by the number of publications (21 publications). The three most productive authors included Li Shizhu (24 publications), Zhou Xiaonong (13 publications), and Yang Kun (12 publications), and the three most productive institutions included Chinese Center for Disease Control and Prevention (49 publications), the WHO (27 publications), and Fudan University (25 publications). The annual average number of Chinese publications was high from 2005 to 2015 (57.73 publications), and reduced to 15.11 publications during the period from 2016 to 2024, with Chinese Journal of Schistosomiasis Control as the most productive journal (241 publications). The three most productive authors included Wang Wanxian (18 publications), Sun Qixiang (16 publications), and Dai Jianrong (16 publications), and the three most productive institutions included Jiangsu Institute of Parasitic Diseases (55 publications), Chinese Center for Disease Control and Prevention (47 publications), and Hubei Uni-versity (38 publications). Among the 158 English publications, molluscicidal effect, climate change, geographic information, biological control, machine learning were current research hotspots, and the Yangtze River and elimination were emerging research hotspots. Among the 771 Chinese publications, molluscicidal effect, niclosamide, comprehensive management, molluscicide, effectiveness evaluation, marshland, and endophyte were current research hotspots, and the future research hotspots shifted to molluscicidal effect and pyriclobenzuron. CONCLUSIONS: Limited attention is paid to the research on O. hupensis control across the world. The Yangtze River, elimination, molluscicidal effect, and pyriclobenzuron may be future research hotspots. High attention is recommended to be paid to the research on O. hupensis control, and development of diverse approaches for O. hupensis control is of urgent needs. We should continue to attach importance to the control research of O. hupensis and strengthen the exploration of diverse snail extermination and control methods.",,"Zhu, W;Luo, H;Wang, H;Xiong, Y;Liu, C",Zhu W;Luo H;Wang H;Xiong Y;Liu C,"Wuhan Center for Disease Control and Prevention, Wuhan, Hubei 430024, China.;Wuhan Center for Disease Control and Prevention, Wuhan, Hubei 430024, China.;Wuhan Center for Disease Control and Prevention, Wuhan, Hubei 430024, China.;Wuhan Center for Disease Control and Prevention, Wuhan, Hubei 430024, China.;Wuhan Center for Disease Control and Prevention, Wuhan, Hubei 430024, China.",chi,English Abstract;Journal Article,,China,Zhongguo Xue Xi Chong Bing Fang Zhi Za Zhi,Zhongguo xue xi chong bing fang zhi za zhi = Chinese journal of schistosomiasis control,101144973,IM,Animals;Bibliometrics;*Snails/parasitology;China;Humans;*Schistosomiasis/prevention & control/parasitology;Publications/statistics & numerical data,NOTNLM,Bibliometrics;CiteSpace;Control;Oncomelania hupensis;Schistosomiasis japonica;Visualization,,2026/04/28 06:39,2026/04/28 06:40,2026/04/28 01:54,2026/04/28 06:40 [medline];2026/04/28 06:39 [pubmed];2026/04/28 01:54 [entrez],10.16250/j.32.1915.2025036,ppublish,84,,,,WJ2019X001/Scientific Research Project of Hubei Provincial Health Commission/,,,,,,,PUBMED,,,91,"Zhu W, 2025, Zhongguo Xue Xi Chong Bing Fang Zhi Za Zhi",0,"Zhu W, 2025, Zhongguo Xue Xi Chong Bing Fang Zhi Za Zhi"
+42044010,NLM,MEDLINE,20260427,20260429,16,5,2026,Artificial Intelligence in Stroke Rehabilitation: A 20-Year Bibliometric Analysis of Digital Health Trends and Technologies.,10.1002/brb3.71451 [doi];e71451,"BACKGROUND: Stroke remains a leading cause of long-term disability worldwide, and rehabilitation is essential for recovery. Although artificial intelligence (AI)-related technologies have received growing attention in stroke rehabilitation, the knowledge structure and thematic evolution of this interdisciplinary field remain unclear. OBJECTIVE: To conduct a bibliometric analysis of AI-related research in stroke rehabilitation from 2005 to 2024 and map publication trends, major contributors, thematic clusters, and emerging topics. METHODS: Relevant publications were retrieved from the Web of Science Core Collection (WoSCC), including SCI-Expanded and SSCI, on November 30, 2024. Only English-language articles and review articles published between January 1, 2005, and November 30, 2024 were included. A total of 3436 records were analyzed using CiteSpace 6.4.R1 Basic, GraphPad Prism 10.1.2, and biblioshiny in R. Analyses covered publication trends, collaboration networks, journal distribution, keyword co-occurrence, clustering, and burst detection. RESULTS: Publication output increased markedly over time, with the United States contributing the largest number of publications. The Swiss Federal Institutes of Technology Domain was among the leading institutions, and Rocco Salvatore Calabro was among the most productive and highly cited authors. Core publication venues included the Journal of NeuroEngineering and Rehabilitation and IEEE Transactions on Neural Systems and Rehabilitation Engineering. The literature mainly focused on virtual reality, upper-limb rehabilitation, rehabilitation robotics, machine learning, cognitive rehabilitation, and transcranial direct current stimulation. Recent burst terms, including machine learning, artificial intelligence, and deep learning, indicated growing attention to data-driven rehabilitation approaches. CONCLUSIONS: AI-related research in stroke rehabilitation has expanded substantially, with increasing emphasis on adaptive, data-driven, and technology-assisted approaches. This study provides a descriptive overview of the field's major trajectories, emerging gaps, and interdisciplinary directions, and may help inform future research and translational exploration.",(c) 2026 The Author(s). Brain and Behavior published by Wiley Periodicals LLC.,"Li, Yuhua;Liu, Weixi;Yuan, Xiaomei",Li Y;Liu W;Yuan X,"Department of Neurology, Qingyang People's Hospital, Qingyang, Gansu, China.;Department of Neurology, Qingyang People's Hospital, Qingyang, Gansu, China.;Department of Trauma Surgery, Qingyang People's Hospital, Qingyang, Gansu, China.",eng,Journal Article;Review,,United States,Brain Behav,Brain and behavior,101570837,IM,*Artificial Intelligence/trends;*Bibliometrics;*Stroke Rehabilitation/methods/trends;Humans;Digital Health,NOTNLM,artificial intelligence;bibliometric analysis;digital health;rehabilitation;stroke,,2026/04/27 18:34,2026/04/27 18:35,2026/04/27 13:03,2026/04/27 18:35 [medline];2026/04/27 18:34 [pubmed];2026/04/27 13:03 [entrez];2026/04/27 00:00 [pmc-release],10.1002/brb3.71451,ppublish,e71451,,PMC13118396,2026/04/27,,,,,,,,PUBMED,,,,"Li Y, 2026, Brain Behav",0,"Li Y, 2026, Brain Behav"
+42040560,NLM,PubMed-not-MEDLINE,20260427,20260427,13,,2026,Weaning from mechanical ventilation in ICU patients: research hotspots and trends in the past decade-a bibliometric analysis.,10.3389/fmed.2026.1790796 [doi];1790796,"OBJECTIVE: To evaluate the research landscape and emerging trends in weaning from mechanical ventilation in ICU patients, providing insights to inform evidence-based practices in critical care nursing. DESIGN: Bibliometric analysis. METHODS: A systematic search identified 5,101 English-language studies published from January 2014 to February 2025 across the Web of Science Core Collection, PubMed, and Scopus. Data were analyzed using CiteSpace 6.4. R1 and VOSviewer to map publication trends, international collaborations, leading authors and institutions, core journals, and keyword clusters. RESULTS: The volume of publications increased notably from 2016, peaking in 2021-2022. The United States, China, and France emerged as the top contributors, with key institutions such as the University of Toronto playing pivotal roles in collaborative networks. Research primarily focused on factors influencing weaning outcomes, evaluation of weaning criteria, and challenges associated with difficult weaning and extubation failure. Moreover, emerging trends emphasize the integration of diaphragmatic ultrasound, the rapid shallow breathing index (RSBI), and machine learning techniques to enhance predictive accuracy and optimize weaning strategies. CONCLUSION: The evolving research trends highlight a growing emphasis on multimodal assessment and advanced predictive tools in mechanical ventilation weaning. These findings offer valuable guidance for critical care nurses and multidisciplinary teams aiming to refine weaning protocols and improve patient outcomes in intensive care settings.","Copyright (c) 2026 Mi, Liu, Li, Ye, Dong, Liu and Zhao.","Mi, Yuanyuan;Liu, Meng;Li, Hao;Ye, Xuyang;Dong, Jiang;Liu, Jing;Zhao, Xing",Mi Y;Liu M;Li H;Ye X;Dong J;Liu J;Zhao X,"Department of Intensive Care Medicine, The Sixth Hospital of Wuhan, Affiliated Hospital of Jianghan University, Wuhan, China.;Evidence-based Nursing Research Center, The Sixth Hospital of Wuhan, Affiliated Hospital of Jianghan University, Wuhan, China.;Department of Intensive Care Medicine, The Affiliated Cancer Hospital of Zhengzhou University & Henan Cancer Hospital, Zhengzhou, China.;Department of Intensive Care Medicine, Henan Provincial People's Hospital & Zhengzhou University People's Hospital, Zhengzhou, China.;Evidence-based Nursing Research Center, The Sixth Hospital of Wuhan, Affiliated Hospital of Jianghan University, Wuhan, China.;Department of Neurology, The Sixth Hospital of Wuhan, Affiliated Hospital of Jianghan University, Wuhan, China.;Department of Operation Room, Zhongnan Hospital of Wuhan University, Wuhan, China.;Department of Orthopedics, Union Hospital, Tongji Medical College, Huazhong University of Science and Technology, Wuhan, China.;Department of Intensive Care Medicine, Union Hospital, Tongji Medical College, Huazhong University of Science and Technology, Wuhan, China.",eng,Journal Article;Systematic Review,20260410,Switzerland,Front Med (Lausanne),Frontiers in medicine,101648047,,,NOTNLM,bibliometric analysis;diaphragmatic ultrasound;intensive care;machine learning;mechanical ventilation;rapid shallow breathing index;weaning,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/04/27 12:33,2026/04/27 12:34,2026/04/27 07:09,2026/01/19 00:00 [received];2026/03/17 00:00 [revised];2026/03/23 00:00 [accepted];2026/04/27 12:34 [medline];2026/04/27 12:33 [pubmed];2026/04/27 07:09 [entrez];2026/04/10 00:00 [pmc-release],10.3389/fmed.2026.1790796,epublish,1790796,,PMC13105878,2026/04/10,,,,,,,,PUBMED,,,,"Mi Y, 2026, Front Med (Lausanne)",0,"Mi Y, 2026, Front Med (Lausanne)"
+42037603,NLM,MEDLINE,20260427,20260429,56,2,2026,Large Language Models in Ophthalmology: A Bibliographic Analysis.,10.4274/tjo.galenos.2026.79484 [doi],"This study evaluated the distribution of research on the use of large language models (LLMs) in ophthalmology through a bibliographic analysis of articles retrieved from PubMed through November 2024. Studies were categorized into four main areas of LLM application: clinical decision-making (further divided according to subspecialties), education, patient interactions, and miscellaneous applications. Descriptive statistics were used to analyze the distribution of studies by ophthalmic subspecialty, geographical region, journal quality, and author characteristics, including gender and scholarly impact (h-index and i10-index). The findings revealed that clinical decision-making was the most common application (43.7%), with the majority of studies in this subgroup focusing on the retina (39.5%). Geographically, most of the research originated from North America (48.3%), followed by Asia (29.9%) and Europe (20.7%). Most studies were published in high-impact journals (Q1 journals: 74.7%), particularly for those related to clinical decision-making in retina (80.0%), glaucoma (100%), and multiple subspecialties (87.5%). Gender disparities were evident across all author roles, with female authors accounting for only 29.9% of first authors, 25.3% of last authors, and 26.4% of corresponding authors. The results suggest a need for greater diversity in terms of gender and geographic representation in LLM research in ophthalmology to promote inclusive progress in the field.",Copyright(c) 2026 The Author(s). Published by Galenos Publishing House on behalf of the Turkish Ophthalmological Association.,"Koseoglu, Neslihan Dilruba;Liu, T Y Alvin",Koseoglu ND;Liu TYA,"Tufts Medical Center, Clinic of Ophthalmology, Boston, MA, USA.;Wilmer Eye Institute, School of Medicine, Johns Hopkins University, Baltimore, MD, USA.",eng,Journal Article;Review,,Turkey,Turk J Ophthalmol,Turkish journal of ophthalmology,101686048,IM,*Ophthalmology;Humans;*Language;*Bibliometrics;Large Language Models,NOTNLM,Large language models;bibliographical analysis;ophthalmology,No conflict of interest was declared by the authors.,2026/04/27 12:34,2026/04/27 12:35,2026/04/27 06:34,2026/04/27 12:35 [medline];2026/04/27 12:34 [pubmed];2026/04/27 06:34 [entrez];2026/04/27 00:00 [pmc-release],10.4274/tjo.galenos.2026.79484,ppublish,119,ORCID: 0000-0001-9268-1461;ORCID: 0000-0003-2957-0755,PMC13112507,2026/04/27,,,,,,,,PUBMED,,,130,"Koseoglu ND, 2026, Turk J Ophthalmol",0,"Koseoglu ND, 2026, Turk J Ophthalmol"
+42036384,NLM,MEDLINE,20260426,20260426,55,2,2026,[Bibliometric mapping of the application of artificial intelligence in nutrition: a visualization analysis].,10.19813/j.cnki.weishengyanjiu.2026.02.020 [doi],"OBJECTIVE: To reveal the knowledge structure, research hotspots, and development trends in the field of nutrition through visual analysis of core literature on the application of artificial intelligence(AI), providing a reference for nutritional research. METHODS: Using bibliometric method, we retrieved relevant literature from the Web of Science database between 2016 and 2024, limiting the literature types to original articles or reviews. CiteSpace 6.4. R1 software was used for visual analysis, including keyword co-occurrence, clustering, timeline, and emergence analysis, to construct a knowledge graph and analyze author, institutional collaboration networks, and research themes. RESULTS: A total of 1896 core papers were included, showing an accelerating growth trend in publication volume, entering a rapid growth phase after 2021, with a total growth rate of 485.7% and an average annual growth rate of 19.8%. Core authors included 78 individuals, accounting for 25.74% of all researchers, publishing 433 papers, which accounted for 22.84% of the total literature. Research institutions were mainly concentrated in China and the United States, with the University of California and Harvard University in the U. S. , and the Chinese Academy of Sciences and the Chinese Academy of Medical Sciences/Union Medical College in China, occupying core positions in the collaboration network. Keyword analysis revealed that keywords such as ""machine learning""""metabolic syndrome""""gut microbiota"" were high-frequency terms, accounting for 45.31% of the total word frequency. Keyword clustering analysis formed 11 thematic clusters, covering key application scenarios such as chronic disease risk assessment and personalized dietary interventions. The keyword burst analysis reveals evolving research priorities, shifting from disease-diet association studies to nutrition interventions, mental health, and technical standardization. CONCLUSION: The findings indicate that AI applications in nutrition are advancing toward diversified and refined development. Future efforts should emphasize interdisciplinary collaboration to promote standardized and policy-driven implementation of these technologies.",,"Cui, Yunshang;Tang, Zengxu;Yuan, Hongtao;Xu, Yuanyuan",Cui Y;Tang Z;Yuan H;Xu Y,"Chinese Center for Disease Control and Prevention, Beijing 102206, China.;National Institute for Nutrition and Health, Chinese Center for Disease Control and Prevention, Beijing 100050, China.;National Institute for Nutrition and Health, Chinese Center for Disease Control and Prevention, Beijing 100050, China.;Chinese Center for Disease Control and Prevention, Beijing 102206, China.",chi,English Abstract;Journal Article,,China,Wei Sheng Yan Jiu,Wei sheng yan jiu = Journal of hygiene research,9426367,IM,*Artificial Intelligence;*Bibliometrics;Humans;*Nutritional Sciences;China,NOTNLM,artificial intelligence;bibliometrics;knowledge graph;nutrition science,,2026/04/27 00:30,2026/04/27 00:31,2026/04/26 22:43,2026/04/27 00:31 [medline];2026/04/27 00:30 [pubmed];2026/04/26 22:43 [entrez],10.19813/j.cnki.weishengyanjiu.2026.02.020,ppublish,311,,,,,,,,,,,PUBMED,,,318,"Cui Y, 2026, Wei Sheng Yan Jiu",0,"Cui Y, 2026, Wei Sheng Yan Jiu"
+42032150,NLM,PubMed-not-MEDLINE,20260607,20260615,17,1,2026,Bibliometric analysis of single-cell RNA sequencing in tumor microenvironment.,10.1007/s12672-026-05073-2 [doi];864,"The tumor microenvironment (TME) has emerged as a pivotal determinant of tumor progression, immune evasion, and therapeutic response, making it a central focus in modern oncology. Single-cell RNA sequencing (scRNA-seq) has revolutionized our ability to dissect the cellular heterogeneity and dynamic interactions within the TME at unprecedented resolution, enabling precise identification of cell types, functional states, and intercellular communication networks. In this study, we conducted a comprehensive bibliometric analysis of 187 publications of scRNA-seq in TME, indexed in the Web of Science Core Collection from January 1999 to July 2024. Our analysis reveals that China and the United States are the dominant contributors in terms of publication volume and citation impact, with Peking University and Harvard University leading institutional output. Keyword analysis revealed that the most frequent terms were ""tumor microenvironment,"" ""single-cell RNA sequencing,"" ""gene expression,"" and ""cancer"". Journals with highly cited articles mainly include Nature Genetics, Cancer Research, Annual Review of Immunology, Nature Communications, Science Translational Medicine, Genome Biology, Journal of Hepatology, and Nature Cell Biology. Current studies primarily focus on using scRNA-seq to identify cell types and subtypes within the TME, as well as to investigate cell-cell interactions and communication. These findings offer valuable insights into advancing our understanding of tumor genetics, immune evasion mechanisms, diagnostic and prognostic biomarkers, and treatment resistance. While the field demonstrates rapid growth, enhanced international collaboration remains an urgent unmet need. Future research will likely to center on roles of immune and stromal cells within the TME revealed by scRNA-seq, as well as the integration of scRNA-seq with spatial transcriptomics and machine learning. It represents a promising direction for developing novel tumor therapies.",,"Ma, Jing;Chen, Tingting;Shen, Kefei;Fang, Mengru;Zhang, Yanyan;Yang, Lu;Guo, Longfei",Ma J;Chen T;Shen K;Fang M;Zhang Y;Yang L;Guo L,"Department of Endocrinology and Metabolism, Gansu Provincial Hospital, Gansu Branch of National Clinical Research Center for Metabolic Diseases, Lanzhou, China.;The First Hospital and Clinical Medical School, Lanzhou University, Lanzhou, China.;The Second Hospital and Clinical Medical School, Lanzhou University, Lanzhou, China.;Beijing Neurosurgical Institute, Capital Medical University, Beijing, China.;The Second Hospital and Clinical Medical School, Lanzhou University, Lanzhou, China.;Department of Endocrinology and Metabolism, Gansu Provincial Hospital, Gansu Branch of National Clinical Research Center for Metabolic Diseases, Lanzhou, China.;The Second Hospital and Clinical Medical School, Lanzhou University, Lanzhou, China.;Department of Critical Care Medicine, Gansu Provincial Hospital, No. 204 Donggang West Road, Lanzhou, 730000, Gansu, China. guolongfei0920@126.com.",eng,Journal Article;Review,20260424,United States,Discov Oncol,Discover oncology,101775142,,,NOTNLM,Bibliometric analysis;Cancer immunity;Immunotherapy;Single-cell RNA sequencing;Tumor microenvironment,"Declarations. Ethics approval and consent to participate: All data used in this study were downloaded from public databases. Therefore, no ethical approval was required. Consent for publication: Not applicable. Institutional review board statement: Not applicable Competing interests: The authors declare no competing interests.",2026/04/25 00:34,2026/04/25 00:35,2026/04/24 23:27,2025/11/11 00:00 [received];2026/04/20 00:00 [accepted];2026/04/25 00:35 [medline];2026/04/25 00:34 [pubmed];2026/04/24 23:27 [entrez];2026/04/24 00:00 [pmc-release],10.1007/s12672-026-05073-2,epublish,,,PMC13243147,2026/04/24,21GSSYC-6/Gansu Provincial Hospital/;25JRRA872/Natural Science Foundation of Gansu Province/,,,,,,,PUBMED,,,,"Ma J, 2026, Discov Oncol",0,"Ma J, 2026, Discov Oncol"
+42031192,NLM,MEDLINE,20260511,20260511,715,,2026,Time-of-flight secondary ion mass spectrometry research advances from a effective bibliometric method.,S0003-2697(26)00093-X [pii];10.1016/j.ab.2026.116137 [doi],"Due to the ability for high-resolution molecular imaging and chemical analysis with spatial resolution, time-of-flight secondary ion mass spectrometry (TOF-SIMS) is an extremely powerful surface analysis technique that is commonly used for chemical and biological analysis. The R-based bibliometric analysis is presented for the evaluation of the advancement of the TOF-SIMS research. The proposed approach enables flexible data processing and extensive quantitative analysis of the trends of the research, making it superior to commonly used visualization tools like VOSviewer. The results of the analysis reveal that significant improvements have been made in the last ten years for both small molecules (m/z < 300) and large molecules (m/z > 300). Single cell analysis, in situ interface analysis, and microfluidics are emerging trends for TOF-SIMS analysis. The study also presents an approach to leverage the power of big data and machine learning for peak analysis of complex data sets.",Copyright (c) 2026 Elsevier Inc. All rights reserved.,"Chen, Shan;Wang, Junsha;Huang, Xinyu;Chen, Kailin;Fu, Limei;Ding, Yuanzhao",Chen S;Wang J;Huang X;Chen K;Fu L;Ding Y,"Science of Learning in Education Centre, National Institute of Education, Nanyang Technological University, Singapore City, 637616, Singapore. Electronic address: chenshan1893@gmail.com.;Zhejiang Communications Construction Group Co., Ltd, 310051, Hangzhou, China. Electronic address: wjunsha@zjjtgc.com.;School of Computer Science and Informatics, Cardiff University, Cardiff, United Kingdom. Electronic address: huangx50@cardiff.ac.uk.;School of Management, Guangzhou Huali College, Guangzhou, Guangdong, 511325, China. Electronic address: 1415773720@qq.com.;Guangzhou Metro Group Co., Ltd, Guangzhou, Guangdong, 511325, China. Electronic address: 423219644@qq.com.;Department of Civil and Environmental Engineering, National University of Singapore, Singapore. Electronic address: armstrongding@163.com.",eng,Journal Article,20260422,United States,Anal Biochem,Analytical biochemistry,0370535,IM,"*Spectrometry, Mass, Secondary Ion/methods;*Bibliometrics;Single-Cell Analysis;Humans",NOTNLM,Bibliometric method;Big data;Machine learning;R studio;Time-of-flight secondary ion mass spectrometry (TOF-SIMS),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/04/25 00:34,2026/05/12 00:33,2026/04/24 19:13,2026/02/15 00:00 [received];2026/03/13 00:00 [revised];2026/04/21 00:00 [accepted];2026/05/12 00:33 [medline];2026/04/25 00:34 [pubmed];2026/04/24 19:13 [entrez],10.1016/j.ab.2026.116137,ppublish,116137,,,,,,,,,,,PUBMED,,,,"Chen S, 2026, Anal Biochem",0,"Chen S, 2026, Anal Biochem"
+42029753,NLM,MEDLINE,20260424,20260522,198,5,2026,Geospatial data and analytical tools for shoreline change monitoring: a global trend analysis.,496 [pii];10.1007/s10661-026-15392-0 [doi],"Coastal erosion, driven by climate change, sea-level rise, and human activities, poses critical risks to coastal ecosystems and communities worldwide. Understanding how the scientific community has investigated shoreline change is essential for advancing monitoring and management strategies. This study presents a bibliometric review of global research on shoreline change detection, analysing 2,711 publications (2014-2024) retrieved from Scopus and Web of Science. Following duplicate and language screening, 2,009 studies were assessed using Bibliometric R and VOSviewer. Results indicate that the United States leads global output (33.7%), with collaborations concentrated among developed nations. A marked methodological shift was observed from traditional beach transects to geospatial technologies, with image-based approaches dominating (62.8%), followed by numerical (26.9%) and field-based (10.3%) methods. Tools such as DSAS and ArcGIS remain central, while machine learning applications, though limited (3.4%), show increasing potential for automation and predictive modeling. Research gaps persist, particularly in integrating nature-based shoreline protection measures and applying AI-driven approaches. Future directions should prioritize interdisciplinary frameworks that combine remote sensing, GIS, numerical modelling, and machine learning to improve shoreline monitoring and resilience.","(c) 2026. The Author(s), under exclusive licence to Springer Nature Switzerland AG.","Al-Marri, Anan;Noor, Noorashikin Md;Bilal, Hazrat;Abdul Maulud, Khairul Nizam;Kemarau, Ricky Anak;Al-Ansari, Tareq",Al-Marri A;Noor NM;Bilal H;Abdul Maulud KN;Kemarau RA;Al-Ansari T,"Earth Observation Centre, Institute of Climate Change, Universiti Kebangsaan Malaysia, Selangor, 43600 UKM, Malaysia.;Qatar Environment and Energy Research Institute, Hamad Bin Khalifa University, Qatar Foundation, Education City, Doha, Qatar.;Earth Observation Centre, Institute of Climate Change, Universiti Kebangsaan Malaysia, Selangor, 43600 UKM, Malaysia. noor@ukm.edu.my.;Marine Ecosystem Research Centre (EKOMAR), Natural & Physical Laboratories Management Centre (ALAF-UKM), Universiti Kebangsaan Malaysia, Selangor, 43600 UKM, Malaysia. noor@ukm.edu.my.;Division of Sustainable Development, College of Science and Engineering, Hamad Bin Khalifa University, Qatar Foundation, Education City, Doha, Qatar.;Department of Civil Engineering, Faculty of Engineering and Built Environment, Universiti Kebangsaan Malaysia, Selangor, 43600 UKM, Malaysia.;Institute of Oceanography and Environment, Universiti Malaysia Terengganu, Terengganu, 21030, Kuala Nerus, Malaysia.;Earth Observation Centre, Institute of Climate Change, Universiti Kebangsaan Malaysia, Selangor, 43600 UKM, Malaysia.;Division of Sustainable Development, College of Science and Engineering, Hamad Bin Khalifa University, Qatar Foundation, Education City, Doha, Qatar.",eng,Journal Article;Review,20260424,Netherlands,Environ Monit Assess,Environmental monitoring and assessment,8508350,IM,"*Environmental Monitoring/methods;Climate Change;Geographic Information Systems;Ecosystem;Remote Sensing Technology;Conservation of Natural Resources/methods;Pattern Analysis, Machine",NOTNLM,Climate Change;Coastal erosion;Environmental Management;Geospatial tools;Machine Learning;Remote Sensing,"Declarations. Ethics approval: Not applicable. This review article does not involve studies with human participants or animals. Consent to participate: Not applicable. Consent to publish: Not applicable. Ethical responsibilities of Authors: All authors have read, understood, and have complied as applicable with the statement on ""Ethical responsibilities of Authors"" as found in the Instructions for Authors. Competing interests: The authors declare no competing interests.",2026/04/24 12:35,2026/04/24 12:36,2026/04/24 11:06,2025/10/09 00:00 [received];2026/04/22 00:00 [accepted];2026/04/24 12:36 [medline];2026/04/24 12:35 [pubmed];2026/04/24 11:06 [entrez],10.1007/s10661-026-15392-0,epublish,,ORCID: 0000-0002-0302-5743;ORCID: 0000-0002-6747-5997;ORCID: 0000-0002-9215-2778;ORCID: 0009-0006-3359-1726,,,ZF-2026-001/Universiti Kebangsaan Malaysia/,,,,,,,PUBMED,,,,"Al-Marri A, 2026, Environ Monit Assess",0,"Al-Marri A, 2026, Environ Monit Assess"
+42029334,NLM,Publisher,,20260424,,,2026,A Bibliometric Analysis of Artificial Intelligence and Digital Technologies in Maxillofacial Skeletal Reconstruction: Current Applications and Research Trends.,10.1097/SCS.0000000000012778 [doi],"BACKGROUND: Maxillofacial skeletal defects lead to functional impairments, aesthetic disfigurement, and psychosocial burdens, while traditional surgical approaches face challenges in precision and personalization. Recent advancements in artificial intelligence (AI) and digital technologies offer potential for enhanced precision and innovation. PURPOSE: A bibliometric analysis was conducted to explore the current applications, research trends, and development process of AI and digital technologies in maxillofacial skeletal reconstruction. METHODS: Five hundred sixteen articles published from 1996 were retrieved from the Web of Science Core Collection. Data were analyzed using CiteSpace and VOSviewer to evaluate publication trends, journal/institutional contributions, collaborations, co-citation, and keyword bursts. RESULTS: On average, 17.64 articles were published annually, and this number increased significantly, with a notable surge in AI-related studies post-2022. The Journal of Stomatology Oral and Maxillofacial Surgery ranked highest in publication volume (36 articles), while the Journal of Cranio-Maxillofacial Surgery received the most citations (1213). China led in productivity (86 articles), whereas the USA had the most citations (1777). Keyword bursts revealed evolving research focus: early emphasis on rapid prototyping (2008-2016) transitioned to artificial intelligence (2023-2025) and machine learning (2022-2025). Collaborative networks highlighted partnerships among China, Germany, Italy, and the USA. CONCLUSION: Artificial intelligence (AI) and digital technologies were revolutionizing maxillofacial reconstruction through enhanced precision and innovation. However, challenges such as data bias, algorithmic transparency, and regional disparities require global collaboration and standardized protocols. Future efforts should prioritize integrating AI tools, diversifying data sets, and expanding inclusion of non-English literature. This study underscored the transformative potential of AI while advocating for equitable technological advancement.","Copyright (c) 2026 by Mutaz B. Habal, MD.","Deng, Yifei;Zhu, Songsong;Bi, Ruiye",Deng Y;Zhu S;Bi R,"Department of Orthognathic and TMJ Surgery, State Key Laboratory of Oral Diseases, National Clinical Research Center for Oral Diseases, West China Hospital of Stomatology, Sichuan University, Chengdu.;Department of Orthognathic and TMJ Surgery, State Key Laboratory of Oral Diseases, National Clinical Research Center for Oral Diseases, West China Hospital of Stomatology, Sichuan University, Chengdu.;Stomatology Hospital, School of Stomatology, Zhejiang University School of Medicine, Hangzhou, Zhejiang, China.;Department of Orthognathic and TMJ Surgery, State Key Laboratory of Oral Diseases, National Clinical Research Center for Oral Diseases, West China Hospital of Stomatology, Sichuan University, Chengdu.",eng,Journal Article,20260424,United States,J Craniofac Surg,The Journal of craniofacial surgery,9010410,IM,,NOTNLM,Artificial intelligence;bibliometric analysis;digital technologies;maxillofacial skeletal reconstruction,The authors report no conflicts of interest.,2026/04/24 12:36,2026/04/24 12:36,2026/04/24 10:24,2025/11/10 00:00 [received];2026/03/18 00:00 [accepted];2026/04/24 12:36 [medline];2026/04/24 12:36 [pubmed];2026/04/24 10:24 [entrez],10.1097/SCS.0000000000012778,aheadofprint,,ORCID: 0000-0002-8297-9691,,,No. 2023YFC2509200/National Key Research and Development Program of China/;No. 2023YFS0035/Key R&D Program of Sichuan Provincial Department of Science and Technology/;LCYJ2023-DL-5/Clinical Research Program of West China Hospital of Stomatology/,,,,,,,PUBMED,,,,"Deng Y, 2026, J Craniofac Surg",0,"Deng Y, 2026, J Craniofac Surg"
+42027710,NLM,PubMed-not-MEDLINE,20260424,20260424,12,,2026,Research hotspots and trends in virtual reality combined exercise therapy for stroke rehabilitation: A bibliometric analysis.,10.1177/20552076261440978 [doi];20552076261440978,"BACKGROUND: Stroke is one of the leading causes of mortality and long-term disability worldwide. In recent years, integrated rehabilitation models that combine virtual reality (VR) technology with standardized exercise therapy have emerged, demonstrating promising potential in improving recovery outcomes. OBJECTIVE: This bibliometric review systematically analyzes global literature on virtual reality combined with exercise therapy for stroke rehabilitation to map the knowledge landscape, identify research hotspots and evolutionary trends, and inform future research, clinical practice, and policy. METHODS: Relevant studies on VR combined with exercise therapy for stroke rehabilitation were retrieved from the Web of Science database, covering the period from database inception to 2025. Bibliometric and visualization analyses were conducted using CiteSpace and VOSviewer to assess publication trends, country, institutional contributions, authors and co-cited authors networks, highly cited references, core journals, and the evolution of research hotspots. RESULTS: A total of 1,687 articles were identified, showing a steady upward publication trend. China ranked first in publication volume, while the United States had the highest total citation count. Researchers such as Calabro, De Luca, and Naro from the IRCCS Centro Neurolesi in Messina, Italy, made notable contributions, particularly in VR-robotics combined rehabilitation. The Journal of NeuroEngineering and Rehabilitation published the largest number of articles in this field. Keyword burst analysis indicated two distinct phases: before 2021, research primarily focused on conventional rehabilitation methods and clinical trials; after 2021, attention shifted towards the integration of emerging technologies in stroke rehabilitation, including machine learning and immersive VR, reflecting growing scholarly interest in novel rehabilitation strategies. CONCLUSIONS: This study provides a comprehensive bibliometric analysis of VR combined with exercise therapy in stroke rehabilitation, identifying key research hotspots, emerging trends, and existing limitations. The findings could offer theoretical insights and data-driven evidence to support future research and clinical applications in this field.",(c) The Author(s) 2026.,"Tang, Chenjian;Su, Jing;Quan, Youfang;Deng, Xiaohua;Ding, Mengxiong;Dan, Yuzhuo",Tang C;Su J;Quan Y;Deng X;Ding M;Dan Y,"Department of Acupuncture, Hospital of Chengdu University of Traditional Chinese Medicine, Chengdu, China. RINGGOLD: 176759;Department of Acupuncture, Hospital of Chengdu University of Traditional Chinese Medicine, Chengdu, China. RINGGOLD: 176759;Rehabilitation Department, Second Ward, Deyang Hospital Affiliated Hospital of Chengdu University of Traditional Chinese Medicine, Deyang, China. RINGGOLD: 425693;Rehabilitation Department, Second Ward, Deyang Hospital Affiliated Hospital of Chengdu University of Traditional Chinese Medicine, Deyang, China. RINGGOLD: 425693;Department of Medical Records, The Second Affiliated Hospital of Chengdu Medical College, Nuclear Industry 416 Hospital, Chengdu, China. RINGGOLD: 582792;Department of Acupuncture, Hospital of Chengdu University of Traditional Chinese Medicine, Chengdu, China. RINGGOLD: 176759",eng,Journal Article,20260417,United States,Digit Health,Digital health,101690863,,,NOTNLM,bibliometric analysis;exercise therapy;rehabilitation;stroke;virtual reality,"The authors declared no potential conflicts of interest with respect to the research, authorship, and/or publication of this article.",2026/04/24 12:20,2026/04/24 12:21,2026/04/24 04:49,2025/12/03 00:00 [received];2026/03/22 00:00 [revised];2026/03/24 00:00 [accepted];2026/04/24 12:21 [medline];2026/04/24 12:20 [pubmed];2026/04/24 04:49 [entrez];2026/04/17 00:00 [pmc-release],10.1177/20552076261440978,epublish,20552076261440978,ORCID: 0009-0009-0421-1984,PMC13100433,2026/04/17,,,,,,,,PUBMED,,,,"Tang C, 2026, Digit Health",0,"Tang C, 2026, Digit Health"
+42023252,NLM,PubMed-not-MEDLINE,20260423,20260423,12,1,2026,Facial expression recognition for emotion perception: A comprehensive science mapping.,10.1002/ibra.70010 [doi],"Facial expression recognition (FER) has emerged as a pivotal interdisciplinary research domain that bridges computer science, psychology, neuroscience, and medicine. By mapping the FER scientific knowledge graph, this study aimed to explore the technological evolution and forecast future trends in this field. The study collected and cleaned the research on emotion perception in the Web of Science (WoS) database, and utilized the software CiteSpace (version 6.4R1) and R (BiblioShiny packages) software to create a scientific knowledge map. K-means was used for cluster analysis, and then the latent Dirichlet allocation (LDA) was employed to extract popular topics from the text of each cluster. Uniform manifold approximation and projection (UMAP) was utilized to reduce high-dimensional embeddings to a two-dimensional space. From a regional perspective, research is mainly distributed in countries or regions such as North America, Western Europe, East Asia, India, and Australia. Research on facial emotion recognition has focused primarily on neuroscience, psychiatry, and psychology. With the rapid development of computer technology, the interdisciplinary intersection is becoming increasingly important as FER has shown strong potential in identifying rare and neurological diseases. Furthermore, the evolution of artificial intelligence (AI) has transformed facial expression feature extraction from manual methodologies to machine learning-based approaches. The rapid development of computer algorithms and AI has greatly improved the accuracy and speed of facial emotion recognition. As a technology capable of detecting instantaneous emotional changes, FER holds promising prospects in fields such as neuroscience, emotion analysis, and pain assessment.",(c) 2026 The Author(s). Ibrain published by Affiliated Hospital of Zunyi Medical University (AHZMU) and Wiley-VCH GmbH.,"Kan, Hou-Ming;Chen, Li-Ping;Zhang, Yu;Hong, Hao-Yuan;Qin, Ying-Ying;Cui, Yu-Guo;Mao, Yu-Bo;Cheng, Yan-Zhi;Lu, Zhe;Ni, Hong-Yan;Ding, Xiao-Tong",Kan HM;Chen LP;Zhang Y;Hong HY;Qin YY;Cui YG;Mao YB;Cheng YZ;Lu Z;Ni HY;Ding XT,"Faculty of Medicine Macau University of Science and Technology Macau SAR China.;Department of Pain Affiliated Hospital of Xuzhou Medical University Xuzhou China.;Faculty of Medicine Macau University of Science and Technology Macau SAR China.;Faculty of Medicine Macau University of Science and Technology Macau SAR China.;Faculty of Medicine Macau University of Science and Technology Macau SAR China.;Faculty of Medicine Macau University of Science and Technology Macau SAR China.;Faculty of Medicine Macau University of Science and Technology Macau SAR China.;Faculty of Medicine Macau University of Science and Technology Macau SAR China.;Faculty of Medicine Macau University of Science and Technology Macau SAR China.;Department of Anesthesiology and Perioperative Medicine Suqian First Hospital Suqian China.;School of Psychological and Cognitive Sciences and Beijing Key Laboratory of Behavior and Mental Health Peking University Beijing China.;Key Laboratory of Machine Perception (Ministry of Education) Peking University Beijing China.;School of Nursing, Chinese Academy of Medical Sciences & Peking Union Medical College Beijing China.",eng,Journal Article;Review,20260115,United States,Ibrain,Ibrain,9918680988706676,,,NOTNLM,artificial intelligence;bibliometric analysis;emotion perception;facial expression recognition;science mapping,The authors declare no conflicts of interest.,2026/04/23 06:32,2026/04/23 06:33,2026/04/23 05:19,2025/10/07 00:00 [received];2026/01/03 00:00 [revised];2026/01/07 00:00 [accepted];2026/04/23 06:33 [medline];2026/04/23 06:32 [pubmed];2026/04/23 05:19 [entrez];2026/01/15 00:00 [pmc-release],10.1002/ibra.70010,epublish,38,ORCID: 0009-0003-8191-3177;ORCID: 0000-0003-2967-7640,PMC13097579,2026/01/15,,,,,,,,PUBMED,,,51,"Kan HM, 2026, Ibrain",0,"Kan HM, 2026, Ibrain"
+42023065,NLM,PubMed-not-MEDLINE,20260423,20260423,29,,2026,Demystifying machine learning approaches in digital bone imaging using microCT and HRpQCT.,10.1016/j.bonr.2026.101911 [doi];101911,"Micro-computed tomography (microCT) and high-resolution peripheral quantitative computed tomography (HRpQCT) generate three-dimensional digital images capturing bone structure and quality. Radiomic analytical approaches applied to these images extract quantitative measures of bone microarchitecture (e.g., bone volume and density). Automating and interpreting radiomics data using conventional image analysis techniques (e.g., bone segmentation) and statistical approaches is often inadequate due to their limited capacity to accommodate complex, nonlinear relationships. These limitations are especially apparent in bone research when integrating imaging outcomes with results from complementary analytical methods (e.g., biomechanics and histology) and experimental factors (e.g., clinical data). Machine learning (ML) offers opportunities in bone research by leveraging powerful computational tools; for example, to enhance bone spatial resolution, accelerate digital image segmentation, and reveal hidden patterns and relationships within high-dimensional bone data. Insights into key ML model inputs, which may be interpreted as primary biological phenotypes or therapeutic targets, can be revealed using standard (i.e., parametric and non-parametric analyses) or advanced statistical methods (i.e., dimensionality reduction and data integration). Overall, this narrative review has three main objectives: (1) to introduce current applications of ML in preclinical and clinical bone research using microCT and HRpQCT; (2) synthesize the interconnectedness of the field of bone and machine learning through user-friendly scientometric and bibliometric analyses and visualization using our novel software called SciNetX; and (3) to provide an accessible, high-level understanding of how ML models are developed and interpreted. These elements aim to provide a foundational guide to incorporating ML into bone research using digital imaging techniques.",(c) 2026 The Authors. Published by Elsevier Inc.,"David, Michael A;Williams, Kyle G;Constantine, Evangelia P;Matthias, Julia;Ferguson, Virginia L;Adams, Douglas J",David MA;Williams KG;Constantine EP;Matthias J;Ferguson VL;Adams DJ,"Colorado Program for Musculoskeletal Research, Department of Orthopedics, University of Colorado Anschutz, United States of America.;School of Medicine, University of Colorado Anschutz, United States of America.;School of Medicine, University of Colorado Anschutz, United States of America.;Colorado Program for Musculoskeletal Research, Department of Orthopedics, University of Colorado Anschutz, United States of America.;Department of Mechanical Engineering, University of Colorado Boulder, United States of America.;Colorado Program for Musculoskeletal Research, Department of Orthopedics, University of Colorado Anschutz, United States of America.",eng,Journal Article;Review,20260406,United States,Bone Rep,Bone reports,101646176,,,NOTNLM,Bone imaging;Computed tomography;Deep learning;HRpQCT;Machine learning;MicroCT,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/04/23 06:32,2026/04/23 06:33,2026/04/23 05:17,2025/08/02 00:00 [received];2026/03/17 00:00 [revised];2026/03/25 00:00 [accepted];2026/04/23 06:33 [medline];2026/04/23 06:32 [pubmed];2026/04/23 05:17 [entrez];2026/04/06 00:00 [pmc-release],10.1016/j.bonr.2026.101911,epublish,101911,,PMC13098347,2026/04/06,,,,,,,,PUBMED,,,,"David MA, 2026, Bone Rep",0,"David MA, 2026, Bone Rep"
+42021824,NLM,PubMed-not-MEDLINE,20260423,20260423,39,,2025,"Global Research Landscape of Artificial Intelligence in Urology: A Systematic Analysis of Emerging Trends, Clinical Impact, and Collaborative Networks (1971-2024).",10.47176/mjiri.39.156 [doi];156,"BACKGROUND: Despite the rapid integration of artificial intelligence (AI) in urological practice, a comprehensive understanding of research evolution and impact patterns remains unexplored. This analysis provides a systematic examination of its scientific development and future potential. METHODS: We conducted a comprehensive analysis of AI-related urological publications through October 2024 using the Scopus database. The study incorporated English-language original articles and reviews, utilizing VOSviewer, GraphPad Prism, and Data Wrapper for analysis and visualization. RESULTS: Our investigation encompassed 5755 publications, comprising 5109 original articles and 646 reviews, with 63.9% being open access. The field demonstrated exponential growth from a single publication in 1971 to 1337 publications in 2024, garnering 112,583 citations. The past decade has witnessed the emergence of the most influential articles, particularly those focusing on deep learning (DL) applications in urological cancer detection. The USA-led global contributions (31.1%), followed by China (23.7%) and India (8.2%). ""Scientific Reports"" emerged as the leading journal with 171 publications. Titles and abstracts analysis revealed key focuses on DL in imaging (n = 1067), chronic kidney disease (n = 801), and advanced DL methodologies (n = 794). The keyword analysis identified ""machine learning"" as the dominant theme (1331 occurrences), with ""prostate cancer"" (955) and ""deep learning"" (838) following closely. Contemporary trends show significant shifts toward ChatGPT applications, pharmacovigilance, and AI-assisted surgical planning. In terms of international collaboration, the USA demonstrated the strongest network with a link strength of 1543. CONCLUSION: This study traces AI's evolution in urology, from basic ML to advanced clinical tools, with particular advancement in radiomics, imaging, and biomarker analysis. Successful future implementation necessitates addressing ethical considerations, technical hurdles, and practical challenges while maintaining focus on patient safety and equitable healthcare access.",(c) 2025 Iran University of Medical Sciences.,"Hatampour, Kasra;Baghi Keshtan, Sina;Mohammadi, Ghazal;Akbarniakhaky, Hassan;Faryabi, Ali;Aazami, Hossein;Fattahi, Mohammad Reza;Seif, Farhad;Dehghanbanadaki, Hojat",Hatampour K;Baghi Keshtan S;Mohammadi G;Akbarniakhaky H;Faryabi A;Aazami H;Fattahi MR;Seif F;Dehghanbanadaki H,"Department of General Surgery, Loghman Medical Center, Shahid Beheshti University of Medical Sciences, Tehran, Iran.;Birjand University of Medical Sciences, Birjand, Iran.;Tehran University of Medical Sciences, Tehran, Iran.;Tehran University of Medical Sciences, Tehran, Iran.;Tehran University of Medical Sciences, Tehran, Iran.;Tehran University of Medical Sciences, Tehran, Iran.;Student Research Committee, School of Advanced Technologies in Medicine, Shahid Beheshti University of Medical Sciences, Tehran, Iran.;Department of Photodynamic, Medical Laser Research Center, Yara Institute, ACECR, Tehran, Iran.;Tehran University of Medical Sciences, Tehran, Iran.",eng,Journal Article,20251215,Iran,Med J Islam Repub Iran,Medical journal of the Islamic Republic of Iran,8910777,,,NOTNLM,Artificial Intelligence;Bibliometric;Bladder Cancer;Deep Learning;Machine Learning;Prostate Cancer;Scientometric;Trend Analysis;Urology,The authors declare that they have no competing interests.,2026/04/23 12:36,2026/04/23 12:37,2026/04/23 05:04,2025/03/06 00:00 [received];2026/04/23 12:37 [medline];2026/04/23 12:36 [pubmed];2026/04/23 05:04 [entrez];2025/12/15 00:00 [pmc-release],10.47176/mjiri.39.156,epublish,156,ORCID: 0000-0003-1057-0309,PMC13097226,2025/12/15,,,,,,,,PUBMED,,,,"Hatampour K, 2025, Med J Islam Repub Iran",0,"Hatampour K, 2025, Med J Islam Repub Iran"
+42007431,NLM,PubMed-not-MEDLINE,20260421,20260421,2026,,2026,"Mapping and Quality Appraisal of Artificial Intelligence Preferential Reporting Checklists, Items, Guidelines, and Consensus in Healthcare: An Altmetric, Bibliometric, and Systematic Review.",10.1155/ijod/6730710 [doi];6730710,"INTRODUCTION: The integration of artificial intelligence (AI) in healthcare has garnered significant scholarly attention, particularly in areas such as medical image analysis, prognosis, and treatment. Despite its potential, concerns regarding AI's reliability and application persist, prompting the development of guidelines aimed at standardizing its use in medicine. This study aims to evaluate the current content and quality of AI guidelines in healthcare, focusing on identifying gaps and providing a critical appraisal of existing checklists. METHODOLOGY: Comprehensive bibliometric analysis, Altmetric analysis, and systematic review were conducted, utilizing the AGREE II Tool for quality appraisal. The systematic search spanned Scopus, PubMed, and Dimension AI databases, focusing on English-language, open-access articles related to AI reporting guidelines. Two reviewers independently evaluated the data, with manual extraction performed in Microsoft Excel. The AGREE II Tool assessed six domains of guideline quality. RESULTS: The search yielded 2477 articles, ultimately identifying 27 AI-specific reporting guidelines published between 2020 and 2025. The analysis revealed significant variations in quality across the AGREE II domains. Among the very first and most impactful were SPIRIT-AI, CONSORT-AI, MINIMAR, and CLAIM, all prioritized structured reporting but were hampered by their timing-based when there were few AI trials-resulting in limited applicability and risk of missing older AI terminologies. However, STAR-machine learning (ML), APPRAISE-AI, and CLEAR exhibited more general, domain-specific frameworks, whereas checklists such as CHEERS-AI, CREMLS, and MI-CLEAR-large language model (LLM) showcased limited author diversity in contribution. However, many guidelines exhibited weaknesses in methodological rigor and stakeholder involvement, limiting their practical applicability. CONCLUSION: The findings emphasize the need for evidence-based updates to AI reporting guidelines to ensure methodological integrity amid rapid advancements. Increased expert involvement and stakeholder engagement are crucial for enhancing the guidelines' applicability and rigor, addressing AI complexities in health research, and adapting reporting frameworks to evolving AI technologies in healthcare.",Copyright (c) 2026 Vineet Vinay et al. International Journal of Dentistry published by John Wiley & Sons Ltd.,"Vinay, Vineet;Jodalli, Praveen;Chavan, Mahesh S;Satyarup, Dharmashree;Bhor, Ketaki;Buddhikot, Chaitanya",Vinay V;Jodalli P;Chavan MS;Satyarup D;Bhor K;Buddhikot C,"Department of Public Health Dentistry, Manipal College of Dental Sciences Mangalore, Manipal Academy of Higher Education, Manipal, India, manipal.edu.;Department of Public Health Dentistry, Manipal College of Dental Sciences Mangalore, Manipal Academy of Higher Education, Manipal, India, manipal.edu.;Department of Oral Medicine and Radiology, Sinhgad Dental College and Hospital, Pune, Maharashtra, India, sdchpune.org.;Department of Public Health Dentistry, Institute of Dental Sciences, Siksha O Anusandhan Deemed to be University, Bhubaneshwar, Odisha, India, soauniversity.ac.in.;Department of Public Health Dentistry, Government Dental College and Hospital, Mumbai, Maharashtra, India, gdcmumbai.org.;Department of Public Health Dentistry, Dr. D. Y. Patil Dental College and Hospital, Dr. D. Y. Patil Vidyapeeth (Deemed to be University), Pimpri, Pune, Maharashtra, India, dpu.edu.in.",eng,Journal Article,20260418,United States,Int J Dent,International journal of dentistry,101524183,,,NOTNLM,artificial intelligence;checklist;guidelines;healthcare;reporting standards,The authors declare no conflicts of interest.,2026/04/20 13:10,2026/04/20 13:11,2026/04/20 07:55,2026/01/28 00:00 [received];2026/02/20 00:00 [revised];2026/03/24 00:00 [accepted];2026/04/20 13:11 [medline];2026/04/20 13:10 [pubmed];2026/04/20 07:55 [entrez];2026/04/18 00:00 [pmc-release],10.1155/ijod/6730710,epublish,6730710,ORCID: 0000-0002-3354-2186;ORCID: 0000-0002-6243-9823;ORCID: 0000-0002-9893-1174;ORCID: 0000-0002-4969-5830;ORCID: 0000-0003-3847-4319;ORCID: 0000-0001-9746-9574,PMC13091008,2026/04/18,,,,,,,,PUBMED,,,,"Vinay V, 2026, Int J Dent",0,"Vinay V, 2026, Int J Dent"
+42002987,NLM,MEDLINE,20260420,20260423,2026,1,2026,"Analysis of Trends in Screening, Assessment, and Monitoring of Gestational Diabetes Mellitus Through Bibliometric Analysis.",10.1155/jdr/6825254 [doi];6825254,"OBJECTIVE: This study aims to explore recent literature on gestational diabetes mellitus (GDM) screening, assessment, and monitoring and identifying research hotspots and future trends. METHODS: In this study, bibliometric methods were employed to analyze the literature related to the screening, assessment, and monitoring of GDM retrieved from the Web of Science Core Collection (WoSCC). Specifically, the analysis focused on the annual publication and citation trends of relevant literature, collaborative networks involving countries, institutions, authors, and journals, keyword co-occurrence analysis, reference co-citation analysis, historical evolution of the research field, and topic modeling. RESULTS: The results show a 50% rise in publications on gestational diabetes over the past 5 years, with the field experiencing distinct developmental stages from 1961 to 2026. China ranks first in global publication volume, while the United States leads in citation impact and international collaboration intensity. Keyword analysis identified three core clusters and a ""three jumps and two rises"" evolution pattern of citation bursts, with machine learning and adverse pregnancy outcomes emerging as ongoing high-burst-strength keywords. Latent Dirichlet allocation (LDA) topic modeling classified 16 optimal topics into four groups: Screening and Diagnostic Approaches, Pathophysiology and Molecular Mechanisms, Environmental, Social and Behavioral Determinants, and Clinical Management, Complications and Health Outcomes. CONCLUSION: The focus of GDM screening, assessment, and monitoring is shifting from traditional oral glucose tolerance test (OGTT)-based diagnosis to biomarker-based early prediction and AI-driven digital monitoring throughout pregnancy, highlighting the importance of patient characteristics and risk factors. Future research will contribute to improving clinical practices for gestational diabetes and enhancing maternal and infant health. This study's integrated bibliometric and LDA topic modeling approach clarifies the knowledge structure and evolutionary trends of the GDM screening-assessment-monitoring continuum, providing targeted new perspectives for further exploration in related fields.",Copyright (c) 2026 Guangzhen Fu et al. Journal of Diabetes Research published by John Wiley & Sons Ltd.,"Fu, Guangzhen;Hu, Shuang;Qu, Yunhui",Fu G;Hu S;Qu Y,"Department of Clinical Laboratory, Key Clinical Laboratory of Henan Province, The First Affiliated Hospital of Zhengzhou University, Zhengzhou, 450001, China, zzu.edu.cn.;Genetic and Prenatal Diagnosis Center, The First Affiliated Hospital of Zhengzhou University, Zhengzhou, 450001, China, zzu.edu.cn.;Department of Clinical Laboratory, Key Clinical Laboratory of Henan Province, The First Affiliated Hospital of Zhengzhou University, Zhengzhou, 450001, China, zzu.edu.cn.",eng,Journal Article,,United States,J Diabetes Res,Journal of diabetes research,101605237,IM,"*Diabetes, Gestational/diagnosis/therapy;Pregnancy;Humans;Female;*Bibliometrics;*Mass Screening/trends",NOTNLM,assessment;bibliometric analysis;gestational diabetes mellitus;latent Dirichlet allocation;monitoring;screening,The authors declare no conflicts of interest.,2026/04/20 13:10,2026/04/20 13:11,2026/04/20 01:12,2026/03/12 00:00 [revised];2026/01/05 00:00 [received];2026/03/23 00:00 [accepted];2026/04/20 13:11 [medline];2026/04/20 13:10 [pubmed];2026/04/20 01:12 [entrez];2026/04/19 00:00 [pmc-release],10.1155/jdr/6825254,ppublish,e6825254,ORCID: 0000-0001-7880-9238;ORCID: 0000-0003-0310-9418;ORCID: 0009-0007-4784-5691,PMC13092725,2026/04/19,,,,,,,,PUBMED,,,,"Fu G, 2026, J Diabetes Res",0,"Fu G, 2026, J Diabetes Res"
+41996983,NLM,MEDLINE,20260526,20260528,120,,2026,A data-driven analysis of artificial intelligence applications in depression research: 2020-2025.,S1876-2018(26)00151-6 [pii];10.1016/j.ajp.2026.104978 [doi],"With the rapid advancement of artificial intelligence (AI) technologies, increasing numbers of researchers have explored the integration of AI into depression research. In this study, we conducted a bibliometric analysis of research related to the application of AI in depression research. Our findings revealed a substantial growth trend in publications since 2020 with China and the United States leading this expansion. Institutions such as the University of Toronto and Sichuan University have played prominent roles as key contributors. Notably, prolific authors have advanced the integration of AI algorithms into areas such as depression diagnosis, symptom classification, and risk prediction. This trend is further supported by our keyword co-occurrence analysis, which reveals a strong positive correlation between terms such as ""machine learning"" and ""prediction"", as well as between ""feature extraction"" and ""electroencephalography"". Moreover, our analysis suggests that while AI applications in depression research share common methodological frameworks, they also exhibit distinct patterns based on age, gender, and population characteristics. This bibliometric study provides a comprehensive overview of research trends, influential contributors, and emerging directions in the field of AI-assisted depression research, offering valuable insights for future interdisciplinary development.",Copyright (c) 2026 Elsevier B.V. All rights reserved.,"Shao, Da;Shao, Lamei;Kou, Zengwei",Shao D;Shao L;Kou Z,"Research Center of Translational Medicine, Shanghai Children's Hospital, School of Medicine, Shanghai Jiao Tong University, Shanghai 200062, China.;Department of Breast Surgery, Affiliated Hospital of Jining Medical University, Jining 272000, China.;Research Center of Translational Medicine, Shanghai Children's Hospital, School of Medicine, Shanghai Jiao Tong University, Shanghai 200062, China;Department of Laboratory Medicine and Pathobiology, Temerty Faculty of Medicine, University of Toronto, Toronto, ON M5P 2R8, Canada;College of Basic Medicine and Forensic Medicine, Henan University of Science and Technology, Luoyang 471023, China. Electronic address: zengwei.kou@utoronto.ca.",eng,Journal Article,20260413,Netherlands,Asian J Psychiatr,Asian journal of psychiatry,101517820,IM,Humans;*Artificial Intelligence/statistics & numerical data/trends;*Bibliometrics;*Biomedical Research/statistics & numerical data/trends;Data Analytics;*Depressive Disorder/diagnosis,NOTNLM,Bibliometrics;Machine learning;Mental health,Declaration of Competing Interest Authors declare no conflict of interest.,2026/04/18 13:10,2026/05/27 00:30,2026/04/17 18:08,2025/12/19 00:00 [received];2026/04/10 00:00 [revised];2026/04/12 00:00 [accepted];2026/05/27 00:30 [medline];2026/04/18 13:10 [pubmed];2026/04/17 18:08 [entrez],10.1016/j.ajp.2026.104978,ppublish,104978,,,,,,,,,,,PUBMED,,,,"Shao D, 2026, Asian J Psychiatr",0,"Shao D, 2026, Asian J Psychiatr"
+41994643,NLM,PubMed-not-MEDLINE,20260417,20260417,16,,2026,Research on machine learning-based clinical prediction models: a bibliometric analysis.,10.3389/fonc.2026.1786176 [doi];1786176,"BACKGROUND: Machine learning (ML) has emerged as a transformative approach for developing high-performance clinical prediction models (CPMs). By leveraging multidimensional patient data, ML enables more accurate disease risk stratification, prognostic assessment, and clinical decision-making. In recent years, research on CPMs has expanded rapidly, with nearly 250,000 publications indexed as of 2024. Despite this remarkable growth, a comprehensive bibliometric analysis of the field is currently lacking. OBJECTIVE: This study aimed to analyze the global research status, evolutionary trends, and thematic hotspots of machine learning-based clinical prediction models (ML-CPMs) through bibliometric and visualization techniques. METHODS: Publications related to ML-CPMs were retrieved from the Web of Science Core Collection and the Scopus database (up to May 9, 2025). Bibliometric analyses were performed using various tools, including R, VOSviewer, and CiteSpace, to generate annual publication trends, collaboration networks, and journal distributions, as well as co-citation, clustering, and keyword analyses. RESULTS: A total of 8,619 publications (8,000 original articles and 619 reviews) from 118 countries were identified. Since 2015, annual publications have grown exponentially (R(2) = 0.9919). While China led in total publication volume, the United States maintained the highest academic influence (H-index = 105; Total Citations = 66,788). Harvard University and BMC Medical Informatics and Decision Making emerged as the most productive institution and journal, respectively. Tian J from the Chinese Academy of Sciences led in publication count, while Wynants L from KU Leuven in Belgium recorded the highest citation frequency. Key research hotspots include algorithm optimization, multimodal data integration, and model interpretability, with clinical applications primarily focused on oncology, cardiovascular diseases, and critical care medicine. CONCLUSION: Research on ML-CPMs has experienced rapid global growth over the past decade, forming extensive international collaboration networks. However, challenges such as limited interpretability, data heterogeneity, and privacy concerns persist. Future studies should prioritize external validation, clinical applicability, and the integration of human-AI collaborative decision-making to ensure robust implementation in real-world clinical settings.","Copyright (c) 2026 Li, Zeng, Liang, Zheng, Zhang and Martin-Payo.","Li, Qinshan;Zeng, Mingli;Liang, Danmei;Zheng, Xuemei;Zhang, Xiaoxia;Martin-Payo, Ruben",Li Q;Zeng M;Liang D;Zheng X;Zhang X;Martin-Payo R,"West China School of Nursing, Sichuan University, Chengdu, China.;Cancer Center, Division of Head and Neck Tumor Multimodality Treatment, West China Hospital, Sichuan University, Chengdu, China.;Cancer Center, West China Hospital, Sichuan University, Chengdu, China.;Cancer Center, Shangjin Nanfu Hospital, West China Hospital, Chengdu, China.;West China School of Nursing, Sichuan University, Chengdu, China.;Cancer Center, Division of Head and Neck Tumor Multimodality Treatment, West China Hospital, Sichuan University, Chengdu, China.;West China School of Nursing, Sichuan University, Chengdu, China.;Cancer Center, West China Hospital, Sichuan University, Chengdu, China.;Facultad de Medicina y Ciencias de La Salud, Universidad de Oviedo, Oviedo, Spain.;Precam Research Group, Instituto de Investigacion Sanitaria del Principado de Asturias (ISPA), Oviedo, Spain.",eng,Journal Article;Systematic Review,20260401,Switzerland,Front Oncol,Frontiers in oncology,101568867,,,NOTNLM,CiteSpace;VOSviewer;bibliometric analysis;clinical prediction models;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/04/17 13:25,2026/04/17 13:26,2026/04/17 05:35,2026/01/12 00:00 [received];2026/02/18 00:00 [revised];2026/03/16 00:00 [accepted];2026/04/17 13:26 [medline];2026/04/17 13:25 [pubmed];2026/04/17 05:35 [entrez];2026/04/01 00:00 [pmc-release],10.3389/fonc.2026.1786176,epublish,1786176,,PMC13078998,2026/04/01,,,,,,,,PUBMED,,,,"Li Q, 2026, Front Oncol",0,"Li Q, 2026, Front Oncol"
+41982162,NLM,PubMed-not-MEDLINE,20260514,20260517,17,2,2026,"Collaborative networks, trends, and comparative analysis of artificial intelligence techniques in healthcare research: a narrative review.",10.24171/j.phrp.2025.0418 [doi],"BACKGROUND: Artificial intelligence (AI) is reshaping healthcare by improving diagnosis and treatment planning, increasing operational efficiency, and streamlining administrative workflows. This paper integrates findings from an extensive PubMed search (2015-2025) with bibliometric analysis using RStudio and VOSviewer to investigate the comparative applications of AI methods in healthcare, collaborative networks, and emerging trends. METHODS: A total of 1,243 records were identified through the PubMed search, and after removal of 143 duplicates, 1,100 records were screened. Following full-text assessment and exclusion of ineligible studies, 986 articles were included in the final bibliometric analysis. RESULTS: The main research areas included robotic-assisted surgery, predictive analytics, diagnostic imaging, and precision medicine, with particular emphasis on the prevalence of machine learning and deep learning in imaging and the increasing application of natural language processing to unstructured medical information. CONCLUSION: The review emphasizes the need for greater budgetary allocation to scalable and pragmatic AI technologies and for interdisciplinary cooperation among researchers, industry, and healthcare providers. Despite this growth, challenges such as algorithmic bias, data integration, and ethical concerns persist. The paper also highlights the importance of equitable collaboration, accountable AI, and multinational partnerships in ensuring that AI can be used ethically and efficiently in healthcare over the long term to improve patient care and biomedical innovation. It does so by mapping international and regional trends, identifying the most influential authors, institutions, and funding sources, and evaluating methodological approaches.",,"Kumar, Raj;Indora, Lovely",Kumar R;Indora L,"Mechanical Engineering Department, University Institute of Engineering, Chandigarh University, Mohali, India.;Mechanical Engineering Department, University Institute of Engineering, Chandigarh University, Mohali, India.",eng,Journal Article,20260402,Korea (South),Osong Public Health Res Perspect,Osong public health and research perspectives,101563309,,,NOTNLM,Artificial intelligence;Biomedical innovation;Collaborative networks;Healthcare artificial intelligence;Research Trends,Conflicts of Interest The authors have no conflicts of interest to declare.,2026/04/15 06:29,2026/04/15 06:30,2026/04/15 04:04,2025/09/30 00:00 [received];2026/03/03 00:00 [accepted];2026/04/15 06:30 [medline];2026/04/15 06:29 [pubmed];2026/04/15 04:04 [entrez];2026/04/01 00:00 [pmc-release],10.24171/j.phrp.2025.0418,ppublish,100,,PMC13175913,2026/04/01,,,,,,,,PUBMED,,,113,"Kumar R, 2026, Osong Public Health Res Perspect",0,"Kumar R, 2026, Osong Public Health Res Perspect"
+41968851,NLM,Publisher,,20260413,,,2026,Systematic review of conceptual and methodological frameworks for sustainable landfill site selection using multi-criteria decision-making techniques.,10.1177/0734242X261435305 [doi],"Landfill site selection is a complex spatial decision-making challenge involving consideration of many factors, including environmental protection, hydrological safety, engineering feasibility, social acceptance and regulatory compliance. Over the past 2 decades, Geographic Information Systems (GIS) combined with Multi-Criteria Decision-Making (MCDM) techniques have emerged as the dominant framework for evaluating landfill suitability. However, existing reviews largely focus on bibliometric trends, leaving a critical gap in conceptual and methodological synthesis. This review systematically examines studies published between 2005 and 2025 to evaluate the theoretical foundations, analytical structures, uncertainty-handling capabilities and practical implications of classical, fuzzy, hybrid and artificial intelligence/machine learning (AI/ML)-based GIS-MCDM approaches. Classical techniques (Analytical Hierarchy Process (AHP), Weighted Linear Combination (WLC)) and structured decision logic with fuzzy methods provide interpretability and enhance representation of linguistic uncertainty; hybrid frameworks integrate subjective and objective weighting to improve robustness; and AI/ML methods offer nonlinear modelling, predictive suitability mapping and data-driven weight derivation. To address inconsistencies in criteria selection, a harmonized framework encompassing environmental, topographical, land-use, infrastructural, climatic and socio-economic-regulatory dimensions is proposed. An integrated GIS-MCDM workflow demonstrates how preprocessing, standardization, weighting, overlay modelling and validation interact within a unified decision-support system and the applicable regulatory policy. This review further synthesizes recurring limitations and outlines strategic directions for future research, including spatiotemporal integration, advanced uncertainty modelling, regional-scale assessments and adoption of transparent, reproducible GIS workflows. Overall, this study provides a conceptual and methodological foundation to guide method selection, enhance analytical rigor and strengthen the scientific basis for sustainable and socially equitable landfill planning.",,"Kumar, Porush;Choudhary, Mahendra Pratap;Mathur, Anil K",Kumar P;Choudhary MP;Mathur AK,"Civil Engineering Department, University Department, Rajasthan Technical University, Kota, India.;Civil Engineering Department, University Department, Rajasthan Technical University, Kota, India.;Civil Engineering Department, University Department, Rajasthan Technical University, Kota, India.",eng,Journal Article;Review,20260412,England,Waste Manag Res,"Waste management & research : the journal of the International Solid Wastes and Public Cleansing Association, ISWA",9881064,IM,,NOTNLM,fuzzy and hybrid models;landfill site selection;multi-criteria decision analysis;spatial decision support;sustainable waste management,,2026/04/13 06:32,2026/04/13 06:32,2026/04/13 03:03,2026/04/13 06:32 [medline];2026/04/13 06:32 [pubmed];2026/04/13 03:03 [entrez],10.1177/0734242X261435305,aheadofprint,734242X261435305,ORCID: 0009-0007-5994-3870;ORCID: 0000-0003-1539-6741;ORCID: 0000-0003-3197-9699,,,,,,,,,,PUBMED,,,,"Kumar P, 2026, Waste Manag Res",0,"Kumar P, 2026, Waste Manag Res"
+41965962,NLM,MEDLINE,20260530,20260530,120,,2026,Mapping 25 years of forensic and legal medicine research: a multi-database bibliometric and science-mapping analysis (2000-2025).,S1752-928X(26)00059-4 [pii];10.1016/j.jflm.2026.103127 [doi],"BACKGROUND: Forensic and legal medicine spans forensic pathology, clinical forensic practice, toxicology, genetics, imaging, and emerging digital methods. Long-horizon mapping can support research prioritisation and editorial strategy. METHODS: We conducted performance analysis and science-mapping of records published between 2000 and 2025. Primary analyses were performed on Web of Science Core Collection records (articles and reviews) using bibliometrix/biblioshiny. Outputs included annual production, leading sources and countries, citation indicators, collaboration metrics, keyword co-occurrence, Callon centrality-density thematic mapping, and trend-topic analysis. A conservative, prespecified keyword harmonisation was applied to a small set of orthographic variants (medico-legal, postmortem, machine learning, deep learning). Scopus-derived outputs were used as a robustness comparison for source and country landscapes. RESULTS: The WoS corpus comprised 16,190 documents from 3052 sources with 49,746 distinct authors and 372,874 cited references. Annual growth was 7.68%, with 5.07 co-authors per document and 13.38% international co-authorship. Output was concentrated in a compact Bradford nucleus of specialist forensic journals, while a long tail of occasional publications appeared in adjacent clinical and multidisciplinary venues. Thematic mapping identified four macro-domains-identification, risk/epidemiology, autopsy/postmortem pathology, and clinical forensic practice-with recent growth in COVID-19-related work, postmortem interval research, and AI/ML terminology. CONCLUSIONS: Forensic and legal medicine shows sustained growth with a stable conceptual backbone and accelerating innovation in digital and computational themes. These maps can inform research prioritisation, training needs, and editorial planning across specialist forensic outlets.",Copyright (c) 2026 Elsevier Ltd and Faculty of Forensic and Legal Medicine. All rights reserved.,"Sirago, Gianmarco;Solarino, Biagio;Dell'Erba, Alessandro;Ferorelli, Davide",Sirago G;Solarino B;Dell'Erba A;Ferorelli D,"University of Bari Aldo Moro, Policlinico of Bari, Bari, Italy. Electronic address: gianmarco.sirago@uniba.it.;University of Bari Aldo Moro, Policlinico of Bari, Bari, Italy.;University of Bari Aldo Moro, Policlinico of Bari, Bari, Italy.;University of Bari Aldo Moro, Policlinico of Bari, Bari, Italy.",eng,Journal Article;Review,20260404,England,J Forensic Leg Med,Journal of forensic and legal medicine,101300022,IM,Humans;*Forensic Medicine;*Bibliometrics;*Forensic Sciences;*Biomedical Research,NOTNLM,Bibliometrics;Forensic medicine;Legal medicine;Science-mapping;Scopus;Web of science,Declaration 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/04/12 06:38,2026/05/31 05:33,2026/04/12 00:26,2026/02/24 00:00 [received];2026/04/03 00:00 [revised];2026/04/03 00:00 [accepted];2026/05/31 05:33 [medline];2026/04/12 06:38 [pubmed];2026/04/12 00:26 [entrez],10.1016/j.jflm.2026.103127,ppublish,103127,,,,,,,,,,,PUBMED,,,,"Sirago G, 2026, J Forensic Leg Med",0,"Sirago G, 2026, J Forensic Leg Med"
+41962257,NLM,MEDLINE,20260502,20260502,119,,2026,"Digital health and machine learning in population health and wellness management: A scoping and bibliometric review of effectiveness, equity, and implementation challenges.",S1876-2018(26)00143-7 [pii];10.1016/j.ajp.2026.104970 [doi],"Machine learning (ML) in digital health applications is becoming more popular for the general management of population wellness and the promotion of large-scale prevention, risk stratification, and the use of data to formulate data-driven decision-making in the field of population health. Although there has been a rapid increase in this area, the available reviews are highly fragmented and frequently tend to concentrate on particular technologies or predictive performance, yet provide minimal synthesis of the effectiveness, equity, implementation, and governance at the population-level. This review followed the Preferred Reporting Items for Systematic Reviews and Scoping Reviews (PRISMA-ScR) guidelines and employed a hybrid scoping and bibliometric approach. of the peer-reviewed literature published between 2018 and 2025 and indexed in PubMed/MEDLINE, Scopus, Web of Science, and IEEE Xplore. The review of the literature was in the form of scoping and concerned the digital form of healthcare, roles of ML analytic, the domains of outcome, and bibliometric analysis was performed to map the trends in publications, thematic groups, and evolving research areas. The results show significant increases in interdisciplinary studies in the field of public health, medical informatics, and data science in health. Most studies reported predictive-performance and short-term behavioral outcomes, whereas evidence on long-term population-level health effects and healthcare utilization remained limited. Nevertheless, there is little evidence regarding long-term population-level health effects and changes in healthcare use. Equity assessments have rarely conducted, and there have been repeated debates pertaining to data representativeness and algorithmic bias. Governance and implementation issues (such as model interpretability, privacy, data sharing, and regulatory uncertainty) have been continuously found to be obstacles to wide-scale and responsible deployment. All in all, this review offers a combined evaluation of efficacy, equity, and governance in ML-enabled, digital health to manage population wellness. The conclusions also show that there is a need to shift away from technology-focused assessments in favor of outcome-driven, equity-based, and governance-informed ways of encouraging sustainable and responsible population-level action.",Copyright (c) 2026 The Authors. Published by Elsevier B.V. All rights reserved.,"Zhang, Jun;Hu, Meng",Zhang J;Hu M,"School of Public Health and Health Management, Henan Medical College, Zhengzhou, PR China. Electronic address: zhangjun202501@126.com.;School of Public Health and Health Management, Henan Medical College, Zhengzhou, PR China.",eng,Journal Article;Scoping Review,20260405,Netherlands,Asian J Psychiatr,Asian journal of psychiatry,101517820,IM,Humans;*Machine Learning;*Bibliometrics;*Population Health;*Telemedicine;*Health Promotion/methods;*Health Equity;Digital Health,NOTNLM,Data science in health;Digital health;Health equity;Health governance;Machine learning;Population health and wellness management;Public health,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/04/11 00:32,2026/05/03 05:27,2026/04/10 18:04,2026/01/09 00:00 [received];2026/03/24 00:00 [revised];2026/04/03 00:00 [accepted];2026/05/03 05:27 [medline];2026/04/11 00:32 [pubmed];2026/04/10 18:04 [entrez],10.1016/j.ajp.2026.104970,ppublish,104970,,,,,,,,,,,PUBMED,,,,"Zhang J, 2026, Asian J Psychiatr",0,"Zhang J, 2026, Asian J Psychiatr"
+41961658,NLM,MEDLINE,20260410,20260410,105,15,2026,Bibliometric and visual analysis of artificial intelligence-related research in osteoarthritis: Trends and frontiers (2008-2025).,10.1097/MD.0000000000048265 [doi],"Osteoarthritis (OA) causes joint pain, functional impairment, and significantly impacts patients' quality of life. Recent advancements in artificial intelligence (AI) technology have provided new opportunities for OA diagnosis, treatment, and management. This study aims to understand the knowledge structure and research frontiers of ""AI and OA"" using bibliometric methods. Literature on ""AI and OA"" from January 1, 2008, to March 31, 2025, was retrieved from the Web of Science Core Collection database. VOSviewer, CiteSpace, and the R package ""bibliometrix"" were used for analysis. The study included 659 articles from 59 countries. Since 2019, the number of scientific outputs related to OA and AI has increased annually. The United States, China, and the United Kingdom are the main contributing countries, with Harvard University, Seoul National University, and the University of California system as leading institutions. The ""JOURNAL OF ARTHROPLASTY"" and ""OSTEOARTHRITIS AND CARTILAGE"" are the most contributing journals. Among the 2404 authors, GUERMAZI A and ROEMER FW are the most influential. Thematic trend analysis shows that AI and machine learning are driving new trends in OA research, especially in diagnosis, treatment planning, and patient monitoring. This paper summarizes the bibliometric trends and development in ""AI and OA"" studies over 18 years, identifying the latest research frontiers and hot topics. It provides valuable references for related research and highlights the importance of interdisciplinary collaboration as research topics diversify.","Copyright (c) 2026 the Author(s). Published by Wolters Kluwer Health, Inc.","Ma, Ye;Feng, Kai;Chen, Zhirong;Jin, Qunhua",Ma Y;Feng K;Chen Z;Jin Q,"Department of Orthopaedic, Institute of Osteoarthropathy, General Hospital of Ningxia Medical University, Yinchuan, Ningxia, China.;Ningxia Medical University, Yinchuan, Ningxia, China.;Department of Orthopaedic, Institute of Osteoarthropathy, General Hospital of Ningxia Medical University, Yinchuan, Ningxia, China.;Ningxia Medical University, Yinchuan, Ningxia, China.;Department of Orthopedic, General Hospital of Ningxia Medical University, Yinchuan, Ningxia, China.;Department of Orthopedic, General Hospital of Ningxia Medical University, Yinchuan, Ningxia, China.",eng,Journal Article;Review,,United States,Medicine (Baltimore),Medicine,2985248R,IM,Humans;*Bibliometrics;*Artificial Intelligence/trends;*Osteoarthritis/therapy/diagnosis;*Biomedical Research/trends,NOTNLM,artificial intelligence;bibliometrics;machine learning;osteoarthritis,The authors have no conflicts of interest to disclose.,2026/04/10 18:32,2026/04/10 18:33,2026/04/10 13:05,2025/06/16 00:00 [received];2026/03/19 00:00 [accepted];2026/04/10 18:33 [medline];2026/04/10 18:32 [pubmed];2026/04/10 13:05 [entrez],10.1097/MD.0000000000048265,ppublish,e48265,ORCID: 0009-0006-4714-9621,,,2024AAC03212/the Project of Ningxia Natural Science Foundation/,,,,,,,PUBMED,,,,"Ma Y, 2026, Medicine (Baltimore)",0,"Ma Y, 2026, Medicine (Baltimore)"
+41953119,NLM,PubMed-not-MEDLINE,20260409,20260409,12,,2026,Mapping scientific trends in bipolar disorder and digital psychiatry (2000-2025): A bibliometric and visualized analysis of AI-driven diagnosis and digital interventions.,10.1177/20552076261437230 [doi];20552076261437230,"OBJECTIVE: This study aims to map and visualize global research trends related to bipolar disorder (BD), with a focus on artificial intelligence (AI)-driven diagnosis and digital psychiatry from 2000 to 2025. METHODS: A bibliometric analysis was conducted using publications retrieved from Web of Science, Scopus, and PubMed, covering the period from January 1, 2000, to June 30, 2025. All data were extracted from databases at the time of search in mid-2025, and no future or projected data were included. After deduplication and data cleaning, 4,753 relevant articles were included. VOSviewer was utilized to perform co-authorship, keyword co-occurrence, and bibliographic coupling network analysis. Descriptive statistics, including annual publication trends, authorship patterns, and institutional contributions, were analyzed using Excel Pivot Tables. RESULTS: Scientific output in this field has grown significantly since 2015, with the United States (n=1850), United Kingdom (n=750), and China (n=620) leading in publications. Harvard University emerged as the most prolific institution. Author collaboration networks identified Eduard Vieta and Lars Vedel Kessing as key contributors. Keyword analysis revealed four dominant clusters: AI/machine learning, clinical diagnosis and biomarkers, cognitive function and quality of life, and digital interventions via smartphones and wearables. Journals such as Journal of Affective Disorders and JMIR Mental Health are central to recent literature. However, global collaboration remains limited, and the integration of digital phenotyping with biological data is still in early stages. CONCLUSION: Research in BD is shifting toward AI-enabled and digital mental health approaches. Future studies should enhance interdisciplinary collaboration, focus on multimodal data integration, and promote equitable global access to digital psychiatric tools.",(c) The Author(s) 2026.,"Naeim, Mahdi;Narimani, Mohammad",Naeim M;Narimani M,"Department of Psychology, Department of Psychology, Faculty of Educational Sciences and Psychology, University of Mohaghegh Ardabili, Ardabil, Iran. RINGGOLD: 185149;Department of Psychology, Department of Psychology, Faculty of Educational Sciences and Psychology, University of Mohaghegh Ardabili, Ardabil, Iran. RINGGOLD: 185149",eng,Journal Article,20260406,United States,Digit Health,Digital health,101690863,,,NOTNLM,artificial intelligence;bibliometrics;bipolar disorder;cooperative behavior;machine learning;telepsychiatry,The authors declare that they have no competing interests.,2026/04/09 06:31,2026/04/09 06:32,2026/04/09 04:38,2025/07/27 00:00 [received];2026/02/20 00:00 [revised];2026/03/13 00:00 [accepted];2026/04/09 06:32 [medline];2026/04/09 06:31 [pubmed];2026/04/09 04:38 [entrez];2026/04/06 00:00 [pmc-release],10.1177/20552076261437230,epublish,20552076261437230,ORCID: 0000-0003-4491-6160;ORCID: 0000-0003-4671-3893,PMC13053967,2026/04/06,,,,,,,,PUBMED,,,,"Naeim M, 2026, Digit Health",0,"Naeim M, 2026, Digit Health"
+41952583,NLM,MEDLINE,20260409,20260409,384,2317,2026,The need for verification in artificial intelligence-driven scientific discovery.,20240591 [pii];10.1098/rsta.2024.0591 [doi],"Artificial intelligence (AI) is transforming the practice of science. Machine learning (ML) and large language models (LLMs) can generate hypotheses at a scale and speed far exceeding traditional methods, offering the potential to accelerate discovery across diverse fields. However, the abundance of hypotheses introduces a critical challenge; without scalable and reliable mechanisms for verification, scientific progress risks being hindered rather than advanced. In this article, we trace the historical development of scientific discovery, examine how AI is reshaping established practices for discovery and review the principal approaches, ranging from data-driven methods and knowledge-aware neural architectures to symbolic reasoning frameworks and LLM agents. While these systems can uncover patterns and propose candidate laws, their scientific value ultimately depends on rigorous and transparent verification, which we argue must be the cornerstone of AI-assisted discovery. This article is part of the discussion meeting issue 'Symbolic regression in the physical sciences'.",(c) 2026 The Author(s).,"Cornelio, Cristina;Ito, Takuya;Cory-Wright, Ryan;Dash, Sanjeeb;Horesh, Lior",Cornelio C;Ito T;Cory-Wright R;Dash S;Horesh L,"Samsung AI , Cambridge, UK.;IBM TJ Watson Research Center , Yorktown Heights, NY, USA.;Imperial Business School , London, UK.;IBM TJ Watson Research Center , Yorktown Heights, NY, USA.;IBM TJ Watson Research Center , Yorktown Heights, NY, USA.",eng,Historical Article;Journal Article;Review,,England,Philos Trans A Math Phys Eng Sci,"Philosophical transactions. Series A, Mathematical, physical, and engineering sciences",101133385,IM,"*Artificial Intelligence/history;Neural Networks, Computer;Machine Learning;Humans;*Knowledge Discovery/methods;History, 20th Century;History, 21st Century;*Science/methods",NOTNLM,AI for science;scientific discovery;verification,,2026/04/09 06:30,2026/04/09 06:31,2026/04/09 04:13,2025/08/31 00:00 [received];2025/11/21 00:00 [revised];2025/12/07 00:00 [accepted];2026/04/09 06:31 [medline];2026/04/09 06:30 [pubmed];2026/04/09 04:13 [entrez],10.1098/rsta.2024.0591,ppublish,,ORCID: 0000-0001-5284-6487;ORCID: 0000-0002-2060-4608;ORCID: 0000-0002-4485-0619;ORCID: 0000-0001-6350-0238,,,,,,,,,,PUBMED,,,,"Cornelio C, 2026, Philos Trans A Math Phys Eng Sci",0,"Cornelio C, 2026, Philos Trans A Math Phys Eng Sci"
+41941519,NLM,MEDLINE,20260406,20260408,21,4,2026,An empirical exploration of the diversified R ecosystem.,10.1371/journal.pone.0346017 [doi];e0346017,"Born in the late 20th century, R has become one of the most widely used software environments for statistical computing and graphics, undergoing substantial transformation alongside advances in information technology and the rise of data-intensive research. By integrating large-scale usage data from the Comprehensive R Archive Network (CRAN) with bibliometric records from the Scopus database, this study provides a comprehensive empirical review of the R ecosystem between 2005 and 2024. We examine long-term trends in R adoption, the functional structure and popularity patterns of its package ecosystem, disciplinary applications in academia, and collaboration behaviors within the developer community. The results reveal sustained growth in both R software and package downloads, with package usage showing more stable and continuous expansion over time. A keyword co-occurrence analysis indicates that the ecosystem is organized around a dense statistical core, closely connected with diverse modeling frameworks, modern machine learning techniques, and application-oriented functionalities. Bibliometric evidence further demonstrates the widespread and growing adoption of R across scientific disciplines, particularly in agricultural and biological sciences, environmental science, medicine, and the social sciences. In addition, collaboration analysis shows that multi-author packages are more prevalent and tend to achieve greater reuse and higher download activity, highlighting the role of collective development in sustaining the vitality and long-term relevance of the R ecosystem. Overall, these findings position R as a resilient, community-driven platform whose evolution continues to be shaped by interdisciplinary collaboration and open-source innovation.","Copyright: (c) 2026 Huang, Lou. This is an open access article distributed under the terms of the Creative Commons Attribution License, which permits unrestricted use, distribution, and reproduction in any medium, provided the original author and source are credited.","Huang, Tian-Yuan;Lou, Zhilan",Huang TY;Lou Z,"School of Data Science, Zhejiang University of Finance and Economics, Hangzhou, China.;School of Data Science, Zhejiang University of Finance and Economics, Hangzhou, China.",eng,Journal Article,20260406,United States,PLoS One,PloS one,101285081,IM,*Software;Bibliometrics;Humans;Ecosystem,,,The authors have no conflicts of interest to declare that are relevant to the content of this article.,2026/04/06 18:34,2026/04/06 18:35,2026/04/06 13:43,2023/12/06 00:00 [received];2026/03/13 00:00 [accepted];2026/04/06 18:35 [medline];2026/04/06 18:34 [pubmed];2026/04/06 13:43 [entrez];2026/04/06 00:00 [pmc-release],10.1371/journal.pone.0346017,epublish,e0346017,ORCID: 0009-0004-3882-9321,PMC13052833,2026/04/06,,,,,,,,PUBMED,,,,"Huang TY, 2026, PLoS One",0,"Huang TY, 2026, PLoS One"
+41940375,NLM,PubMed-not-MEDLINE,20260406,20260406,2026,2,2026,Bridging the gap: meta-epidemiological analysis on the clinical translation of stem cell-based therapies in women's reproductive diseases.,10.1093/hropen/hoag024 [doi];hoag024,"STUDY QUESTION: What is the current landscape of randomized controlled trials (RCTs) evaluating stem cell-based therapies for women's reproductive diseases, and how effectively has preclinical research informed their clinical translation? SUMMARY ANSWER: The current clinical trial landscape for stem cell-based therapies in women's reproductive diseases is characterized by rapid growth in trial registration, particularly for premature ovarian failure (POF) and intrauterine adhesions (IUA), yet remains predominantly in early-phase, single-center, single-country studies with significant heterogeneity in design and outcome reporting. WHAT IS KNOWN ALREADY: Stem cell-based therapies show promise in preclinical models for conditions such as POF, IUA, and endometriosis. However, despite increasing clinical interest, the extent to which these therapies have been rigorously evaluated in RCTs and how well clinical trials reflect preclinical evidence remains unclear. STUDY DESIGN SIZE DURATION: This translational analysis integrated a meta-epidemiological approach with bibliometric methods. We searched the International Clinical Trials Registry Platform (ICTRP), ClinicalTrials.gov, EudraCT, and ChiCTR from inception to 1 December 2025, using terms related to 'stem cells', 'reproductive diseases', and 'randomized controlled trials'. Only English and Chinese registration records were included. PARTICIPANTS/MATERIALS SETTING METHODS: Two reviewers independently screened registration records for RCTs assessing stem cell or derivative therapies in women's reproductive diseases. Eligible criteria included RCTs that reported the use of stem cells or their derivatives in female patients with reproductive conditions. Data on trial design, disease focus, stem cell type, source, phase, sample size, outcomes, and results were extracted. A hybrid approach combined traditional systematic data extraction with machine learning-assisted screening (ASReview) for basic research. Bibliometric analysis using VoSviewer and CiteSpace mapped research trends, while Health Research Classification System (HRCS) scores assessed translational potential. Consistency in screening and extraction was evaluated using kappa and Cronbach's alpha. MAIN RESULTS AND THE ROLE OF CHANCE: From 804 records, 38 RCTs met inclusion criteria. The majority were early-phase (Phase 1/2, 76.3%), single-center (81.6%), and conducted in one country (97.4%), with China (50.0%) and the USA (18.9%) leading. POF (34.2%), ovarian cancer (23.7%), and IUA (18.4%) were the most studied conditions. Umbilical cord-derived mesenchymal stem cells (28.9%) were the most commonly used. While preclinical research shows strong mechanistic support, especially for POF and IUA, there was minimal overlap in primary outcome measures across trials, limiting comparability. Only 36.8% of RCTs included safety as a co-primary endpoint, and 49% had short-term follow-up, raising concerns about long-term risks such as tumorigenicity. LIMITATIONS REASONS FOR CAUTION: The analysis may be subject to language bias (English and Chinese only), and some included trials were incomplete, relying on interim reports or press releases not peer-reviewed. The quality of individual RCTs was not formally assessed, and publication bias in basic research may influence bibliometric trends. WIDER IMPLICATIONS OF THE FINDINGS: This study highlights a significant gap between robust preclinical evidence and fragmented clinical evaluation, with over-concentration on POF and underrepresentation of other high-potential conditions like endometriosis and thin endometrium. The findings underscore the need for international collaboration, standardized outcome sets, and harmonized regulatory frameworks to enable large-scale, high-quality trials that can translate regenerative potential into clinical reality. STUDY FUNDING/COMPETING INTERESTS: This study was supported by the National Natural Science Foundation of China (82301835 and 82371682), the Science and Technology Program of Hunan Province (2024JJ4091 and 2023JJ40956), the Youth Fund of Xiangya Hospital, Central South University, China (2021Q03 and 2209090550121), the Postdoctoral Science Foundation of China (2022M713522 and 2021TQ0372), and the Innovation and Entrepreneurship Training Program for College Students (202510533012, S202410533307, and CXPY2025224). The authors declare no competing interests. REGISTRATION NUMBER: https://doi.org/10.17605/OSF.IO/JM9EK.",(c) The Author(s) 2026. Published by Oxford University Press on behalf of European Society of Human Reproduction and Embryology.,"Su, Hankun;Jian, Yu;Tang, Ronghui;Chau, Hoksan;Cheng, Xinyu;Liu, Xiao;Tong, Yuqian;Ning, Jinyao;Zhang, Xinhua;Chen, Jiayi;Zhang, Yilin;Tong, Zixin;Yang, Yuemeng;Zhao, Yunyang;Sun, Liye;Chen, Jingjing;Li, Hui",Su H;Jian Y;Tang R;Chau H;Cheng X;Liu X;Tong Y;Ning J;Zhang X;Chen J;Zhang Y;Tong Z;Yang Y;Zhao Y;Sun L;Chen J;Li H,"Department of Reproductive Medicine, Xiangya Hospital, Central South University, Changsha, China.;Clinical Research Center for Women's Reproductive Health in Hunan Province, Xiangya Hospital, Central South University, Changsha, China.;Department of Reproductive Medicine, Xiangya Hospital, Central South University, Changsha, China.;Clinical Research Center for Women's Reproductive Health in Hunan Province, Xiangya Hospital, Central South University, Changsha, China.;Department of Fetal Medicine, Xiangya Hospital, Central South University, Changsha, China.;Department of Obstetrics and Gynecology, Hunan University of Medicine General Hospital, Huaihua, China.;Department of Reproductive Medicine, Xiangya Hospital, Central South University, Changsha, China.;Clinical Research Center for Women's Reproductive Health in Hunan Province, Xiangya Hospital, Central South University, Changsha, China.;Department of Reproductive Medicine, Xiangya Hospital, Central South University, Changsha, China.;Clinical Research Center for Women's Reproductive Health in Hunan Province, Xiangya Hospital, Central South University, Changsha, China.;Department of Reproductive Medicine, Xiangya Hospital, Central South University, Changsha, China.;Clinical Research Center for Women's Reproductive Health in Hunan Province, Xiangya Hospital, Central South University, Changsha, China.;Department of Reproductive Medicine, Xiangya Hospital, Central South University, Changsha, China.;Clinical Research Center for Women's Reproductive Health in Hunan Province, Xiangya Hospital, Central South University, Changsha, China.;Department of Reproductive Medicine, Xiangya Hospital, Central South University, Changsha, China.;Clinical Research Center for Women's Reproductive Health in Hunan Province, Xiangya Hospital, Central South University, Changsha, China.;Department of Reproductive Medicine, Xiangya Hospital, Central South University, Changsha, China.;Clinical Research Center for Women's Reproductive Health in Hunan Province, Xiangya Hospital, Central South University, Changsha, China.;Department of Reproductive Medicine, Xiangya Hospital, Central South University, Changsha, China.;Clinical Research Center for Women's Reproductive Health in Hunan Province, Xiangya Hospital, Central South University, Changsha, China.;Department of Reproductive Medicine, Xiangya Hospital, Central South University, Changsha, China.;Clinical Research Center for Women's Reproductive Health in Hunan Province, Xiangya Hospital, Central South University, Changsha, China.;Department of Reproductive Medicine, Xiangya Hospital, Central South University, Changsha, China.;Clinical Research Center for Women's Reproductive Health in Hunan Province, Xiangya Hospital, Central South University, Changsha, China.;Department of Reproductive Medicine, Xiangya Hospital, Central South University, Changsha, China.;Clinical Research Center for Women's Reproductive Health in Hunan Province, Xiangya Hospital, Central South University, Changsha, China.;Department of Reproductive Medicine, Xiangya Hospital, Central South University, Changsha, China.;Clinical Research Center for Women's Reproductive Health in Hunan Province, Xiangya Hospital, Central South University, Changsha, China.;Department of Reproductive Medicine, Xiangya Hospital, Central South University, Changsha, China.;Clinical Research Center for Women's Reproductive Health in Hunan Province, Xiangya Hospital, Central South University, Changsha, China.;Department of Reproductive Medicine, Xiangya Hospital, Central South University, Changsha, China.;Clinical Research Center for Women's Reproductive Health in Hunan Province, Xiangya Hospital, Central South University, Changsha, China.;Department of Reproductive Medicine, Xiangya Hospital, Central South University, Changsha, China.;Clinical Research Center for Women's Reproductive Health in Hunan Province, Xiangya Hospital, Central South University, Changsha, China.",eng,Journal Article,20260321,England,Hum Reprod Open,Human reproduction open,101722764,,,NOTNLM,clinical trial;exosome;meta-epidemiological study;premature ovarian failure;stem cell;women's reproductive diseases,The authors declare that they have no competing interests.,2026/04/06 12:36,2026/04/06 12:37,2026/04/06 06:26,2025/08/20 00:00 [received];2026/03/05 00:00 [revised];2026/03/13 00:00 [accepted];2026/04/06 12:37 [medline];2026/04/06 12:36 [pubmed];2026/04/06 06:26 [entrez];2026/03/21 00:00 [pmc-release],10.1093/hropen/hoag024,epublish,hoag024,ORCID: 0000-0002-7516-7126,PMC13044756,2026/03/21,,,,,,,,PUBMED,,,,"Su H, 2026, Hum Reprod Open",0,"Su H, 2026, Hum Reprod Open"
+41929970,NLM,PubMed-not-MEDLINE,20260403,20260403,10,,2026,N-Glycosylation and Alzheimer's disease: A 2001-2025 global bibliometric landscape revealing emerging diagnostic trends.,10.1177/25424823251412909 [doi];25424823251412909,"BACKGROUND: Alzheimer's disease (AD) lacks effective early diagnostic tools. N-glycosylation dysregulation involving the enzyme MGAT3 is implicated in AD pathogenesis, with untapped clinical potential for biomarker development. OBJECTIVE: To identify and validate MGAT3-associated diagnostic biomarkers for AD using integrative multi-disciplinary approaches. METHODS: Bibliometric analysis of N-glycosylation-AD research; large-scale GEO dataset preprocessing, WGCNA-integrated bioinformatics, machine learning, and penalized regression in well-characterized independent training/validation sets. RESULTS: Bibliometric analysis revealed -1.94% annual growth, 21.76% international co-authorship, leading contributions from the U.S., Japan, and China; Journal of Biological Chemistry as the core journal; Taniguchi N and Kizuka Y as key authors; Lee JH (2010) and Zielinska DF (2010) as highly cited works; key keywords including ""bisecting GlcNAc"" and ""MGAT3/GnT-III""; and thematic shifts toward amyloid pathology, MGAT3-driven glycosylation, and neuronal signaling pathways. ATP6V1G2 and CHST6 emerged as core MGAT3-associated biomarkers with a strong antagonistic relationship (r = -0.63). Both demonstrated robust standalone diagnostic efficacy (AUC > 0.72) across diverse patient subgroups in the training set, with the CHST6 + ATP6V1G2 + PCSK1 combination achieving AUC 0.755. Validation confirmed ATP6V1G2 as the consistently top single biomarker (AUC = 0.761), while the ATP6V1G2 + ENO2 + SEZ6L2 panel reached peak AUC 0.764. ATP6V1G2 was significantly downregulated and CHST6 markedly upregulated in AD cohorts, with clinical utility validated via nomograms for risk stratification, decision curve analysis (net benefit 0.20-0.25), and >80% reliable correspondence between high-risk individuals and confirmed AD cases. CONCLUSIONS: MGAT3-associated biomarkers (ATP6V1G2, CHST6) and their combinations offer promising AD diagnostic potential, advancing insights into N-glycosylation-mediated disease mechanisms.",(c) The Author(s) 2026.,"Shi, GuoXun;Ju, Feng;Dong, QiGang;Fang, Ye",Shi G;Ju F;Dong Q;Fang Y,"Rheumatology Department, Wuxi Second People's Hospital, Wuxi, China.;Department of Gastroenterology, Wuxi No. 5 People's Hospital, Wuxi, China. RINGGOLD: 639353;Department of Emergency Medicine, Wuxi No. 5 People's Hospital, Wuxi, China. RINGGOLD: 639353;Department of Emergency Medicine, Wuxi People's Hospital, Wuxi, China. RINGGOLD: 261546",eng,Journal Article,20260108,United States,J Alzheimers Dis Rep,Journal of Alzheimer's disease reports,101705500,,,NOTNLM,ATP6V1G2;Alzheimer's disease;CHST6;MGAT3;N-glycosylation;WGCNA;biomarkers;diagnostic model;machine learning,"The authors declared no potential conflicts of interest with respect to the research, authorship, and/or publication of this article.",2026/04/03 06:30,2026/04/03 06:31,2026/04/03 05:04,2025/10/10 00:00 [received];2025/12/11 00:00 [accepted];2026/04/03 06:31 [medline];2026/04/03 06:30 [pubmed];2026/04/03 05:04 [entrez];2026/01/08 00:00 [pmc-release],10.1177/25424823251412909,epublish,25424823251412909,ORCID: 0009-0004-9744-7163;ORCID: 0009-0005-6298-2833;ORCID: 0009-0005-6670-2309;ORCID: 0009-0008-7740-7446,PMC13039042,2026/01/08,,,,,,,,PUBMED,,,,"Shi G, 2026, J Alzheimers Dis Rep",0,"Shi G, 2026, J Alzheimers Dis Rep"
+41929316,NLM,PubMed-not-MEDLINE,20260416,20260416,,,2026,"The Power of Open Health Data: Impact, Representation, and Knowledge Diffusion.",2026.03.20.26348933 [pii];10.64898/2026.03.20.26348933 [doi],"BACKGROUND: Open health data repositories receive billions in public funding, yet no systematic framework exists to evaluate their downstream scholarly impact, the composition of the research communities they cultivate, or the breadth of disciplines they reach. We introduce a two-degree citation methodology to quantify knowledge diffusion from open data, normalized by funding, and apply it to four major health data repositories. METHODS: Using the OpenAlex bibliometric database (January-February 2026), we identified all first-degree citing publications (n = 30,049) and their second-degree citing publications (n = 485,396), defined as papers citing those first-degree publications, for MIMIC (versions I-IV; retrospective EHR data; $14.4M), UK Biobank (prospective cohort with genomics; $525.5M), OpenSAFELY (federated EHR platform; $53.7M), and All of Us (prospective national cohort with biobanking and community engagement; $2,160M). We extracted author demographics (gender via Genderize.io, institutional country income via World Bank 2024 classifications) and research topics. Chi-square tests with odds ratios assessed demographic differences across repositories. RESULTS: Funding-normalized first-degree papers per $1M ranged from 689 (MIMIC) to 1 (All of Us), though these figures reflect total program investment, which included community engagement and biobanking for prospective cohorts in addition to data-curation costs. The citation amplification ratio was consistent across these four repositories (9.3-11.5x). Author demographics differed significantly (p < 0.001): LMIC authorship ranged from 41.8% (MIMIC) to 4.3% (All of Us), while female authorship showed the opposite pattern, lowest for MIMIC (31.8%) and highest for All of Us (43.2%). Female authors were consistently underrepresented in senior (last-author) compared with first-author positions across all repositories. Differences in scope, design, and what funding covers limit direct comparisons. CONCLUSIONS: Open health data generates a consistent ~10x indirect citation amplification beyond its direct users, a ratio that held across repositories spanning over two orders of magnitude in funding. The large differences in funding-normalized output partly reflect structural differences between retrospective databases and prospective cohorts. Low-cost access combined with intentional community building attracted globally diverse research communities with LMIC investigators in intellectual leadership positions, while a persistent gender gap in senior authorship across all repositories reflects disciplinary and structural inequities that data access policies alone cannot address. Future evaluations of open data investments should examine who is producing research, from where, in what positions, and whether their participation translates into locally relevant knowledge production.",,"Gorijavolu, Rahul;Armengol de la Hoz, Miguel Angel;Bielick, Catherine;Cajas, Sebastian;Charpignon, Marie-Laure;El Mir, Aya;Gichoya, Judy W;Kwak, Hyunjung Gloria;Madapati, Kaushik;Mattie, Heather;McCullum, Lucas;Mwavu, Rogers;Nair, Vishnu;Nakayama, Luis Filipe;Nanyonjo, Josephine;Nazer, Lama;Patel, Milit S;Sauer, Christopher M;Celi, Leo A",Gorijavolu R;Armengol de la Hoz MA;Bielick C;Cajas S;Charpignon ML;El Mir A;Gichoya JW;Kwak HG;Madapati K;Mattie H;McCullum L;Mwavu R;Nair V;Nakayama LF;Nanyonjo J;Nazer L;Patel MS;Sauer CM;Celi LA,"Artificial Intelligence for Responsible, Generalizable, and Open Surgical (ARGOS) Research Group, Baltimore, MD, USA.;Laboratory for Computational Physiology, MIT Critical Data, Massachusetts Institute of Technology, Cambridge, MA, USA.;Johns Hopkins University School of Medicine, Baltimore, MD, USA.;Whiting School of Engineering, Johns Hopkins University, Baltimore, MD, USA.;Big Data Department, PMC, Fundacion Progreso y Salud, Seville, Spain.;Division of Infectious Diseases, Beth Israel Deaconess Medical Center, Boston, MA, USA.;Laboratory for Computational Physiology, MIT Critical Data, Massachusetts Institute of Technology, Cambridge, MA, USA.;Institute for Data, Systems, and Society, Massachusetts Institute of Technology, Cambridge, MA, USA.;Department of Machine Learning, Mohamed bin Zayed University of Artificial Intelligence, Abu Dhabi, United Arab Emirates.;Department of Radiology and Imaging Sciences, Emory University, Atlanta, GA, USA.;Nell Hodgson Woodruff School of Nursing, Emory University, Atlanta, GA, USA.;Artificial Intelligence for Responsible, Generalizable, and Open Surgical (ARGOS) Research Group, Baltimore, MD, USA.;Laboratory for Computational Physiology, MIT Critical Data, Massachusetts Institute of Technology, Cambridge, MA, USA.;College of Engineering, University of California, Berkeley, CA, USA.;Harvard T.H. Chan School of Public Health, Boston, MA, USA.;UT MD Anderson Cancer Center UTHealth Houston Graduate School of Biomedical Sciences, Houston, TX, USA.;Department of Radiation Oncology, The University of Texas MD Anderson Cancer Center, Houston, TX, USA.;Department of Information Technology, Mbarara University of Science and Technology, Mbarara, Uganda.;Johns Hopkins University School of Medicine, Baltimore, MD, USA.;Laboratory for Computational Physiology, MIT Critical Data, Massachusetts Institute of Technology, Cambridge, MA, USA.;Ophthalmology Department, Escola Paulista de Medicina, Universidade de Sao Paulo, Sao Paulo, SP, Brazil.;Health Informatics Equity Lab, School of Nursing, Faculty of Health and Social Development, University of British Columbia Okanagan, Kelowna, BC, Canada.;Department of Pharmacy, King Hussein Cancer Center, Amman, Jordan.;Laboratory for Computational Physiology, MIT Critical Data, Massachusetts Institute of Technology, Cambridge, MA, USA.;Department of Molecular Biosciences, The University of Texas at Austin, Austin, TX, USA.;Laboratory for Computational Physiology, MIT Critical Data, Massachusetts Institute of Technology, Cambridge, MA, USA.;Department of Hematology and Stem Cell Transplantation, University Hospital Essen, Essen, Germany.;Institute for Artificial Intelligence in Medicine, University Hospital Essen, Essen, Germany.;Laboratory for Computational Physiology, MIT Critical Data, Massachusetts Institute of Technology, Cambridge, MA, USA.;Division of Pulmonary, Critical Care and Sleep Medicine, Beth Israel Deaconess Medical Center, Boston, MA, USA.;Department of Biostatistics, Harvard T.H. Chan School of Public Health, Boston, MA, USA.",eng,Journal Article;Preprint,20260325,United States,medRxiv,medRxiv : the preprint server for health sciences,101767986,,,NOTNLM,bibliometrics;citation analysis;health data repositories;knowledge diffusion;open data;research equity,Competing Interests LAC is Senior Research Scientist at the MIT Laboratory for Computational Physiology and principal investigator for the MIMIC database. All other authors declare no competing interests.,2026/04/03 06:30,2026/04/03 06:31,2026/04/03 04:58,2026/04/03 06:30 [pubmed];2026/04/03 06:31 [medline];2026/04/03 04:58 [entrez];2026/04/01 00:00 [pmc-release],10.64898/2026.03.20.26348933,epublish,,ORCID: 0000-0002-4386-957X;ORCID: 0000-0002-7012-2973;ORCID: 0000-0003-1871-3909;ORCID: 0000-0003-0579-6178;ORCID: 0000-0002-5786-2627;ORCID: 0009-0007-8274-3340;ORCID: 0000-0002-1097-316X;ORCID: 0000-0002-0847-5073;ORCID: 0009-0008-4248-6519;ORCID: 0000-0002-1263-2537;ORCID: 0000-0001-9788-7987;ORCID: 0009-0004-2994-7182;ORCID: 0009-0000-3999-9913;ORCID: 0000-0002-6847-6748;ORCID: 0009-0004-4547-3319;ORCID: 0000-0002-7550-4751;ORCID: 0009-0000-9179-267X;ORCID: 0000-0002-2388-5919;ORCID: 0000-0001-6712-6626,PMC13042117,2026/04/01,,,,,,,,PUBMED,,,,"Gorijavolu R, 2026, medRxiv",0,"Gorijavolu R, 2026, medRxiv"
+41928631,NLM,Publisher,,20260403,,,2026,Digital Technology in Cognitive Decline: Bibliometric and Visualization Study.,10.2174/0115672050420571260126043841 [doi],"With an increasing prevalence of cognitive decline diseases around the world, digital technologies are becoming an important tool for their prevention, diagnosis, and treatment. In this study, we present a comprehensive bibliometric study on the application of these digital technologies in the field of cognitive decline. This study intends to examine the trends of development and research hotspots of digital technology in cognitive decline field by bibliometric analysis. The literature has been analyzed in a systematic way. Bibliometrix R-package and VOSviewer were used to investigate publication tendency, country contribution, scholar influence, and research hotspots. A total of 1661 articles from 2006 to 2023 were analyzed. Results show an exponential increase in the number of annual publications on digital technologies applications and cognitive decline. The top journals, by volume of publication, are Alzheimer's & Dementia, the Journal of Alzheimer's Disease, and Neurology. The US is the dominant contributor of literature to this field, and the key countries for author impact include Greece, the USA, and Italy. Current research hotspots include virtual reality, machine learning, and artificial intelligence, based on analysis of keywords. This study characterizes the overall research progress and reveals research hotspots, trends, and the collaboration status among countries, on the utilization of digital technologies for cognitive decline. Moving forward, we call on researchers to increase developed/developing countries collaboration, to further implement digital technologies to counteract the public health burden of cognitive decline.","Copyright(c) Bentham Science Publishers; For any queries, please email at epub@benthamscience.net.","Huang, Yihan;Zhu, Xuejiao;Yang, Shulan;Zhang, Yunhao;Tan, Zhelu;Han, Shinan",Huang Y;Zhu X;Yang S;Zhang Y;Tan Z;Han S,"Nursing Department, Hangzhou Normal University, School of Public Health and Nursing, Hangzhou Normal University, Hangzhou, 311121, China.;Nursing Department, Hangzhou Normal University, School of Public Health and Nursing, Hangzhou Normal University, Hangzhou, 311121, China.;Nursing Department, Zhejiang Hospital, Hangzhou, 311130, China.;Nursing Department, Hangzhou Normal University, School of Public Health and Nursing, Hangzhou Normal University, Hangzhou, 311121, China.;Nursing Department, Hangzhou Normal University, School of Public Health and Nursing, Hangzhou Normal University, Hangzhou, 311121, China.;Hangzhou Normal University School of Public Health and Nursing Hangzhou China.",eng,Journal Article,20260326,United Arab Emirates,Curr Alzheimer Res,Current Alzheimer research,101208441,IM,,NOTNLM,Alzheimer's disease;Digital technology;bibliometrics;cognitive decline;dementia.;virtual reality;visualization analysis,,2026/04/03 06:30,2026/04/03 06:30,2026/04/03 03:32,2025/07/04 00:00 [received];2025/11/12 00:00 [revised];2025/11/26 00:00 [accepted];2026/04/03 06:30 [medline];2026/04/03 06:30 [pubmed];2026/04/03 03:32 [entrez],10.2174/0115672050420571260126043841,aheadofprint,,ORCID: 0009-0007-4613-613X,,,,,,,,,,PUBMED,,,,"Huang Y, 2026, Curr Alzheimer Res",0,"Huang Y, 2026, Curr Alzheimer Res"
+41910547,NLM,MEDLINE,20260520,20260520,96,6,2026,Benchmarking Large Language Models Against Web of Science: A Comparative Bibliometric Analysis on Panniculectomy.,10.1097/SAP.0000000000004730 [doi],"BACKGROUND: As large language models (LLMs) grow in sophistication, their potential role in scientific writing is being explored with growing interest and caution. However, LLMs vary in their performance, contextual accuracy, and reliability. This study compares the outputs of 3 leading LLMs (ChatGPT-4o, Deepseek, and Claude 3.7) against a manually curated bibliometric analysis of the most highly cited panniculectomy articles. METHODS: The 50 most highly cited panniculectomy publications were manually extracted from Web of Science (WoS) to serve as a reference data set. ChatGPT-4o, Deepseek, and Claude 3.7 Sonnet were each prompted to generate their own list of the 50 most cited panniculectomy articles. Outputs were compared across citation totals and averages, publication year trends, journal distribution, author co-occurrence, and article authenticity. RESULTS: The manual data set totaled 2494 citations (density: 49.8). ChatGPT-4o, Deepseek, and Claude 3.7 produced 2111 (42.2), 4736 (94.7), and 8592 (171.8) citations, respectively. Overlap with the manual list was limited: ChatGPT-4o (14.00%), Claude 3.7 (4.00%), Deepseek (0.00%) ( P <0.001). ""Plastic and Reconstructive Surgery"" was the most cited journal across all outputs. Unique authors: manual (241), ChatGPT-4o (114), Deepseek (72), and Claude 3.7 (129). Article accuracy: ChatGPT-4o had 34.00% accurate, 26.00% confabulated, and 40.00% hallucinated articles. Claude 3.7: 4.00% accurate, 26.00% confabulated, and 70.00% hallucinated. Deepseek: 100.00% hallucinated ( P <0.001). Year trends and journal representation varied notably from the manual set. CONCLUSIONS: Current LLMs struggle to replicate accurate bibliometric data. ChatGPT-4o performed best but still showed major limitations. WoS remains the gold standard, and LLM-generated outputs should be treated cautiously in bibliometric analyses.","Copyright (c) 2026 Wolters Kluwer Health, Inc. All rights reserved.","Mangal, Rohan;Jessup, Mark;Desai, Anshumi;Khandekar, Archan;Prasad, Soumil;Tadisina, Kashyap Komarraju;Singh, Devinder",Mangal R;Jessup M;Desai A;Khandekar A;Prasad S;Tadisina KK;Singh D,"University of Miami Miller School of Medicine.;University of Miami Miller School of Medicine.;DeWitt Department of Surgery, Division of Plastic Surgery, University of Miami Miller School of Medicine.;Desai Sethi Urology Institute, University of Miami Miller School of Medicine, Miami, FL.;University of Miami Miller School of Medicine.;DeWitt Department of Surgery, Division of Plastic Surgery, University of Miami Miller School of Medicine.;DeWitt Department of Surgery, Division of Plastic Surgery, University of Miami Miller School of Medicine.",eng,Comparative Study;Journal Article,20260330,United States,Ann Plast Surg,Annals of plastic surgery,7805336,IM,*Bibliometrics;Humans;*Benchmarking;*Abdominoplasty;*Language;Large Language Models,NOTNLM,LLM;artificial intelligence;bibliometric;panniculectomy,Conflicts of interest and sources of funding: none declared.,2026/03/30 12:49,2026/05/20 18:33,2026/03/30 10:42,2025/10/02 00:00 [received];2026/02/21 00:00 [accepted];2026/05/20 18:33 [medline];2026/03/30 12:49 [pubmed];2026/03/30 10:42 [entrez],10.1097/SAP.0000000000004730,ppublish,588,ORCID: 0009-0005-4682-9353,,,,,,,,,,PUBMED,,,594,"Mangal R, 2026, Ann Plast Surg",0,"Mangal R, 2026, Ann Plast Surg"
+41909712,NLM,MEDLINE,20260330,20260330,17,,2026,Global trends and emerging hotspots of macrophage research in kidney transplantation: a bibliometric and visualization analysis.,10.3389/fimmu.2026.1794759 [doi];1794759,"BACKGROUND: Macrophages are plastic innate immune cells that couple inflammatory signaling with microvascular injury and alloimmune responses, thereby shaping rejection phenotypes and chronic allograft dysfunction after kidney transplantation. Yet, the mechanistic knowledge structure and emerging hotspots of this field remain insufficiently synthesized. METHODS: Publications on kidney transplantation and macrophage-related research (2000-2025) were retrieved from the Web of Science Core Collection (n=538) and PubMed (n=385). Bibliometric and visualization analyses were performed using Microsoft Excel 2021, VOSviewer, CiteSpace, Charticulator, and Scimago Graphica, including trend analysis, collaboration mapping, journal and reference impact assessment, keyword co-occurrence and clustering, and burst detection. PubMed keyword analysis was used to validate and complement the WoSCC-based findings. RESULTS: A total of 538 publications were identified, showing a steady increase over time. The United States and China were the major contributors, with extensive international collaboration networks. Co-citation and keyword analyses revealed that the research focus has evolved from early studies on graft injury and immune mechanisms to more recent hotspots such as immune infiltration, polarization, ferroptosis, transcriptomics, and machine learning. The timeline analysis further indicated a shift from foundational immunological mechanisms to mechanistic expansion and, more recently, to technology-driven and clinically oriented research, highlighting increasing emphasis on diagnosis, precision monitoring, and translational applications in kidney transplantation. CONCLUSION: Macrophage-focused kidney transplantation research is moving toward cell-state-resolved and technology-driven mechanistic frameworks that connect rejection pathology to long-term graft outcomes, providing a roadmap for biomarker development and targeted immunomodulation.","Copyright (c) 2026 Cai, He and Cheng.","Cai, Tao;He, Xiuli;Cheng, Shulin",Cai T;He X;Cheng S,"Department of Urology, the Affiliated Hospital of North Sichuan Medical College, Nanchong, Sichuan, China.;Department of Ultrasonography, the Affiliated Hospital of North Sichuan Medical College, Nanchong, Sichuan, China.;Department of Urology, the Affiliated Hospital of North Sichuan Medical College, Nanchong, Sichuan, China.",eng,Journal Article;Review,20260312,Switzerland,Front Immunol,Frontiers in immunology,101560960,IM,*Kidney Transplantation/adverse effects;*Macrophages/immunology/metabolism;Humans;Bibliometrics;Graft Rejection/immunology;*Biomedical Research/trends;Animals,NOTNLM,bibliometric analysis;fibrosis;ischemia - reperfusion injury;kidney transplantation;macrophages,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/03/30 12:50,2026/03/30 12:51,2026/03/30 06:38,2026/01/23 00:00 [received];2026/02/21 00:00 [revised];2026/02/26 00:00 [accepted];2026/03/30 12:51 [medline];2026/03/30 12:50 [pubmed];2026/03/30 06:38 [entrez];2026/03/12 00:00 [pmc-release],10.3389/fimmu.2026.1794759,epublish,1794759,,PMC13017323,2026/03/12,,,,,,,,PUBMED,,,,"Cai T, 2026, Front Immunol",0,"Cai T, 2026, Front Immunol"
+41899575,NLM,PubMed-not-MEDLINE,20260328,20260330,18,6,2026,Artificial Intelligence in ALK-Rearranged NSCLC: Forecasting Response and Resistance.,10.3390/cancers18060973 [doi];973,"BACKGROUND/OBJECTIVES: The management and prognosis of ALK-rearranged non-small-cell lung cancer have substantially improved over the past decade. However, challenges remain in timely molecular identification, prediction of treatment response, and understanding resistance mechanisms. This systematic review evaluates and synthesizes the evidence on artificial intelligence (AI) approaches leveraging imaging, pathology, molecular, and clinical data in this setting. METHODS: A systematic search was conducted for peer-reviewed studies published between 2020 and 2025. Eligible studies involved human subjects and applied AI, machine learning, or deep learning methods to predict ALK status or treatment-related outcomes using imaging, pathology, molecular, or multimodal data. Study selection followed the PRISMA 2020 guidelines. Data were extracted on study design, data modality, AI methodology, clinical objectives, and performance metrics. Bibliometric co-occurrence analysis was performed to characterize thematic patterns and temporal trends. RESULTS: Thirteen studies met the inclusion criteria, most of which were retrospective and single-center. AI approaches were applied to radiologic, pathologic, molecular, or multimodal data. Models predicting ALK status reported area under the curve values ranging from 0.73 to 0.99, while prognostic and treatment-response models reported moderate to high discriminative performance. Bibliometric analysis identified two dominant research themes focused on molecular characterization and computational methodology, with a recent shift toward treatment-specific and integrative analyses. External validation and clinical implementation remained limited across studies. CONCLUSIONS: AI shows promising potential to support diagnosis, prognostication, and treatment assessment in ALK-rearranged lung cancer. However, methodological heterogeneity, limited external validation, and a lack of prospective studies currently constrain clinical translation.",,"Koulouris, Andreas;Tsagkaris, Christos;Kalaitzidis, Konstantinos;Tsakonas, Georgios;Mountzios, Giannis",Koulouris A;Tsagkaris C;Kalaitzidis K;Tsakonas G;Mountzios G,"Thoracic Oncology Center, Karolinska University Hospital, 171 76 Stockholm, Sweden.;Department of Oncology-Pathology, Karolinska Institutet, 171 77 Stockholm, Sweden.;Faculty of Medicine, Aristotle University of Thessaloniki, 54124 Thessaloniki, Greece.;Science for Life Laboratory, Department of Biochemistry and Biophysics, Stockholm University, 171 21 Solna, Sweden.;Thoracic Oncology Center, Karolinska University Hospital, 171 76 Stockholm, Sweden.;Department of Oncology-Pathology, Karolinska Institutet, 171 77 Stockholm, Sweden.;Department of Medical Oncology, Bank of Cyprus Oncology Center, Nicosia 28551, Cyprus.;Fourth Department of Medical Oncology and Clinical Trials Unit, Henry Dunant Hospital Center, 11526 Athens, Greece.",eng,Journal Article;Review,20260318,Switzerland,Cancers (Basel),Cancers,101526829,,,NOTNLM,ALK rearrangement;NSCLC;artificial intelligence;digital pathology;machine learning;prognostic modeling;radiomics;resistance mechanisms;systematic review;treatment response,The authors declare no conflicts of interest.,2026/03/28 06:39,2026/03/28 06:40,2026/03/28 01:26,2026/01/22 00:00 [received];2026/03/12 00:00 [revised];2026/03/16 00:00 [accepted];2026/03/28 06:40 [medline];2026/03/28 06:39 [pubmed];2026/03/28 01:26 [entrez];2026/03/18 00:00 [pmc-release],10.3390/cancers18060973,epublish,,ORCID: 0000-0003-2334-444X;ORCID: 0000-0002-4250-574X;ORCID: 0000-0003-4397-7391;ORCID: 0000-0002-7780-7836,PMC13025099,2026/03/18,N/A/European Society for Medical Oncology/;N/A/Hellenic Society of Medical Oncology (HeSMO)/;N/A/University of Crete/;N/A/Onassis Scholarship 2025-2026/;N/A/Radium Hemmets Research Funds/;N/A/Elena Iliopoulou Giama (EIG) Cancer Research & Scholarship Foundation/,,,,,,,PUBMED,,,,"Koulouris A, 2026, Cancers (Basel)",0,"Koulouris A, 2026, Cancers (Basel)"
+41894064,NLM,MEDLINE,20260327,20260327,24,2,2026,The Deep Learning Revolution in Neuroimaging: Insights from a Bibliometric Analysis (2014-2024).,16 [pii];10.1007/s12021-026-09775-4 [doi],"This paper presents a bibliometric analysis of the fast-growing area of deep learning in neuroimaging. Using data from the Scopus database, we analyzed 12564 peer-reviewed publications originating from 102 countries, published in 2259 sources over the period from 2014 to 2024. The field demonstrated a compound average annual growth rate of 51.7%. We found that China emerged as the most productive contributor, accounting for 22.9% of the total publications and 18% of total citations. The Chinese Academy of Sciences was identified as the most productive research institution with 149 publications and 1557 citations, while Lecture Notes in Computer Science was noted as the most highly cited source in this domain. High usage of deep learning, brain, and magnetic resonance imaging identified the most prominent research themes. Also, our analysis noted strong research emphasis on the application of various deep learning architectures for the diagnosis and study of important neurological disorders like Parkinson's Disease, Alzheimer's Disease, and Mild Cognitive Impairment. The article would be useful in understanding the current state-of-the-art deep learning for neuroimaging by identifying key research trends, influential institutions, and prominent research themes. In this way, it will contribute to helping future researchers go further in this fast-growing field.","(c) 2026. The Author(s), under exclusive licence to Springer Science+Business Media, LLC, part of Springer Nature.","Chaki, Jyotismita;Deshpande, Gopikrishna",Chaki J;Deshpande G,"School of Computer Science and Engineering, Vellore Institute of Technology, Vellore, India. jyotismita@vit.ac.in.;Department of Electrical and Computer Engineering, AU MRI Research Center, Auburn University, Auburn, AL, USA. gzd0005@auburn.edu.;Department of Psychological Sciences, Auburn University, Auburn, AL, USA. gzd0005@auburn.edu.;Alabama Advanced Imaging Consortium, Birmingham, AL, USA. gzd0005@auburn.edu.;Center for Neuroscience, Auburn University, Auburn, AL, USA. gzd0005@auburn.edu.;Department of Psychiatry, National Institute of Mental Health and Neurosciences, Bangalore, India. gzd0005@auburn.edu.;Department of Heritage Science and Technology, Indian Institute of Technology, Hyderabad, India. gzd0005@auburn.edu.",eng,Journal Article;Review,20260327,United States,Neuroinformatics,Neuroinformatics,101142069,IM,*Deep Learning/trends;*Bibliometrics;*Neuroimaging/trends/methods;Humans;*Brain/diagnostic imaging,NOTNLM,Bibliometric Analysis;Deep Learning;Magnetic Resonance Imaging (MRI);Neuroimaging,Declarations. Consent to Participate: Not applicable. This study did not involve human participants. Competing interests: The authors declare no competing interests.,2026/03/27 18:52,2026/03/27 18:53,2026/03/27 12:15,2025/11/01 00:00 [received];2026/03/04 00:00 [accepted];2026/03/27 18:53 [medline];2026/03/27 18:52 [pubmed];2026/03/27 12:15 [entrez],10.1007/s12021-026-09775-4,epublish,,,,,,,,,,,,PUBMED,,,,"Chaki J, 2026, Neuroinformatics",0,"Chaki J, 2026, Neuroinformatics"
+41890566,NLM,PubMed-not-MEDLINE,20260327,20260327,19,,2026,Publication Trends of Research on Immune Tolerance After Kidney Transplantation: A Bibliometric Analysis from 1976 to 2024.,10.2147/JMDH.S552350 [doi];552350,"PURPOSE: The field of immune tolerance after kidney transplantation has witnessed substantial growth in research over the decades. To systematically evaluate the trends and hotspots in this area, a bibliometric analysis was conducted spanning from 1976 to 2024. METHODS: A bibliometric analysis was conducted using the Web of Science Core Collection database. VOSviewers, CiteSpace and the R package ""bibliometrix"" were used for visualization. RESULTS: The analysis examined 1033 English articles, highlighting the involvement of 6608 authors from 3461 institutions across 53 countries/regions. The research showed a 4.14% annual growth in publications, peaking in 2016 and declining recently. The most cited article was ""Marked prolongation of porcine renal xenograft survival in baboons through the use of alpha1,3-galactosyltransferase gene-knockout donors and the cotransplantation of vascularized thymic tissue (488 citations)"" published in the Nature medicine (IF = 58.7) in 2005. The USA led in both publication volume and citations, with significant contributions from Harvard University and Massachusetts General Hospital. High-impact journals like Transplantation dominated. The keywords ""tolerance"", ""induction"", and ""T-cells"" exhibited the highest co-occurrence frequency. Meanwhile, ""breast cancer"", ""magnetic resonance imaging"", ""deep learning"", ""machine learning"", ""neoadjuvant chemotherapy"", and ""radiomics"" were identified as keywords with the strongest recent citation bursts. CONCLUSION: This bibliometric analysis highlights the evolving trends and hotspots in research on immune tolerance after kidney transplantation. Future studies should continue to explore the integration of machine learning in understanding and predicting immune tolerance.",(c) 2026 Yang et al.,"Yang, Yanji;Song, Hehua;Li, Hao;Zhong, Qiang;Tan, Zhouke",Yang Y;Song H;Li H;Zhong Q;Tan Z,"Department of Renal Transplant, Affiliated Hospital of Zunyi Medical University, Zunyi, Guizhou, 563000, People's Republic of China.;Organ Transplant Center, Affiliated Hospital of Zunyi Medical University, Zunyi, Guizhou, 563000, People's Republic of China.;Department of Renal Transplant, Affiliated Hospital of Zunyi Medical University, Zunyi, Guizhou, 563000, People's Republic of China.;Organ Transplant Center, Affiliated Hospital of Zunyi Medical University, Zunyi, Guizhou, 563000, People's Republic of China.;Department of Renal Transplant, Affiliated Hospital of Zunyi Medical University, Zunyi, Guizhou, 563000, People's Republic of China.;Organ Transplant Center, Affiliated Hospital of Zunyi Medical University, Zunyi, Guizhou, 563000, People's Republic of China.;Department of Renal Transplant, Affiliated Hospital of Zunyi Medical University, Zunyi, Guizhou, 563000, People's Republic of China.;Organ Transplant Center, Affiliated Hospital of Zunyi Medical University, Zunyi, Guizhou, 563000, People's Republic of China.;Department of Renal Transplant, Affiliated Hospital of Zunyi Medical University, Zunyi, Guizhou, 563000, People's Republic of China.;Organ Transplant Center, Affiliated Hospital of Zunyi Medical University, Zunyi, Guizhou, 563000, People's Republic of China.",eng,Journal Article,20260202,New Zealand,J Multidiscip Healthc,Journal of multidisciplinary healthcare,101512691,,,NOTNLM,bibliometrics;immune tolerance;kidney transplantation;publication;survival,The authors declare that they have no competing interests in this work.,2026/03/27 07:15,2026/03/27 07:16,2026/03/27 05:13,2025/07/08 00:00 [received];2026/01/08 00:00 [accepted];2026/03/27 07:16 [medline];2026/03/27 07:15 [pubmed];2026/03/27 05:13 [entrez];2026/02/02 00:00 [pmc-release],10.2147/JMDH.S552350,epublish,552350,,PMC13016129,2026/02/02,,,,,,,,PUBMED,,,,"Yang Y, 2026, J Multidiscip Healthc",0,"Yang Y, 2026, J Multidiscip Healthc"
+41890349,NLM,PubMed-not-MEDLINE,20260327,20260327,17,,2026,Differences and Trends of Artificial Intelligence in Medical Education: A Comparative Bibliometric Analysis Between China and the International Community.,10.2147/AMEP.S573537 [doi];573537,"OBJECTIVE: This study aims to explore the application of artificial intelligence in medical education by comparing research hotspots and evolutionary trends between China and the international community, ultimately proposing informed educational practices and policy recommendations. METHODS: Literature was retrieved from the core collections of CNKI and Web of Science for the period 2014-2024, limited to article and review publications. After applying a unified Boolean search strategy and deduplication, the data were analyzed using CiteSpace 6.4.R1 to examine publication trends, collaboration networks, keyword co-occurrence/clustering/burst detection, and co-citation patterns. RESULTS: A total of 379 Chinese and 552 English records were included. Publications surged after 2018 and peaked during 2023-2024. International hotspots centered on machine learning, deep learning, and large language models for simulation-based training and clinical reasoning; Chinese studies focused on ""New Medical Sciences"", VR/AR, and medical imaging. The emergence of generative artificial intelligence and multimodal large models has become a new frontier in artificial intelligence research within global medical education from 2023 to 2024. CONCLUSION: This study is based on a comparison of two databases to reveal the hotspots and differences in artificial intelligence and medical education research between China and the international research community. It not only compensates for the time lag of existing research, but also proposes three major trends driven by artificial intelligence in the development of medical education (generative AI, personalized learning, immersive experience). A complementary pattern exists between technology-driven and scenario-driven orientations. We recommend integrating AI literacy and ethics into curricula, establishing Generative-AI teaching/assessment guidelines, and building cross-institutional, yearly knowledge-map monitoring for sustainable innovation in medical education.",(c) 2026 Ma et al.,"Ma, Songhua;Zhou, Qing;Wu, Huiqun",Ma S;Zhou Q;Wu H,"Department of Physiology, Medical School of Nantong University, Nantong, People's Republic of China.;Nantong University Xining College, Nantong, People's Republic of China.;Education and Training Department, Affiliated Hospital of Nantong University, Nantong, People's Republic of China.;Department of Medical Informatics, Medical School of Nantong University, Nantong, People's Republic of China.",eng,Journal Article,20260131,New Zealand,Adv Med Educ Pract,Advances in medical education and practice,101562700,,,NOTNLM,AI;artificial intelligence;generative AI;literature visualization;medical education,The authors report no conflicts of interest in this work.,2026/03/27 07:15,2026/03/27 07:16,2026/03/27 05:11,2025/10/11 00:00 [received];2026/01/13 00:00 [accepted];2026/03/27 07:16 [medline];2026/03/27 07:15 [pubmed];2026/03/27 05:11 [entrez];2026/01/31 00:00 [pmc-release],10.2147/AMEP.S573537,epublish,573537,ORCID: 0000-0002-4948-2288,PMC13012861,2026/01/31,,,,,,,,PUBMED,,,,"Ma S, 2026, Adv Med Educ Pract",0,"Ma S, 2026, Adv Med Educ Pract"
+41887615,NLM,MEDLINE,20260326,20260329,31,3,2026,Research Topics and Trends in MIMIC-IV: A Large ICU Database Relevant for Critical Care Nursing.,10.1111/nicc.70440 [doi];e70440,"BACKGROUND: The Medical Information Mart for Intensive Care-IV (MIMIC-IV) clinical database has become a central resource for data-driven critical care research, enabling advances in clinical informatics, machine learning and nursing science. Despite its rapid uptake, no prior study has provided a transparent, methodologically grounded, bibliometrics-based overview of MIMIC-IV-related research output. AIM: This paper aims to map the major research themes associated with the MIMIC-IV database (2021-2024) and to evaluate their relevance to critical care nursing research and practice. STUDY DESIGN: A study of 1150 publications retrieved from the Web of Science Core Collection (SCI-Expanded). Explicit search strategies, front-page filtering and publication counts were used to identify and analyse keyword-based research themes. RESULTS: Keyword analyses identified mortality prediction, sepsis, acute kidney injury, intensive care workflows and machine learning as dominant research areas, many of which are directly relevant to nursing-sensitive outcomes and bedside clinical decision-making. CONCLUSIONS: This review provides the first focused mapping of research themes within MIMIC-IV publications. These findings clarify the thematic landscape of current MIMIC-IV-based research and underscore topics of particular importance to critical care nursing. RELEVANCE TO CLINICAL PRACTICE: MIMIC-IV supports the generation of evidence on essential nursing concerns. Recognising global research patterns enables nurses, clinicians and informatics teams to identify emerging tools, prioritise data-driven competencies and translate large-scale analytics into improved ICU care and patient outcomes.",(c) 2026 The Author(s). Nursing in Critical Care published by John Wiley & Sons Ltd on behalf of British Association of Critical Care Nurses.,"Ho, Yuh-Shan;Ben Salem, Ahmed;Kchaou, Mahdi;Dere, Abdulhameed;Mzid, Yosra;Turki, Houcemeddine",Ho YS;Ben Salem A;Kchaou M;Dere A;Mzid Y;Turki H,"CT HO Trend, Taipei City, Taiwan.;Department of Radiology, Habib Bourguiba University Hospital, University of Sfax, Sfax, Tunisia.;University of Sfax, Sfax, Tunisia.;College of Health Sciences, University of Ilorin, Ilorin, Nigeria.;Department of Radiology, Habib Bourguiba University Hospital, University of Sfax, Sfax, Tunisia.;University of Sfax, Sfax, Tunisia.",eng,Journal Article;Review,,England,Nurs Crit Care,Nursing in critical care,9808649,IM,"Humans;*Critical Care Nursing/trends;*Intensive Care Units;*Databases, Factual;*Nursing Research;*Critical Care;Machine Learning",NOTNLM,MIMIC-IV;Web of Science Core Collection;biomedical informatics;clinical database;research topics,The authors declare no conflicts of interest.,2026/03/27 01:10,2026/03/27 01:11,2026/03/26 20:32,2026/02/18 00:00 [revised];2025/12/03 00:00 [received];2026/02/23 00:00 [accepted];2026/03/27 01:11 [medline];2026/03/27 01:10 [pubmed];2026/03/26 20:32 [entrez];2026/03/27 00:00 [pmc-release],10.1111/nicc.70440,ppublish,e70440,ORCID: 0000-0002-2557-8736;ORCID: 0009-0005-6820-8347;ORCID: 0009-0004-1495-1066;ORCID: 0000-0002-2656-538X;ORCID: 0000-0002-1125-866X;ORCID: 0000-0003-3492-2014,PMC13021324,2026/03/27,,,,,,,,PUBMED,,,,"Ho YS, 2026, Nurs Crit Care",0,"Ho YS, 2026, Nurs Crit Care"
+41878747,NLM,PubMed-not-MEDLINE,20260325,20260325,19,,2026,Systems Biology and Multi-Omics in Asthma and COPD: A Systematic Review of Computational Approaches (2010-2024).,10.2147/JAA.S575312 [doi];575312,"Systems biology approaches have contributed to advancing our understanding of complex respiratory diseases including asthma and chronic obstructive pulmonary disease (COPD). This systematic review evaluates the application of systems biology methodologies in respiratory medicine, focusing on multi-omics data integration and computational techniques for biomarker discovery and mechanistic understanding. Following PRISMA 2020 guidelines, we conducted a comprehensive literature search across Web of Science and Scopus databases, identifying 117 peer-reviewed documents published from 2010 to 2024. The review methodology employed bibliometric analysis combined with qualitative synthesis of included studies. Results demonstrate steady growth in systems biology applications for asthma and COPD research, with publication rates increasing by approximately 0.5 articles per year (R(2) = 0.73, p < 0.001). Bibliometric analysis identified five major research clusters: systems biology as a foundational methodological framework (Basic Theme), COPD-focused research as the most developed area (Motor Theme), gene expression analysis, disease classification approaches, and specialized lung disease investigations (Niche Theme). Multi-omics integration studies achieved 82-91% accuracy in disease classification tasks, with transcriptomics-based asthma endotyping validated in over 1500 patients across multiple cohorts. Network analysis approaches identified hub genes (IL-6, TNF-alpha, MMP9) replicated across three independent studies. Machine learning applications demonstrated 80-90% accuracy for diagnostic and prognostic tasks, though external validation remains limited, with only 15% of reviewed studies including independent validation cohorts. Significant challenges persist in data integration, computational reproducibility, and clinical translation. Most studies employed modest sample sizes (median n=89), and population diversity was limited, with 89% conducted in European-ancestry populations. This review provides a comprehensive assessment of systems biology progress in respiratory medicine, identifies methodological gaps, and highlights the need for standardized protocols, larger collaborative studies, and rigorous external validation to advance clinical implementation of systems biology findings in asthma and COPD management.",(c) 2026 Alahmari.,"Alahmari, Mushabbab A",Alahmari MA,"Department of Respiratory Therapy, College of Applied Medical Sciences, University of Bisha, Bisha, Saudi Arabia.",eng,Journal Article;Review,20260319,New Zealand,J Asthma Allergy,Journal of asthma and allergy,101543450,,,NOTNLM,computational modelling;multi-omics integration;personalized medicine;respiratory diseases;systems biology,The author reports no conflicts of interest in this work.,2026/03/25 07:09,2026/03/25 07:10,2026/03/25 04:34,2025/10/18 00:00 [received];2026/02/17 00:00 [accepted];2026/03/25 07:10 [medline];2026/03/25 07:09 [pubmed];2026/03/25 04:34 [entrez];2026/03/19 00:00 [pmc-release],10.2147/JAA.S575312,epublish,575312,ORCID: 0000-0003-3381-509X,PMC13007689,2026/03/19,,,,,,,,PUBMED,,,,"Alahmari MA, 2026, J Asthma Allergy",0,"Alahmari MA, 2026, J Asthma Allergy"
+41878369,NLM,MEDLINE,20260325,20260507,37,4,2025,Predicting public health impact: Linking ResearchGate presence to Scopus performance through machine learning.,10.4314/mmj.v37i4.10 [doi],"BACKGROUND: ResearchGate as a main scientific social medium and Scopus as a known citation database have main role in sharing research output among specialists in different disciplines. OBJECTIVE: This study aimed to evaluate the performances of Iranian researchers in occupational health field and correlate some related variables. It also used regression analysis as one of machine learning approaches for predicting researchers' scientific performance. METHODS: This descriptive cross-sectional study was conducted in 2024 on ResearchGate and Scopus indicators of Iranian researchers in the Occupational Health Engineering affiliated in Iranian universities (n=213). Data were extracted from ResearchGate and Scopus and the researches' demographic information was collected from Iranian Scientometrics Information Database in medicine. RESULTS: 149 researchers (70%) were active in ResearchGate. 144 researchers (96.6%) had RG scores with the mean rate of 11.70. in ResearchGate, they shared total 4,275 research items with the mean rate of 28.89 items per researcher. With total 24,235 citations, the mean rate of citations per paper was 169.48. Of them,143 (95.9%) had ResearchGate h-indexes with the mean rate of 5.38. In Scopus, 198 researchers (93%) had total 2,935 published documents in the database with mean rate of 14.82 documents per researcher. 186 researchers (87.3%) had total 18,749 citations with the mean rate of 100.80 citations and mean h-index amounted to 4.41. Researchers with more shared documents in ResearchGate had better performance in Scopus. Linear regression analysis showed that the researchers' presence in ResearchGate can predict their citation counts (R2=.82, beta=.911, p=.000) and h-indexes (R2=.83, beta=.900, p<.001) in Scopus. CONCLUSION: Iranian researchers in the Occupational Health Engineering field fairly use the capacities of ResearchGate for influencing their research output. However, their interactions in social media tools should be encouraged for more reach and influence of their scientific productions.",(c) 2025 Kamuzu University of Health Sciences.,"Rahmani, Ramin;Mokhtari, Heidar;Doulani, Abbas;Saberi, Mohammad Karim",Rahmani R;Mokhtari H;Doulani A;Saberi MK,"Occupational Health Engineering, School of Public Health, Hamadan University of Medical Sciences, Hamadan, Iran.;Department of Knowledge and Information Science, Payame Noor University, Tehran, Iran.;Information Science Department, faculty of Education and Psychology, Alzahra University, Tehran, Iran.;Department of Nursing, Shirvan Faculty of Nursing, North Khorasan University of Medical Sciences, Bojnurd, Iran.",eng,"Journal Article;Research Support, Non-U.S. Gov't",20260129,Malawi,Malawi Med J,Malawi medical journal : the journal of Medical Association of Malawi,9500170,IM,"Humans;Cross-Sectional Studies;Iran;*Machine Learning;*Public Health;*Bibliometrics;*Research Personnel/statistics & numerical data;*Biomedical Research;*Social Media;*Occupational Health;Databases, Factual",NOTNLM,Iran;Occupational Health Engineering;Research Evaluation;ResearchGate;Scopus,The authors declare that there is no conflict of interest.,2026/03/25 07:09,2026/03/25 07:10,2026/03/25 04:30,2026/03/25 07:10 [medline];2026/03/25 07:09 [pubmed];2026/03/25 04:30 [entrez];2026/01/29 00:00 [pmc-release],10.4314/mmj.v37i4.10,epublish,262,,PMC12976444,2026/01/29,"1400011024/Vice-chancellor for Research and Technology, Hamadan University of Medical Sciences/",,,,,,,PUBMED,,,268,"Rahmani R, 2025, Malawi Med J",0,"Rahmani R, 2025, Malawi Med J"
+41874063,NLM,PubMed-not-MEDLINE,20260324,20260326,16,2,2026,Artificial Intelligence and Machine Learning in Audiology and Hearing Disorders: A Scoping Review with Bibliometric and Thematic Mapping (1995-2025).,10.3390/audiolres16020029 [doi];29,"Background and Objectives: Artificial intelligence (AI) and machine learning (ML) are increasingly integrated into audiology, supporting diagnosis, screening, rehabilitation, and digital health. Despite rapid growth, the literature remains methodologically and clinically heterogeneous, limiting a consolidated view of research trajectories and translational readiness. This scoping review examined the evolution of AI and ML applications in audiology and hearing disorders, focusing on thematic development, research productivity, collaboration patterns, and clinical orientation. Methods: A scoping review was conducted using the Web of Science Core Collection (Science Citation Index Expanded). Original and review articles published between 1995 and 2025 were included. Bibliometric and thematic mapping were applied to analyze publication trends, citation patterns, keyword evolution, and collaboration networks. A structured translational categorization assessed clinical domains and validation maturity. Findings reflect the Web of Science-indexed segment of the literature. Results: A total of 127 publications were analyzed. Research output increased markedly after 2020, with an estimated doubling time of approximately 2.1 years. China, the United States, and South Korea contributed the highest publication volumes, although citation impact did not consistently parallel productivity. Thematic analyses revealed a shift toward AI-driven methodological frameworks, particularly in machine learning, deep learning, and cochlear implant-related applications. Most studies remain at proof-of-concept or internally validated stages, with limited external validation. Emerging areas include tele-audiology and personalized hearing aid optimization. Conclusions: AI and ML research in audiology is increasingly application-oriented; however, broader external validation and prospective implementation are required to support routine clinical integration.",,"Aksoy Kocak, Ceren",Aksoy Kocak C,"Department of Otorhinolaryngology-Head and Neck Surgery, Konya City Hospital, University of Health Sciences, Konya 42090, Turkiye.",eng,Journal Article;Review,20260224,Switzerland,Audiol Res,Audiology research,101644681,,,NOTNLM,artificial intelligence;audiology;bibliometric analysis;hearing disorders;machine learning;scoping review,The author declares no conflicts of interest.,2026/03/24 12:36,2026/03/24 12:37,2026/03/24 09:05,2026/01/08 00:00 [received];2026/02/06 00:00 [revised];2026/02/18 00:00 [accepted];2026/03/24 12:37 [medline];2026/03/24 12:36 [pubmed];2026/03/24 09:05 [entrez];2026/02/24 00:00 [pmc-release],10.3390/audiolres16020029,epublish,,ORCID: 0000-0001-6780-8766,PMC13010648,2026/02/24,,,,,,,,PUBMED,,,,"Aksoy Kocak C, 2026, Audiol Res",0,"Aksoy Kocak C, 2026, Audiol Res"
+41870695,NLM,MEDLINE,20260323,20260614,384,2,2026,AI and Robotics Advancement in Analytical Mineral Characterization and Mining Processes: A Review and Research Trends Analysis.,10.1007/s41061-026-00541-3 [doi];10,"The mining sector is undergoing a major transformation, as it moves shifting from traditional, labor-intensive methods to adopting digital technologies within the framework of Industry 4.0. Machine learning (ML), artificial intelligence (AI), and robotics are emerging as key innovative tools to improve safety, operational efficiency, and sustainability across the entire mining value-chain, from exploration and mineral processing to mineral characterization and environmental management. The integration of AI and ML with spectroscopic techniques has revolutionized the mining industry by enhancing efficiency, accuracy, throughput, and operational performance. This review discusses recent advances in AI, ML, and robotics applications in mining processes and mineral characterization. It explores the influence and highlights the integration of ML tools such as ANN, PCA, k-NN, and SVM with advanced analytical chemistry techniques, including XRF, XRD, SEM-EDX, LIBS, ICP-OES, ICP-MS, LA-ICP-MS, and HSI for mineral identification. Additionally, a bibliometric analysis using Scopus publications over the past 20 years provides insights into research trends and hotspots, providing recent insights into publication patterns and research. The review further offers an overview of recent technological developments, economic benefits, policy implication changes, and future directions, while emphasizing gaps related to the standardization of prospects for mining, demonstrating substantial growth in the integration of AI-driven analytical technologies within the analytical chemistry characterization of minerals, while also highlighting gaps related to the standardization of technologies.",(c) 2026. The Author(s).,"Mkhohlakali, Andile;Toona, Mothwethwi Priscilla;Mogashane, Tumelo;Rampfumedzi, Tshilidzi;Madzivha, Portia;Letsoalo, Mokgehle R;Ntsasa, Napo;Sehata, James;Mukwevho, Nehemiah;Ncedo, Thembakazi;Mabowa, Mothepane Happy;Tshilongo, James",Mkhohlakali A;Toona MP;Mogashane T;Rampfumedzi T;Madzivha P;Letsoalo MR;Ntsasa N;Sehata J;Mukwevho N;Ncedo T;Mabowa MH;Tshilongo J,"Analytical Chemistry Division, Mintek, Randburg, 2194, South Africa. Andilem@mintek.co.za.;Analytical Chemistry Division, Mintek, Randburg, 2194, South Africa.;Analytical Chemistry Division, Mintek, Randburg, 2194, South Africa.;Analytical Chemistry Division, Mintek, Randburg, 2194, South Africa.;School of Chemistry, University of the Witwatersrand, Johannesburg, 20250, South Africa.;Analytical Chemistry Division, Mintek, Randburg, 2194, South Africa.;Analytical Chemistry Division, Mintek, Randburg, 2194, South Africa.;Analytical Chemistry Division, Mintek, Randburg, 2194, South Africa.;Analytical Chemistry Division, Mintek, Randburg, 2194, South Africa.;Analytical Chemistry Division, Mintek, Randburg, 2194, South Africa.;School of Chemistry, University of the Witwatersrand, Johannesburg, 20250, South Africa.;Analytical Chemistry Division, Mintek, Randburg, 2194, South Africa.;School of Chemistry, University of the Witwatersrand, Johannesburg, 20250, South Africa.;Analytical Chemistry Division, Mintek, Randburg, 2194, South Africa.;Analytical Chemistry Division, Mintek, Randburg, 2194, South Africa.;School of Chemistry, University of the Witwatersrand, Johannesburg, 20250, South Africa.",eng,Journal Article;Review,20260323,Switzerland,Top Curr Chem (Cham),Topics in current chemistry (Cham),101691301,IM,*Minerals/analysis/chemistry;*Artificial Intelligence;*Robotics;*Mining;Machine Learning,NOTNLM,AI machine learning tools;Analytical mineral characterization;Bibliometric analysis;GIS remote sensing;Mining processes,Declarations. Conflict of interest: The authors declare no competing interests.,2026/03/23 19:54,2026/03/23 19:55,2026/03/23 12:18,2025/08/19 00:00 [received];2026/02/21 00:00 [accepted];2026/03/23 19:55 [medline];2026/03/23 19:54 [pubmed];2026/03/23 12:18 [entrez];2026/03/23 00:00 [pmc-release],10.1007/s41061-026-00541-3,epublish,,,PMC13009105,2026/03/23,Science Vote grant number: ASR-00002533/Mintek/,,0 (Minerals),,,,,PUBMED,,,,"Mkhohlakali A, 2026, Top Curr Chem (Cham)",0,"Mkhohlakali A, 2026, Top Curr Chem (Cham)"
+41864777,NLM,MEDLINE,20260525,20260525,27,3,2026,Application of Artificial Intelligence in Chronic Pain: Bibliometric Analysis.,S1524-9042(26)00018-4 [pii];10.1016/j.pmn.2026.01.016 [doi],"BACKGROUND: In recent years, artificial intelligence (AI) has demonstrated great potential in the field of managing chronic pain (CP). AI can optimize treatment decisions, improve the quality of life of patients with CP, and promote the rational allocation of medical resources. However, the existing studies are mostly scattered, lack systematic integration and analysis, and have not yet constructed a knowledge map reflecting the whole picture of the research. OBJECTIVES: This study aims to apply bibliometric analysis methods to explore the current research status and hotspots in the intersection of AI and CP, providing valuable insights for researchers in this field. METHODS: In this study, the Web of Science Core Collection was used as the data source, and the search time limit was from the establishment of the database to October 2025. The search scope included the Science Citation Index Expanded (SCI-EXPANDED), Current Chemical Reactions (CCR-EXPANDED), and Index Chemicus (IC). VOSviewer software was used to conduct a visual analysis of the cooperation networks among countries, institutions, journals, and authors, as well as the co-occurrence relationships of keywords. Furthermore, the CiteSpace tool was adopted to identify burst keywords to reveal the latest research trends. RESULTS: A total of 356 studies related to AI and CP were ultimately included for analysis after a systematic screening of records retrieved from the Web of Science Core Collection. These studies originated from 882 institutions across 54 countries and regions, were published in 190 journals, and involved 2,207 authors. The number of publications increased rapidly between 2018 and 2025. The United States ranked first in both the number of publications and total citations. At the institutional level, Harvard University was the most productive institution. In terms of journal distribution, the journal Pain published the largest number of documents and received the highest total number of citations. The keyword co-occurrence network revealed four major research clusters: CP, machine learning, low back pain, and prediction. Recent trend analysis revealed that prediction, neural networks, pain management, and neck pain have emerged as key research areas in the application of AI to CP. CONCLUSIONS: Although significant progress has been made in the application of AI in CP management, there are still some key challenges, including a lack of cooperation among countries and institutions, limited adaptability and stability of AI models in clinical scenarios, as well as data privacy and security. Future research should actively promote international cooperation and facilitate the interdisciplinary integration and practical application of AI technology on a global scale. Moreover, researchers should focus on enhancing the reproducibility and scientific rigor of their studies to ensure their wide applicability and practical effectiveness in clinical practice.",Copyright (c) 2026. Published by Elsevier Inc.,"Hu, Ziping;Wei, Junfan;Yu, Jingxian;Guo, Yuqin;Xiong, Yuanfang;Pan, Mingxia;Peng, Huan;Li, Na;Liu, Hanjiao",Hu Z;Wei J;Yu J;Guo Y;Xiong Y;Pan M;Peng H;Li N;Liu H,"Shenzhen Clinical College of Integrated Chinese and Western Medicine, Guangzhou University of Chinese Medicine, Shenzhen, China.;The Seventh Clinical Medical College of Guangzhou University of Chinese Medicine, Shenzhen, China.;Shenzhen Clinical College of Integrated Chinese and Western Medicine, Guangzhou University of Chinese Medicine, Shenzhen, China.;Shenzhen Clinical College of Integrated Chinese and Western Medicine, Guangzhou University of Chinese Medicine, Shenzhen, China.;School of Nursing, Fujian University of Traditional Chinese Medicine, Fuzhou, China.;School of Nursing, Fujian University of Traditional Chinese Medicine, Fuzhou, China.;School of Nursing, Fujian University of Traditional Chinese Medicine, Fuzhou, China.;School of Nursing, Fujian University of Traditional Chinese Medicine, Fuzhou, China.;Shenzhen Clinical College of Integrated Chinese and Western Medicine, Guangzhou University of Chinese Medicine, Shenzhen, China. Electronic address: liuhanjiao000@163.com.",eng,Journal Article;Review,20260320,United States,Pain Manag Nurs,Pain management nursing : official journal of the American Society of Pain Management Nurses,100890606,IM,*Artificial Intelligence/trends/standards;*Bibliometrics;Humans;*Chronic Pain/therapy;Pain Management/methods,NOTNLM,Artificial intelligence;Bibliometric analysis;Chronic pain;CiteSpace;VOSviewer,"Declaration of competing interest The authors affirm that no financial or commercial affiliations were involved in this work, which could have impacted the impartiality and objectivity of the findings. All authors have read and approved the manuscript for publication.",2026/03/22 06:06,2026/05/25 06:31,2026/03/21 22:52,2025/07/13 00:00 [received];2026/01/06 00:00 [revised];2026/01/31 00:00 [accepted];2026/05/25 06:31 [medline];2026/03/22 06:06 [pubmed];2026/03/21 22:52 [entrez],10.1016/j.pmn.2026.01.016,ppublish,228,,,,,,,,,,,PUBMED,,,238,"Hu Z, 2026, Pain Manag Nurs",0,"Hu Z, 2026, Pain Manag Nurs"
+41853188,NLM,PubMed-not-MEDLINE,20260319,20260319,4,2,2026,Early Implications for Solid Organ Transplantation With the Use of Artificial Intelligence From a Bibliometric Perspective.,10.1016/j.mcpdig.2026.100340 [doi];100340,"Artificial intelligence (AI) is increasingly transforming health care, particularly in solid organ transplantation, where it addresses complex challenges such as organ allocation, graft rejection prediction, and immunosuppressive management. This bibliometric analysis evaluated the scientific impact and evolution of AI applications in kidney, liver, heart, and lung transplantation. A comprehensive search across PubMed, Scopus, and Web of Science identified 2384 publications from 1989 to 2025, of which 815 met inclusion criteria after double-blind screening with Rayyan AI. Coauthorship, keyword co-occurrence, and collaboration networks were analyzed using VOSviewer and Bibliometrix. The United States led in publications, citations, and collaboration strength, with Mayo Clinic emerging as the most productive institution, followed by China. Machine learning, expert systems, and deep learning were the most frequently applied AI techniques, whereas kidney and liver transplantation were the most extensively studied. Thematic clusters included rejection prediction, patient survival, organ allocation, postoperative monitoring, and immunosuppression personalization. Artificial intelligence-driven models integrate clinical, immunological, histological, and imaging data to enhance predictive accuracy, support clinical decision making, and improve graft and patient outcomes. Although many of these models remain under validation, early findings indicate strong potential to optimize patient care and surgical outcomes. This study highlights global research trends and emphasizes the need for interdisciplinary collaboration to develop context-specific AI tools. Moreover, promoting bibliometric literacy among health care professionals may strengthen evidence-based research and accelerate the responsible integration of AI into transplant medicine.",(c) 2026 The Authors.,"Marquez Cabral, Aliza Naomi;Martinez-Zamora, Carlos Alejandro;Padilla Solis, Oscar Abraham Jose;Lee, Angel;Rossano Garcia, Alejandro",Marquez Cabral AN;Martinez-Zamora CA;Padilla Solis OAJ;Lee A;Rossano Garcia A,"Social Service, Grupo Medico Rossano, Universidad del Valle de Mexico, Ciudad de Mexico, Mexico.;Hospital Angeles Acoxpa, Ciudad de Mexico, Mexico.;Saint Luke, School of Medicine, Ciudad de Mexico, Mexico.;Universidad de Guanajuato, Guanajuato, Mexico.;Hospital Angeles del Pedregal, Ciudad de Mexico, Mexico.;Transplant and Hepatopancreatobiliar Surgeon, Grupo Medico Rossano, Hospital Angeles Pedregal, Ciudad de Mexico, Mexico.",eng,Journal Article;Review,20260130,Netherlands,Mayo Clin Proc Digit Health,Mayo Clinic proceedings. Digital health,9918662584506676,,,,,The authors report no competing interests.,2026/03/19 07:10,2026/03/19 07:11,2026/03/19 05:02,2025/09/02 00:00 [received];2025/12/03 00:00 [revised];2026/01/08 00:00 [accepted];2026/03/19 07:11 [medline];2026/03/19 07:10 [pubmed];2026/03/19 05:02 [entrez];2026/01/30 00:00 [pmc-release],10.1016/j.mcpdig.2026.100340,epublish,100340,,PMC12992093,2026/01/30,,,,,,,,PUBMED,,,,"Marquez Cabral AN, 2026, Mayo Clin Proc Digit Health",0,"Marquez Cabral AN, 2026, Mayo Clin Proc Digit Health"
+41825244,NLM,MEDLINE,20260411,20260411,359,,2026,Magnetic resonance imaging study of major depressive disorder: a 28-year scientometric and visual analysis.,S0925-4927(26)00059-4 [pii];10.1016/j.pscychresns.2026.112194 [doi],"Neuroimaging, particularly magnetic resonance imaging (MRI), has become a cornerstone in elucidating the neural underpinnings of Major Depressive Disorder (MDD). As the volume of related literature grows rapidly, a systematic, quantitative overview of the field's development, intellectual structure, and emerging trends is essential. This study conducted a scientometric and visual analysis of MRI research on MDD over the past 28 years (1997-2025) using data extracted from the Web of Science Core Collection. A total of 3269 publications were analyzed with CiteSpace and VOSviewer to map collaboration networks, thematic evolution, and research fronts. The results show a steady increase in annual output, particularly after 2006, driven by advances in 3T MRI and the pursuit of objective biomarkers. The United States and China are the most productive countries, while Harvard University and the University of California System lead institutional contributions. Co-citation and keyword analyses reveal a paradigm shift from localized structural/functional deficits toward network-based perspectives, alongside methodological evolution toward multimodal integration, dynamic analyses, and machine learning. Current research fronts focus on suicidal ideation, treatment prediction, and neuromodulation. This study provides a macroscopic overview of the field's trajectory, highlighting key contributors, thematic transitions, and future challenges in translating neuroimaging findings into clinical practice.",Copyright (c) 2026 The Author(s). Published by Elsevier B.V. All rights reserved.,"Xu, Zhouyang;Wu, Jiang;Wang, Min;Dong, Mengjun;He, Yuanzhou",Xu Z;Wu J;Wang M;Dong M;He Y,"Department of Psychiatry and Neuroscience, Wuhan Rongjun Youfu Hospital, Wuhan 430030, China.;Department of Psychiatry and Neuroscience, Wuhan Rongjun Youfu Hospital, Wuhan 430030, China.;Department of Psychiatry and Neuroscience, Wuhan Rongjun Youfu Hospital, Wuhan 430030, China.;Department of Psychiatry and Neuroscience, Wuhan Rongjun Youfu Hospital, Wuhan 430030, China.;Department of Respiratory and Critical Care Medicine, Department of Internal Medicine, Tongji Hospital, Tongji Medical College, Huazhong University of Science and Technology, Wuhan 430030, China. Electronic address: yuanzhouhe84@163.com.",eng,Journal Article;Review,20260308,Netherlands,Psychiatry Res Neuroimaging,Psychiatry research. Neuroimaging,101723001,IM,Humans;*Major Depressive Disorder/diagnostic imaging;*Magnetic Resonance Imaging;*Neuroimaging;*Bibliometrics,NOTNLM,Functional Connectivity;Magnetic Resonance Imaging;Major Depressive Disorder;Neuroimaging Biomarkers;Scientometrics,Declaration of competing interest The authors declare that they have no conflicts of interest concerning this article.,2026/03/14 00:31,2026/04/12 04:37,2026/03/13 19:08,2025/11/03 00:00 [received];2026/01/27 00:00 [revised];2026/03/02 00:00 [accepted];2026/04/12 04:37 [medline];2026/03/14 00:31 [pubmed];2026/03/13 19:08 [entrez],10.1016/j.pscychresns.2026.112194,ppublish,112194,,,,,,,,,,,PUBMED,,,,"Xu Z, 2026, Psychiatry Res Neuroimaging",0,"Xu Z, 2026, Psychiatry Res Neuroimaging"
+41816375,NLM,PubMed-not-MEDLINE,20260312,20260312,18,2,2026,Decades of omics in lung cancer research: a bibliometric analysis and visualization from 2004 to 2024.,10.21037/jtd-2025-aw-2245 [doi];143,"BACKGROUND: Omics, encompassing genomics, transcriptomics, proteomics and metabolomics, plays a pivotal role in elucidating the molecular mechanisms underlying lung cancer and advancing precision oncology. While existing studies have primarily focused on the technical development and clinical efficacy of omics applications in cancer, there remains a notable gap in comprehensive assessments of the global research landscape. At different stages of lung cancer initiation, progression, and metastasis, genomics and transcriptomics predominantly reveal oncogenic alterations and dysregulated signaling networks, whereas proteomics and metabolomics capture functional protein dynamics and metabolic reprogramming that drive tumor growth and metastatic adaptation. Importantly, the integration of multi-omics data enables a systematic understanding of the crosstalk between genetic alterations, transcriptional regulation, protein expression, and metabolic remodeling throughout lung cancer evolution. This bibliometric analysis study aims to systematically evaluate scientific output, research trends and hotspots in omics-related lung cancer research. METHODS: Relevant publications were retrieved from the Web of Science Core Collection (WoSCC) from January 1, 2004 to April 27, 2024. Bibliometric analyses and knowledge domain visualizations were conducted using VOSviewer (v1.6.20), CiteSpace (v6.3), R (v4.3.3), and Origin (2024). RESULTS: A total of 19,087 publications were included, demonstrating sustained growth over two decades [2004-2024]. China contributed the largest volume of publications, whereas the USA showed higher citation impact and stronger influence in collaboration networks. Keyword co-occurrence and burst analyses illustrated that ""expression"", ""lung cancer"", ""gene expression"", ""tumor microenvironment"", ""mutation"" and ""immunotherapy"" are dominant and emerging themes. These findings indicate a clear shift from single-omics approaches and gene-centric investigations toward integrative multi-omics frameworks, with increasing emphasis on the tumor microenvironment (TME) and immunotherapy. The burst analysis of keywords also highlights the rising prominence of artificial intelligence (AI) and machine learning (ML), which have emerged as rapidly growing methodological backbones in recent years. CONCLUSIONS: Research on omics in lung cancer has rapidly evolved toward integrative, TME-focused and immunotherapy-oriented paradigms, with AI/ML serving as an enabling analytical infrastructure. This study underscores the critical role that omics in facilitating early detection, guiding personalized therapeutic strategies, and improving prognostic accuracy. The findings suggest that enhancing cross-disciplinary collaboration and accelerating the clinical translation of multi-omics data may help overcome current challenges in precision oncology.",(c) AME Publishing Company.,"Wang, Xinmeng;Dong, Huijing;Zheng, Yumin;Li, Jia;Xu, Tao;Gu, Yuqi;Cui, Huijuan",Wang X;Dong H;Zheng Y;Li J;Xu T;Gu Y;Cui H,"Beijing University of Chinese Medicine, Beijing, China.;Beijing University of Chinese Medicine, Beijing, China.;Beijing University of Chinese Medicine, Beijing, China.;Beijing University of Chinese Medicine, Beijing, China.;Beijing University of Chinese Medicine, Beijing, China.;Beijing University of Chinese Medicine, Beijing, China.;Department of Integrative Oncology, China-Japan Friendship Hospital, Beijing, China.",eng,Journal Article,20260226,China,J Thorac Dis,Journal of thoracic disease,101533916,,,NOTNLM,Omics;bibliometric analysis;cancer;genomics;lung cancer,Conflicts of Interest: All authors have completed the ICMJE uniform disclosure form (available at https://jtd.amegroups.com/article/view/10.21037/jtd-2025-aw-2245/coif). The authors have no conflicts of interest to declare.,2026/03/12 07:04,2026/03/12 07:05,2026/03/12 05:17,2025/10/31 00:00 [received];2026/01/15 00:00 [accepted];2026/03/12 07:05 [medline];2026/03/12 07:04 [pubmed];2026/03/12 05:17 [entrez];2026/02/28 00:00 [pmc-release],10.21037/jtd-2025-aw-2245,ppublish,143,,PMC12972914,2026/02/28,,,,,,,,PUBMED,,,,"Wang X, 2026, J Thorac Dis",0,"Wang X, 2026, J Thorac Dis"
+41788608,NLM,PubMed-not-MEDLINE,20260306,20260306,9,,2026,Formal methods for safety-critical machine learning: a systematic literature review.,10.3389/frai.2026.1749956 [doi];1749956,"INTRODUCTION: The integration of Machine Learning (ML) systems into safety-critical domains heightens the need for rigorous safety guarantees. Traditional testing-based verification techniques are insufficient for fully capturing the complex, data-driven, and non-deterministic behaviors of modern ML models. Therefore, applying formal methods-which provide rigorous mathematical guarantees of a system's adherence to specified properties-to ML systems has been of particular interest in recent years. METHODS: This work presents a comprehensive Systematic Literature Review of peer-reviewed research from 2020 to mid-2025 on the use of formal methods to enhance ML safety, specifically for safety-critical applications. Articles selected present empirical research applying formal methods to modern machine learning approaches. Application domains as well as gaps, limitations, and challenges in this research area are compiled and presented. RESULTS: Following a structured protocol, 46 studies were identified across four major digital libraries and classified into eight categories: Reachability and Over-Approximation Techniques, SMT-based Verification and Abstraction/Refinement, MILP/ILP Approaches, Model Checking Approaches, Runtime Verification Approaches, Shielding Techniques, Control Barrier Function Methods, and Risk Verification Methods. The review synthesizes methodological advances, application areas, and comparative strengths over traditional verification, while also presenting bibliometric trends in the literature. DISCUSSION: Analysis reveals persistent challenges and gaps, including scalability to large and complex models, integration with training processes, and limited real-world validation. Future research opportunities include developing integrated training-verification loops, scalable verification frameworks, hybrid formal methods, and novel techniques for emerging ML paradigms such as Large Language Models. This work serves both as a state-of-the-art reference and as a roadmap for advancing the safe deployment of ML systems.",Copyright (c) 2026 Newcomb and Ochoa.,"Newcomb, Alexandra;Ochoa, Omar",Newcomb A;Ochoa O,"Department of Electrical Engineering and Computer Science, Embry-Riddle Aeronautical University, Daytona Beach, FL, United States.;Department of Electrical Engineering and Computer Science, Embry-Riddle Aeronautical University, Daytona Beach, FL, United States.",eng,Journal Article;Systematic Review,20260218,Switzerland,Front Artif Intell,Frontiers in artificial intelligence,101770551,,,NOTNLM,formal methods;machine learning;safe autonomy;safety-critical systems;software verification,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/03/06 09:08,2026/03/06 09:09,2026/03/06 04:48,2025/11/19 00:00 [received];2026/01/22 00:00 [revised];2026/01/28 00:00 [accepted];2026/03/06 09:09 [medline];2026/03/06 09:08 [pubmed];2026/03/06 04:48 [entrez];2026/02/18 00:00 [pmc-release],10.3389/frai.2026.1749956,epublish,1749956,,PMC12956799,2026/02/18,,,,,,,,PUBMED,,,,"Newcomb A, 2026, Front Artif Intell",0,"Newcomb A, 2026, Front Artif Intell"
+41775903,NLM,Publisher,,20260303,,,2026,Exploring AI in radiology: a bibliometric study tailored to a research path.,10.1007/s00117-026-01579-6 [doi],"Radiology has been profoundly transformed by artificial intelligence (AI) over the past decade, enabling automated detection, enhanced diagnostic accuracy, and more personalized patient care. In this study, we performed a bibliometric analysis of the scientific literature on AI in radiology from 2010, aiming to map research trends, identify influential authors and institutions, and uncover emerging thematic areas. Our results show a rapid growth of publications since 2016, with the United States, China, and Germany leading in output. Journals such as the European Journal of Radiology, Academic Radiology, and Clinical Radiology have been the most productive, while keyword analysis revealed emerging topics including explainable AI, multimodal imaging, and AI-assisted clinical decision-making. Collaborative networks among countries and institutions have expanded, reflecting increasing international cooperation. This bibliometric overview highlights the evolving landscape of AI in radiology and provides insights to guide future research and clinical integration.","(c) 2026. The Author(s), under exclusive licence to Springer Medizin Verlag GmbH, ein Teil von Springer Nature.","Gouri, Ikram;Dehbi, Rachid;Dehbi, Amine;Batouta, Zouhair Ibn",Gouri I;Dehbi R;Dehbi A;Batouta Z,"LIDSI Laboratory, Faculty of Sciences Ain Chock, Hassan II University, Casablanca, Morocco. gouriikrame@gmail.com.;LIDSI Laboratory, Faculty of Sciences Ain Chock, Hassan II University, Casablanca, Morocco.;LTI Laboratory, Faculty of Sciences Ben M'Sick, Hassan II University, Casablanca, Morocco.;High School of Technology-Dakhla, Ibn Zohr University, Dakhla, Morocco.",eng,Journal Article,20260303,Germany,Radiologie (Heidelb),"Radiologie (Heidelberg, Germany)",9918384887306676,IM,,NOTNLM,Deep learning;Diagnostic accuracy;Machine learning;Medical imaging;Research trends,"Declarations. Conflict of interest: I. Gouri, R. Dehbi, A. Dehbi and Z.I. Batouta declare that they have no competing interests. For this article no studies with human participants or animals were performed by any of the authors. All studies mentioned were in accordance with the ethical standards indicated in each case. The supplement containing this article is not sponsored by industry.",2026/03/04 01:17,2026/03/04 01:17,2026/03/03 23:22,2025/07/08 00:00 [received];2026/01/29 00:00 [accepted];2026/03/04 01:17 [medline];2026/03/04 01:17 [pubmed];2026/03/03 23:22 [entrez],10.1007/s00117-026-01579-6,aheadofprint,,,,,,,,,,,Untersuchung von KI in der Radiologie: eine auf Forschungswege zugeschnittene bibliometrische Analyse.,PUBMED,,,,"Gouri I, 2026, Radiologie (Heidelb)",0,"Gouri I, 2026, Radiologie (Heidelb)"
+41775013,NLM,MEDLINE,20260613,20260613,76,3,2026,Mapping Artificial Intelligence Research in Oral and Maxillofacial Surgery: A Bibliometric Analysis.,S0020-6539(26)00052-3 [pii];10.1016/j.identj.2026.109456 [doi];109456,"INTRODUCTION AND AIMS: Oral and maxillofacial surgery (OMFS) produces complex clinical data, while artificial intelligence (AI) applications in this field remain limited despite great potential. This study aimed to map the current status, hotspots, and emerging trends of AI in OMFS. METHODS: Publications on AI and OMFS before January 10, 2025, were retrieved from the Web of Science Core Collection and Scopus. Data were analysed using CiteSpace and Carrot(2) to construct co-citation networks, perform structural variation analysis, and generate a decade-long term co-occurrence network. RESULTS: A total of 5267 articles were included. The co-citation network showed a research base dominated by AI-driven medical image analysis, with a shift from traditional machine learning to deep learning and transformer models. Carrot(2) clustering highlighted transfer learning and emerging applications in prognostic modeling for head and neck cancer. Structural variation analysis emphasised radiomics and pathology imaging as pivotal domains, while term co-occurrence networks revealed broad applications in radiomics, head and neck cancer, pathway analysis, maxillofacial surgery, and, more recently, orthognathic surgery. CONCLUSION: AI research in OMFS is currently centered on medical image analysis, particularly radiomics and pathology imaging. Methodological advances have shifted toward deep learning and transformer-based approaches, with ChatGPT as a representative model. Non-imaging applications, including pathway and prognostic analyses, represent promising directions for future integration of AI into OMFS. CLINICAL RELEVANCE: AI applications, particularly imaging-driven models and transformer-based architectures, offer practical tools for diagnosis, surgical planning, and prognostic assessment in OMFS. Transfer learning enables effective adaptation of AI models to institution-specific datasets, facilitating personalised patient management. By highlighting emerging opportunities in pathway analysis and outcome prediction, this study informs clinicians of actionable AI strategies, supporting evidence-based integration into routine practice and guiding the adoption of novel computational approaches for improved patient care.",Copyright (c) 2026 The Authors. Published by Elsevier Inc. All rights reserved.,"Huang, Yingzhao;Wang, Yuhong;Hou, Chen;Song, Fan;Jiang, Yaoqi;Chen, Kunyi;Hou, Jinsong",Huang Y;Wang Y;Hou C;Song F;Jiang Y;Chen K;Hou J,"Department of Oral and Maxillofacial Surgery, Guanghua School of Stomatology, Hospital of Stomatology, Sun Yat-sen University, Guangzhou, Guangdong, China.;Department of Oral and Maxillofacial Surgery, Guanghua School of Stomatology, Hospital of Stomatology, Sun Yat-sen University, Guangzhou, Guangdong, China.;Department of Oral and Maxillofacial Surgery, Guanghua School of Stomatology, Hospital of Stomatology, Sun Yat-sen University, Guangzhou, Guangdong, China.;Department of Oral and Maxillofacial Surgery, Guanghua School of Stomatology, Hospital of Stomatology, Sun Yat-sen University, Guangzhou, Guangdong, China.;Department of Oral and Maxillofacial Surgery, Guanghua School of Stomatology, Hospital of Stomatology, Sun Yat-sen University, Guangzhou, Guangdong, China.;Department of Oral and Maxillofacial Surgery, Guanghua School of Stomatology, Hospital of Stomatology, Sun Yat-sen University, Guangzhou, Guangdong, China.;Department of Oral and Maxillofacial Surgery, Guanghua School of Stomatology, Hospital of Stomatology, Sun Yat-sen University, Guangzhou, Guangdong, China. Electronic address: houjs@mail.sysu.edu.cn.",eng,Journal Article,20260303,England,Int Dent J,International dental journal,0374714,IM,"*Artificial Intelligence;Humans;*Bibliometrics;*Surgery, Oral;Deep Learning;Radiomics",NOTNLM,Artificial intelligence;Bibliometrics;Image interpretation;Maxillofacial surgery;Oral surgery,Conflict of interest None disclosed.,2026/03/04 01:17,2026/05/05 06:32,2026/03/03 18:02,2025/10/05 00:00 [received];2026/01/27 00:00 [revised];2026/01/31 00:00 [accepted];2026/05/05 06:32 [medline];2026/03/04 01:17 [pubmed];2026/03/03 18:02 [entrez];2026/03/03 00:00 [pmc-release],10.1016/j.identj.2026.109456,ppublish,109456,,PMC12969292,2026/03/03,,,,,,,,PUBMED,,,,"Huang Y, 2026, Int Dent J",0,"Huang Y, 2026, Int Dent J"
+41767874,NLM,PubMed-not-MEDLINE,20260302,20260302,12,,2026,Global research landscape and emerging trends in the application of artificial intelligence in depression: A bibliometric analysis.,10.1177/20552076261427866 [doi];20552076261427866,"BACKGROUND: Depression has emerged as a significant public health concern in modern society, while conventional medical approaches exhibit notable limitations in its diagnosis and treatment. With the rapid advancement of technologies such as large-scale artificial intelligence (AI) models, the application of AI to drive research and innovation in mental health-and to further its translational implementation in clinical practice-has garnered increasing attention. OBJECTIVE: Focusing on the intersection of AI and depression, this bibliometric study aims to reveal key themes and developmental trajectories within this domain. METHODS: A bibliometric analysis was performed on publications retrieved from the Web of Science Core Collection. Utilizing the Bibliometrix package, CiteSpace, and VOSviewer, we quantified publication output, collaboration networks, and key research themes. The analysis encompassed English-language articles published between 2011 and 2024. RESULTS: A total of 1361 publications met the inclusion criteria. Since 2011, the annual number of publications on AI in depression has demonstrated a steady upward trajectory, entering a phase of accelerated growth after 2020. The peak annual output exceeded 300 articles. Analysis of geographical and institutional contributions identified China and the United States as the leading countries, with Lanzhou University being the most productive institution. The most prolific authors were Bin Hu, Xiaowei Li, and Raymond W. Lam, while R.C. Kessler emerged as the most cocited author. Keywords such as ""machine learning,"" ""deep learning,"" and ""feature extraction"" showed a marked increase in frequency, reflecting the field's evolving technical focus. Furthermore, the development of international collaborations underscores the increasingly globalized nature of research in this domain. CONCLUSION: This study presents the latest comprehensive bibliometric analysis results of AI in the field of depression, clarifying current research hotspots and directions, and providing important resources for clinicians and researchers.",(c) The Author(s) 2026.,"Tian, Yanyan;Wang, Shumin;Li, Guiyan;Deng, Jie;Yang, Dongdong;Fang, Yu",Tian Y;Wang S;Li G;Deng J;Yang D;Fang Y,"School of Clinical Medicine, Chengdu University of Traditional Chinese Medicine, Chengdu, Sichuan, China. RINGGOLD: 118385;Hospital of Chengdu University of Traditional Chinese Medicine, Chengdu, Sichuan, China. RINGGOLD: 118385;Hospital of Chengdu University of Traditional Chinese Medicine, Chengdu, Sichuan, China. RINGGOLD: 118385;Hospital of Chengdu University of Traditional Chinese Medicine, Chengdu, Sichuan, China. RINGGOLD: 118385;Hospital of Chengdu University of Traditional Chinese Medicine, Chengdu, Sichuan, China. RINGGOLD: 118385;Hospital of Chengdu University of Traditional Chinese Medicine, Chengdu, Sichuan, China. RINGGOLD: 118385",eng,Journal Article,20260226,United States,Digit Health,Digital health,101690863,,,NOTNLM,Depression;artificial intelligence;bibliometric analysis;deep learning;machine learning,,2026/03/02 13:16,2026/03/02 13:17,2026/03/02 06:35,2025/07/29 00:00 [received];2026/02/10 00:00 [accepted];2026/03/02 13:17 [medline];2026/03/02 13:16 [pubmed];2026/03/02 06:35 [entrez];2026/02/26 00:00 [pmc-release],10.1177/20552076261427866,epublish,20552076261427866,ORCID: 0009-0008-1425-7321;ORCID: 0009-0008-0730-2278,PMC12949316,2026/02/26,,,,,,,,PUBMED,,,,"Tian Y, 2026, Digit Health",0,"Tian Y, 2026, Digit Health"
+41767867,NLM,PubMed-not-MEDLINE,20260302,20260302,12,,2026,Mapping knowledge landscapes and emerging trends in artificial intelligence in glioblastoma: A bibliometric analysis.,10.1177/20552076261428356 [doi];20552076261428356,"BACKGROUND: Glioblastoma, a highly aggressive and complex brain tumor, poses significant challenges in diagnosis and treatment. This bibliometric analysis aims to explore the trends and key players in artificial intelligence (AI)-driven glioblastoma research over the past two decades using the Web of Science core database. METHODS: This bibliometric analysis utilized the Web of Science Core Collection to identify English-language articles (n = 1487) published between 2004 and 2024, focusing on AI applications in glioblastoma. Data extraction and preliminary statistics were performed using Microsoft Excel. Subsequently, CiteSpace and VOSviewer were employed for in-depth analysis and visualization of research trends, collaboration networks, keyword cooccurrence, and emerging hotspots. RESULTS: The results reveal a remarkable upward trend in research output, particularly after 2015, reflecting the growing interest in leveraging AI to address the complexities of glioblastoma. The United States and China were identified as the dominant contributors, with the University of Pennsylvania and Harvard Medical School emerging as key institutions. The analysis also identifies prominent authors such as Bakas Spyridon and highlights the pivotal role of journals like Neuro-Oncology and Cancers in disseminating cutting-edge research. Keyword analysis pinpointed ""transfer learning"" and ""radiogenomics"" as emerging frontiers, alongside established foci on machine/deep learning for imaging analysis and imaging biomarker development. CONCLUSIONS: This comprehensive bibliometric study first delineates the evolving intellectual structure of AI in glioblastoma. It identifies the pivotal shift from methodological development to clinical translation and highlights radiogenomics as a key convergent frontier, providing a foundational map for future research prioritization.",(c) The Author(s) 2026.,"Wang, Pei;Liu, Wen;Zhou, Cong",Wang P;Liu W;Zhou C,"Department of Radiation Oncology, Cancer Institute, The First Affiliated Hospital, and College of Clinical Medicine of Henan University of Science and Technology, Luoyang, China.;Department of Thyroid Surgery, Clinical Research Center for Thyroid Disease of Yunnan Province, The First Affiliated Hospital of Kunming Medical University, Kunming, China. RINGGOLD: 36657;School of Mental Health, Jining Medical University, Jining, China. RINGGOLD: 74496;Department of Psychology, Affiliated Hospital of Jining Medical University, Jining, China. RINGGOLD: 562122;Center for Evidence-Based Medicine, Jining Medical University, Jining, China. RINGGOLD: 74496;Jining Key Laboratory of AI-Assisted Diagnosis and Treatment of Mental Disorders, Jining, China.",eng,Journal Article,20260226,United States,Digit Health,Digital health,101690863,,,NOTNLM,Glioblastoma;artificial intelligence;bibliometric;research trends;visualization,"The authors declared no potential conflicts of interest with respect to the research, authorship, and/or publication of this article.",2026/03/02 13:17,2026/03/02 13:18,2026/03/02 06:35,2025/07/25 00:00 [received];2026/02/12 00:00 [accepted];2026/03/02 13:18 [medline];2026/03/02 13:17 [pubmed];2026/03/02 06:35 [entrez];2026/02/26 00:00 [pmc-release],10.1177/20552076261428356,epublish,20552076261428356,ORCID: 0000-0003-3368-654X,PMC12949315,2026/02/26,,,,,,,,PUBMED,,,,"Wang P, 2026, Digit Health",0,"Wang P, 2026, Digit Health"
+41766945,NLM,PubMed-not-MEDLINE,20260302,20260302,9,,2026,Threats and vulnerabilities in artificial intelligence and agentic AI models.,10.3389/frai.2026.1731566 [doi];1731566,"INTRODUCTION: Adversarial robustness in artificial intelligence is commonly defined in terms of input-level perturbations applied to static models. This study reconceptualises adversarial vulnerability for artificial and agentic AI systems by extending the threat model to autonomy, self-governance, and closed-loop decision-making, where behaviour unfolds dynamically through feedback and control. METHODS: We develop a system-level analytical framework that formalises adversarial risk across perceptual, cognitive, and executive layers. The analysis is grounded in a PRISMA-compliant systematic literature review, bibliometric mapping, and targeted empirical validation. Established adversarial results from vision benchmarks and recent large-language-model red-teaming studies are synthesised to contextualise the framework, rather than to introduce new benchmark performance claims. RESULTS: The results demonstrate that no single defence mechanism provides robustness across all layers of agentic AI systems. Adversarial vulnerabilities propagate from perception to policy and actuation, with architectural similarity, domain shift, and feedback dynamics critically shaping transferability and failure modes. These effects have direct implications for safety-critical applications, including autonomous mobility, healthcare imaging, and biometric security. DISCUSSION: By framing higher-order agentic adversarial threats as hypothesis-driven, system-level risks, this work shifts adversarial AI security from benchmark-centric evaluation to behavioural integrity and lifecycle resilience. The proposed framework defines a coherent research agenda for agentic AI security that integrates control-theoretic reasoning and governance-aware defence design, addressing limitations of classical adversarial machine-learning theory.","Copyright (c) 2026 Radanliev, Santos and Maple.","Radanliev, Petar;Santos, Omar;Maple, Carsten",Radanliev P;Santos O;Maple C,"Department of Computer Sciences, University of Oxford, Oxford, United Kingdom.;The Alan Turing Institute, British Library, London, United Kingdom.;Cisco Systems, RTP, Morrisville, NC, United States.;The Alan Turing Institute, British Library, London, United Kingdom.;University of Warwick - WMG, Coventry, United Kingdom.",eng,Journal Article,20260213,Switzerland,Front Artif Intell,Frontiers in artificial intelligence,101770551,,,NOTNLM,Carlini and Wagner attack (C&W);Fast Gradient Sign Method (FGSM);advanced attack techniques;adversarial attacks;artificial intelligence;blackbox attacks;defense mechanisms;machine learning,"Author OS was employed by Cisco Systems, RTP. 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/03/02 13:17,2026/03/02 13:18,2026/03/02 06:26,2025/10/24 00:00 [received];2025/12/26 00:00 [revised];2026/01/07 00:00 [accepted];2026/03/02 13:18 [medline];2026/03/02 13:17 [pubmed];2026/03/02 06:26 [entrez];2026/02/13 00:00 [pmc-release],10.3389/frai.2026.1731566,epublish,1731566,,PMC12947123,2026/02/13,,,,,,,,PUBMED,,,,"Radanliev P, 2026, Front Artif Intell",0,"Radanliev P, 2026, Front Artif Intell"
+41756608,NLM,PubMed-not-MEDLINE,20260227,20260227,12,,2026,Application of artificial intelligence in obesity management: Bibliometric analysis.,10.1177/20552076261425500 [doi];20552076261425500,"BACKGROUND: Obesity is the leading preventable cause of death worldwide. In recent years, artificial intelligence (AI) has shown the potential in the prevention, diagnosis, and management of obesity. OBJECTIVE: This study employ bibliometric analysis methods to systematically review applications within this field, identify key research hotspots, and provide novel insights for future research. METHODS: The Web of Science Core Collection database was employed as the source. All relevant publications were searched from the database's inception to June 2025. VOSviewer was used to analyze co-occurrence networks among countries, institutions, authors, and keywords. CiteSpace was utilized for keyword burst analysis and to detect emerging research fields, while the Bibliometrix R package was applied to identify influential papers, institutions, and authors. RESULTS: A total of 420 publications were included, which were affiliated with 806 institutions in 42 countries. These publications were authored by 2589 individuals and published in 122 journals. The United States had the highest number of publications and citations. Harvard University produced the greatest volume of papers. El Chaar, M. was the most influential author. Obesity Surgery published the most articles, while Journal of Medical Internet Research was cited most frequently. Based on keyword cluster analysis, this study identified three major research themes within the field of obesity management: telemedicine, machine learning applications, and perioperative management. CONCLUSION: This study provides a comprehensive bibliometric analysis of AI in obesity management. Future research should focus on conducting multi-center, long-term, randomized controlled trials, obtaining high-quality longitudinal data, and formulating reasonable reimbursement policies and data security regulations to enhance the generalizability, effectiveness, and safety of AI applications. These findings are crucial for addressing the global burden of obesity.",(c) The Author(s) 2026.,"Hu, Ziping;Wei, Junfan;Guo, Yuqin;Pan, Mingxia;Peng, Huan;Xiong, Yuanfang;Liu, Hanjiao",Hu Z;Wei J;Guo Y;Pan M;Peng H;Xiong Y;Liu H,"Shenzhen Clinical College of Integrated Chinese and Western Medicine, Guangzhou University of Chinese Medicine, ShenZhen, China. RINGGOLD: 47879;Department of Nursing, The Seventh Clinical Medical College of Guangzhou University of Chinese Medicine, Shenzhen, China. RINGGOLD: 47879;Shenzhen Clinical College of Integrated Chinese and Western Medicine, Guangzhou University of Chinese Medicine, ShenZhen, China. RINGGOLD: 47879;School of Nursing, Fujian University of Traditional Chinese Medicine, Fuzhou, China. RINGGOLD: 47858;School of Nursing, Fujian University of Traditional Chinese Medicine, Fuzhou, China. RINGGOLD: 47858;School of Nursing, Fujian University of Traditional Chinese Medicine, Fuzhou, China. RINGGOLD: 47858;Shenzhen Clinical College of Integrated Chinese and Western Medicine, Guangzhou University of Chinese Medicine, ShenZhen, China. RINGGOLD: 47879;Department of Nursing, Shenzhen Hospital of Integrated Traditional Chinese and Western Medicine, Shenzhen, China. RINGGOLD: 679801",eng,Journal Article;Review,20260224,United States,Digit Health,Digital health,101690863,,,NOTNLM,Artificial intelligence;CiteSpace;VOSviewer;bibliometrics;obesity management,"The authors declared no potential conflicts of interest with respect to the research, authorship, and/or publication of this article.",2026/02/27 06:31,2026/02/27 06:32,2026/02/27 05:01,2025/10/18 00:00 [received];2026/02/02 00:00 [accepted];2026/02/27 06:32 [medline];2026/02/27 06:31 [pubmed];2026/02/27 05:01 [entrez];2026/02/24 00:00 [pmc-release],10.1177/20552076261425500,epublish,20552076261425500,ORCID: 0009-0005-5378-7622,PMC12932902,2026/02/24,,,,,,,,PUBMED,,,,"Hu Z, 2026, Digit Health",0,"Hu Z, 2026, Digit Health"
+41738620,NLM,Publisher,,20260425,112,4,2026,Research trends of tumor-associated macrophages in colorectal cancer: a bibliometric analysis.,10.1097/JS9.0000000000004422 [doi],"BACKGROUND: Colorectal cancer (CRC) represents the third most prevalent malignancy worldwide and accounts for the second-highest cancer-related mortality rate. Accumulating evidence over the past decade has established the pivotal role of tumor-associated macrophages (TAMs) in CRC tumorigenesis and disease progression. This study employs bibliometric analysis to delineate the research landscape and emerging frontiers in CRC TAMs investigation. METHODS: We systematically retrieved publications indexed in the Web of Science Core Collection from database inception through 14 April 2025, applying predefined inclusion and exclusion criteria. Using VOSviewer and CiteSpace, we conducted comprehensive visual analyses of the CRC TAMs research domain, including country contributions, institutional productivity, annual publication trends, and journal distributions. RESULTS: Our bibliometric analysis identified 2861 publications on CRC TAMs worldwide, with a consistent upward publication trend since 2018. Geospatial analysis revealed that China and the United States are the predominant contributing nations, with Sun Yat-sen University being the most productive institution. Keyword co-occurrence mapping identified five predominant research clusters: CRC biology, TAMs characterization, patient survival outcomes, disease progression mechanisms, and metastatic processes. Four key research directions emerged: (1) single-cell RNA sequencing for TAMs heterogeneity analysis, (2) PD-1/PD-L1 checkpoint interactions with TAMs, (3) molecular mechanisms underlying macrophage polarization, and (4) chemotherapeutic modulation of TAMs functionality (particularly irinotecan). These advances provide mechanistic insights into CRC TAMs biology and may facilitate (1) the discovery of novel diagnostic biomarkers, (2) precision therapeutic strategies, and (3) personalized prognostic frameworks. CONCLUSION: Bibliometric analysis has highlighted the global landscape of research on CRC TAMs. Future research directions in CRC TAMs are likely to center on the integration of multi-omics, in-depth investigation of the tumor microenvironment, targeting TAMs, application of machine learning and artificial intelligence, and the development of personalized treatment strategies for CRC.","Copyright (c) 2026 The Author(s). Published by Wolters Kluwer Health, Inc.","Long, Yuxin;Wang, Xiangxu;Chao, Xiaoting;Yang, Yue;Jin, Shou;Zhang, Hongmei",Long Y;Wang X;Chao X;Yang Y;Jin S;Zhang H,"The Second Clinical Medical College, Shanxi University of Chinese Medicine, Xianyang, China.;Department of Clinical Oncology, Xijing Hospital, Air Force Military Medical University, Xi'an, China.;Department of Clinical Oncology, Xijing Hospital, Air Force Military Medical University, Xi'an, China.;Department of Clinical Oncology, Xijing Hospital, Air Force Military Medical University, Xi'an, China.;Department of Clinical Oncology, Xijing Hospital, Air Force Military Medical University, Xi'an, China.;Department of Clinical Oncology, Xijing Hospital, Air Force Military Medical University, Xi'an, China.;Department of Clinical Oncology, Xijing Hospital, Air Force Military Medical University, Xi'an, China.",eng,Journal Article,20260225,United States,Int J Surg,"International journal of surgery (London, England)",101228232,IM,,NOTNLM,CRC;TAMs;bibliometric;future trend;research topic,The authors declare that the research was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest.,2026/02/25 13:36,2026/02/25 13:36,2026/02/25 08:24,2025/07/28 00:00 [received];2025/11/07 00:00 [accepted];2026/02/25 13:36 [medline];2026/02/25 13:36 [pubmed];2026/02/25 08:24 [entrez];2026/04/23 00:00 [pmc-release],10.1097/JS9.0000000000004422,aheadofprint,10206,ORCID: 0000-0002-3991-3750,PMC13105662,2026/04/23,,,,,,,,PUBMED,,,17,"Long Y, 2026, Int J Surg",0,"Long Y, 2026, Int J Surg"
+41732181,NLM,PubMed-not-MEDLINE,20260224,20260224,12,,2026,Quantitative analysis of studies that use artificial intelligence on spinal diseases: A bibliometric analysis.,10.1177/20552076261415846 [doi];20552076261415846,"OBJECTIVE: This study aimed to evaluate the current research progress and future research directions of artificial intelligence in spinal diseases through a bibliometric analysis. METHODS: Publications regarding spinal diseases and artificial intelligence published from 2006 to 2025 were extracted from the Web of Science Core Collection (WOSCC). Subsequently, a bibliometric analysis of these publications was conducted using CiteSpace, VOSviewer, and Bibliometrix Online Analysis Platform. RESULTS: A total of 734 papers were included in the study. The annual publication numbers are on the rise. The USA (267 papers) and Beijing Jishuitan Hospital (24 papers) were identified as the most productive country and institution, respectively. Tian, Wei (25 papers) is the most productive author. ""Spine"" (49 publications) is the most productive journal. ""Machine Learning"" was the most cited keyword, with high-frequency keywords such as ""Artificial Intelligence,"" ""Robotic Surgery,"" ""Deep learning,"" ""Virtual Reality,"" and ""predictive modeling"" signaling hot topics in this field. CONCLUSIONS: There are increasingly many papers on artificial intelligence in spinal diseases. However, cooperation between institutions in various countries needs to be strengthened. In addition, this study summarized the research focus of artificial intelligence in spinal disorders as accurate diagnosis, robot-assisted surgery, and prognosis prediction, providing researchers with future research directions.",(c) The Author(s) 2026.,"Liu, Fengyuan;Li, Chunyun;Liu, Yong;Li, Yufei",Liu F;Li C;Liu Y;Li Y,"Department of Clinical Medicine, Hunan Normal University Health Science Center, Changsha, Hunan, China. RINGGOLD: 12568;Department of Surgery, Department of Clinical Medicine, Hunan Normal University Health Science Center, Changsha, Hunan, China. RINGGOLD: 12568;Department of Surgery, Department of Clinical Medicine, Hunan Normal University Health Science Center, Changsha, Hunan, China. RINGGOLD: 12568;Department of Surgery, Department of Clinical Medicine, Hunan Normal University Health Science Center, Changsha, Hunan, China. RINGGOLD: 12568",eng,Journal Article,20260219,United States,Digit Health,Digital health,101690863,,,NOTNLM,Artificial intelligence;VOSviewer;bibliometrics;citeSpace;spinal diseases,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/02/24 13:00,2026/02/24 13:01,2026/02/24 04:14,2025/08/11 00:00 [received];2025/12/31 00:00 [accepted];2026/02/24 13:01 [medline];2026/02/24 13:00 [pubmed];2026/02/24 04:14 [entrez];2026/02/19 00:00 [pmc-release],10.1177/20552076261415846,epublish,20552076261415846,ORCID: 0009-0003-6210-1229,PMC12924999,2026/02/19,,,,,,,,PUBMED,,,,"Liu F, 2026, Digit Health",0,"Liu F, 2026, Digit Health"
+41729424,NLM,PubMed-not-MEDLINE,20260327,20260330,17,1,2026,Bibliometric analysis of bone metastasis from prostate cancer research from 2007 to 2024.,10.1007/s12672-026-04719-5 [doi];502,"BACKGROUND: Prostate cancer (PCa) is one of the most common cancer in men worldwide, while numerous scientific achievements have been made in research on Bone metastasis in prostate cancer (BMPCa) in recent years, a comprehensive and objective bibliometric analysis remains absent. This study aimed to elucidate the overall literature distribution and international frontier research direction of BMPCa. METHODS: A comprehensive bibliometric analysis was conducted on relevant literature on BMPCa extracted from the Web of Science database from 2007 to 2024 by Microsoft Office Excel, Biblioshiny, Scimago Graphica, VOSviewer and CiteSpace. 5512 papers related to BMPCa were extracted from the Web of Science Core Collection (WoSCC). The number of publications, countries, institutions, global collaborations, authors, journals, keywords, thematic trends, and cited references were then visualized. Finally, the research status and development direction were analyzed. RESULTS: This study included a total of 5512 papers on BMPCa from 2007 to 2024. There has been a steady increase in global publications ever year, peaking in 2021,and the overall publication shows a linear growth trend. USA had the highest number of publications and collaborative efforts, followed by China, England. The University of Texas MD Anderson Cancer Center published the most articles with 173, followed by University of Michigan with 120 and Memorial Sloan Kettering Cancer Center with 114. Prostate had the highest number of publications. The top three high-frequency keywords of occurrence were ""prostate cancer"", ""bone metastasis"" and ""bone metastases"", biblioshiny analysis of keywords shows that ""arificial intelligence"", ""machine learning"", and ""ga-68""may represent the frontiers of this research area. CONCLUSION: The results showed that a linear growth trend in the number of publications, and the United States has made significant contributions to BMPCa both in quantity and in collaboration. International cooperation in BMPCa research needs to be further strengthened. We hope that more researchers and organizations can promote academic exchanges and strengthen cooperation to continue addressing the gaps of BMPCa. Further research should focus on the pathogenesis, early prevention, and the integration of individualized treatment with artificial intelligence, in order to improve patient survival and quality of life.",(c) 2026. The Author(s).,"He, Yin;Zhang, Jing;Gong, Kai;Li, Zhilin",He Y;Zhang J;Gong K;Li Z,"Department of Orthopedics, Guang Yuan Central Hospital, No. 16 Jingxiangzi, Lizhou District, Guangyuan, 628000, Sichuan, China.;Department of Orthopedics, Guang Yuan Central Hospital, No. 16 Jingxiangzi, Lizhou District, Guangyuan, 628000, Sichuan, China.;Department of Orthopedics, Chengdu Medical College, Chengdu, 611730, Sichuan, China.;Department of Orthopedics, Guang Yuan Central Hospital, No. 16 Jingxiangzi, Lizhou District, Guangyuan, 628000, Sichuan, China. 53939414@qq.com.",eng,Journal Article,20260223,United States,Discov Oncol,Discover oncology,101775142,,,NOTNLM,Bibliometric analysis;Bone metastasis;Prostate cancer;Research trends;Visualization,Declarations. Ethics approval and consent to participate: Not applicable. Consent for publication: Not applicable. Competing interests: The authors declare no competing interests.,2026/02/23 13:06,2026/02/23 13:07,2026/02/23 11:20,2025/11/26 00:00 [received];2026/02/18 00:00 [accepted];2026/02/23 13:07 [medline];2026/02/23 13:06 [pubmed];2026/02/23 11:20 [entrez];2026/02/23 00:00 [pmc-release],10.1007/s12672-026-04719-5,epublish,,,PMC13031449,2026/02/23,2024SAT17/Sichuan Medical Association Orthopedics Special Research Project/;CYZYB24-22/Chengdu Medical University Science and Technology Foundation/,,,,,,,PUBMED,,,,"He Y, 2026, Discov Oncol",0,"He Y, 2026, Discov Oncol"
diff --git a/data/outputs/scopus_bib_standardized.csv b/data/outputs/scopus_bib_standardized.csv
new file mode 100644
index 000000000..73896accc
--- /dev/null
+++ b/data/outputs/scopus_bib_standardized.csv
@@ -0,0 +1,993 @@
+PY,VL,UT,TI,BP,IS,ID,SO,DI,date,AU,AB,ENTRYTYPE,TC,PU,booktitle,AF,C1,CR,DE,DT,LA,RP,JI,EP,PMID,DB,SR,SN,SR_FULL
+2024,35,https://app.dimensions.ai/details/publication/pub.1156462083,Distribution Matching for Machine Teaching,12316,9,,IEEE Transactions on Neural Networks and Learning Systems,10.1109/tnnls.2023.3256412,2024-09-03,"Cao, Xiaofeng;Tsang, Ivor W.","Machine teaching is an inverse problem of machine learning that aims at steering the student toward its target hypothesis, in which the teacher has already known the student's learning parameters. Previous studies on machine teaching focused on balancing the teaching risk and cost to find the best teaching examples deriving from the student model. This optimization solver is in general ineffective when the student does not disclose any cue of the learning parameters. To supervise such a teaching scenario, this article presents a distribution matching-based machine teaching strategy via iteratively shrinking the teaching cost in a smooth surrogate, which eliminates boundary perturbations from the version space. Technically, our strategy could be redefined as a cost-controlled optimization process that finds the optimal teaching examples without further exploring the parameter distribution of the student. Then, given any limited teaching cost, the training examples would have a closed-form expression. Theoretical analysis and experiment results demonstrate the effectiveness of this strategy.",article,0,,,"Cao, Xiaofeng;Tsang, Ivor W.",,,,,,,IEEE Transactions on Neural Networks and Learning Systems,12329,,SCOPUS,"Cao Xiaofeng, 2024, IEEE Transactions on Neural Networks and Learning Systems",,"Cao Xiaofeng, 2024, IEEE Transactions on Neural Networks and Learning Systems"
+2024,35,https://app.dimensions.ai/details/publication/pub.1163689394,A Human–Machine Joint Learning Framework to Boost Endogenous BCI Training,17534,12,,IEEE Transactions on Neural Networks and Learning Systems,10.1109/tnnls.2023.3305621,2024-12-02,"Wang, Hanwen;Qi, Yu;Yao, Lin;Wang, Yueming;Farina, Dario;Pan, Gang","Brain-computer interfaces (BCIs) provide a direct pathway from the brain to external devices and have demonstrated great potential for assistive and rehabilitation technologies. Endogenous BCIs based on electroencephalogram (EEG) signals, such as motor imagery (MI) BCIs, can provide some level of control. However, mastering spontaneous BCI control requires the users to generate discriminative and stable brain signal patterns by imagery, which is challenging and is usually achieved over a very long training time (weeks/months). Here, we propose a human-machine joint learning framework to boost the learning process in endogenous BCIs, by guiding the user to generate brain signals toward an optimal distribution estimated by the decoder, given the historical brain signals of the user. To this end, we first model the human-machine joint learning process in a uniform formulation. Then a human-machine joint learning framework is proposed: 1) for the human side, we model the learning process in a sequential trial-and-error scenario and propose a novel ""copy/new"" feedback paradigm to help shape the signal generation of the subject toward the optimal distribution and 2) for the machine side, we propose a novel adaptive learning algorithm to learn an optimal signal distribution along with the subject's learning process. Specifically, the decoder reweighs the brain signals generated by the subject to focus more on ""good"" samples to cope with the learning process of the subject. Online and psuedo-online BCI experiments with 18 healthy subjects demonstrated the advantages of the proposed joint learning process over coadaptive approaches in both learning efficiency and effectiveness.",article,0,,,"Wang, Hanwen;Qi, Yu;Yao, Lin;Wang, Yueming;Farina, Dario;Pan, Gang",,,,,,,IEEE Transactions on Neural Networks and Learning Systems,17548,,SCOPUS,"Wang Hanwen, 2024, IEEE Transactions on Neural Networks and Learning Systems",,"Wang Hanwen, 2024, IEEE Transactions on Neural Networks and Learning Systems"
+2024,10,https://app.dimensions.ai/details/publication/pub.1167259409,Comparative performance of machine learning models for the classification of human gait,025003,2,,Biomedical Physics & Engineering Express,10.1088/2057-1976/ad17f9,2024-01-04,"Thakur, Divya;Lalwani, Praveen","The efficacy of human activity recognition (HAR) models mostly relies on the characteristics derived from domain expertise. The input of the classification algorithm consists of many characteristics that are utilized to accurately and effectively classify human physical activities. In contemporary research, machine learning techniques have been increasingly employed to automatically extract characteristics from unprocessed sensory input to develop models for Human Activity Recognition (HAR) and classify various activities. The primary objective of this research is to compare and contrast several machine learning models and determine a reliable and precise classification model for classifying activities. This study does a comparison analysis in order to assess the efficacy of 10 distinct machine learning models using frequently used datasets in the field of HAR. In this work, three benchmark public human walking datasets are being used. The research is conducted based on eight evaluating parameters. Based on the study conducted, it was seen that the machine learning classification models Random Forest, Extra Tree, and Light Gradient Boosting Machine had superior performance in all the eight evaluating parameters compared to specific datasets. Consequently, it can be inferred that machine learning significantly enhances performance within the area of Human Activity Recognition (HAR). This study can be utilized to provide suitable model selection for HAR-based datasets. Furthermore, this research can be utilized to facilitate the identification of various walking patterns for bipedal robotic systems.",article,0,,,"Thakur, Divya;Lalwani, Praveen",,,,,,,Biomedical Physics & Engineering Express,,,SCOPUS,"Thakur Divya, 2024, Biomedical Physics & Engineering Express",,"Thakur Divya, 2024, Biomedical Physics & Engineering Express"
+2024,40,https://app.dimensions.ai/details/publication/pub.1167519715,Breast cancer detection employing stacked ensemble model with convolutional features,155,2,,Cancer Biomarkers: Section A of Disease Markers,10.3233/cbm-230294,2024-07-01,"Karamti, Hanen;Alharthi, Raed;Umer, Muhammad;Shaiba, Hadil;Ishaq, Abid;Abuzinadah, Nihal;Alsubai, Shtwai;Ashraf, Imran","Breast cancer is a major cause of female deaths, especially in underdeveloped countries. It can be treated if diagnosed early and chances of survival are high if treated appropriately and timely. For timely and accurate automated diagnosis, machine learning approaches tend to show better results than traditional methods, however, accuracy lacks the desired level. This study proposes the use of an ensemble model to provide accurate detection of breast cancer. The proposed model uses the random forest and support vector classifier along with automatic feature extraction using an optimized convolutional neural network (CNN). Extensive experiments are performed using the original, as well as, CNN-based features to analyze the performance of the deployed models. Experimental results involving the use of the Wisconsin dataset reveal that CNN-based features provide better results than the original features. It is observed that the proposed model achieves an accuracy of 99.99% for breast cancer detection. Performance comparison with existing state-of-the-art models is also carried out showing the superior performance of the proposed model.",article,0,,,"Karamti, Hanen;Alharthi, Raed;Umer, Muhammad;Shaiba, Hadil;Ishaq, Abid;Abuzinadah, Nihal;Alsubai, Shtwai;Ashraf, Imran",,,,,,,Cancer Biomarkers: Section A of Disease Markers,170,,SCOPUS,"Karamti Hanen, 2024, Cancer Biomarkers: Section A of Disease Markers",,"Karamti Hanen, 2024, Cancer Biomarkers: Section A of Disease Markers"
+2024,17,https://app.dimensions.ai/details/publication/pub.1167573771,Artificial intelligence and machine learning in clinical pharmacological research,79,1,,Expert Review of Clinical Pharmacology,10.1080/17512433.2023.2294005,2024-01-02,"Mayer, Benjamin;Kringel, Dario;Lötsch, Jörn","BACKGROUND: Clinical pharmacology research has always involved computational analysis. With the abundance of drug-related data available, the integration of artificial intelligence (AI) and machine learning (ML) methods has emerged as a promising way to enhance clinical pharmacology research.
+METHODS: Based on an accepted definition of clinical pharmacology as a field of research dealing with all aspects of drug-human interactions, the analysis included publications from institutes specializing in clinical pharmacology. Research topics and the most used machine learning methods in clinical pharmacology were retrieved from the PubMed database and summarized.
+RESULTS: ML was identified in 674 publications attributed to clinical pharmacology research, with a significant increase in publication activity over the last decade. Notable research topics addressed by ML/AI included Covid-19-related clinical pharmacology research, clinical neuropharmacology, drug safety and risk assessment, clinical pharmacology related to cancer research, and antimicrobial and antiviral research unrelated to Covid-19. In terms of ML methods, neural networks, random forests, and support vector machines were frequently mentioned in the abstracts of the retrieved papers.
+CONCLUSIONS: ML, and AI in general, is increasingly being used in various research areas within clinical pharmacology. This report presents specific examples of applications and highlights the most used ML methods.",article,0,,,"Mayer, Benjamin;Kringel, Dario;Lötsch, Jörn",,,,,,,Expert Review of Clinical Pharmacology,91,,SCOPUS,"Mayer Benjamin, 2024, Expert Review of Clinical Pharmacology",,"Mayer Benjamin, 2024, Expert Review of Clinical Pharmacology"
+2024,19,https://app.dimensions.ai/details/publication/pub.1167582748,Improving prediction of cervical cancer using KNN imputer and multi-model ensemble learning,e0295632,1,,PLOS ONE,10.1371/journal.pone.0295632,2024-01-03,"Aljrees, Turki","Cervical cancer is a leading cause of women's mortality, emphasizing the need for early diagnosis and effective treatment. In line with the imperative of early intervention, the automated identification of cervical cancer has emerged as a promising avenue, leveraging machine learning techniques to enhance both the speed and accuracy of diagnosis. However, an inherent challenge in the development of these automated systems is the presence of missing values in the datasets commonly used for cervical cancer detection. Missing data can significantly impact the performance of machine learning models, potentially leading to inaccurate or unreliable results. This study addresses a critical challenge in automated cervical cancer identification-handling missing data in datasets. The study present a novel approach that combines three machine learning models into a stacked ensemble voting classifier, complemented by the use of a KNN Imputer to manage missing values. The proposed model achieves remarkable results with an accuracy of 0.9941, precision of 0.98, recall of 0.96, and an F1 score of 0.97. This study examines three distinct scenarios: one involving the deletion of missing values, another utilizing KNN imputation, and a third employing PCA for imputing missing values. This research has significant implications for the medical field, offering medical experts a powerful tool for more accurate cervical cancer therapy and enhancing the overall effectiveness of testing procedures. By addressing missing data challenges and achieving high accuracy, this work represents a valuable contribution to cervical cancer detection, ultimately aiming to reduce the impact of this disease on women's health and healthcare systems.",article,0,,,"Aljrees, Turki",,,,,,,PLOS ONE,,,SCOPUS,"Aljrees Turki, 2024, PLOS ONE",,"Aljrees Turki, 2024, PLOS ONE"
+2024,12,https://app.dimensions.ai/details/publication/pub.1167672964,Performance of machine learning models to forecast PM10 levels,102557,,,MethodsX,10.1016/j.mex.2024.102557,2024-01-05,"Mampitiya, Lakindu;Rathnayake, Namal;Hoshino, Yukinobu;Rathnayake, Upaka","Machine learning techniques have garnered considerable attention in modern technologies due to their promising outcomes across various domains. This paper presents the comprehensive methodology of an optimized and efficient forecasting approach for Particulate Matter 10, specifically tailored to predefined locations. The execution of a comparative analysis involving eight models enables the identification of the most suitable model that aligns with the primary research objective. Notably, the test results underscore the superior performance of an ensemble model, which integrates state-of-the-art methodologies, surpassing the performance of the other seven state-of-the-art models. Adopting a case-specific methodology with machine learning techniques contributes to achieving a notably high regression coefficient (R²≈1) across all models. Furthermore, the study underscores the potential for future endeavors in predicting location-specific environmental factors.•This study focused on forecasting PM10 with machine learning models with the consideration of air quality factors and meteorological factors•Ensemble model was developed for the forecasting purposes with higher performance.",article,0,,,"Mampitiya, Lakindu;Rathnayake, Namal;Hoshino, Yukinobu;Rathnayake, Upaka",,,,,,,MethodsX,,,SCOPUS,"Mampitiya Lakindu, 2024, MethodsX",,"Mampitiya Lakindu, 2024, MethodsX"
+2024,14,https://app.dimensions.ai/details/publication/pub.1167776185,Machine Learning-Based Predictive Models for Detection of Cardiovascular Diseases,144,2,,Diagnostics,10.3390/diagnostics14020144,2024-01-08,"Ogunpola, Adedayo;Saeed, Faisal;Basurra, Shadi;Albarrak, Abdullah M.;Qasem, Noman","Cardiovascular diseases present a significant global health challenge that emphasizes the critical need for developing accurate and more effective detection methods. Several studies have contributed valuable insights in this field, but it is still necessary to advance the predictive models and address the gaps in the existing detection approaches. For instance, some of the previous studies have not considered the challenge of imbalanced datasets, which can lead to biased predictions, especially when the datasets include minority classes. This study's primary focus is the early detection of heart diseases, particularly myocardial infarction, using machine learning techniques. It tackles the challenge of imbalanced datasets by conducting a comprehensive literature review to identify effective strategies. Seven machine learning and deep learning classifiers, including K-Nearest Neighbors, Support Vector Machine, Logistic Regression, Convolutional Neural Network, Gradient Boost, XGBoost, and Random Forest, were deployed to enhance the accuracy of heart disease predictions. The research explores different classifiers and their performance, providing valuable insights for developing robust prediction models for myocardial infarction. The study's outcomes emphasize the effectiveness of meticulously fine-tuning an XGBoost model for cardiovascular diseases. This optimization yields remarkable results: 98.50% accuracy, 99.14% precision, 98.29% recall, and a 98.71% F1 score. Such optimization significantly enhances the model's diagnostic accuracy for heart disease.",article,0,,,"Ogunpola, Adedayo;Saeed, Faisal;Basurra, Shadi;Albarrak, Abdullah M.;Qasem, Noman",,,,,,,Diagnostics,,,SCOPUS,"Ogunpola Adedayo, 2024, Diagnostics",,"Ogunpola Adedayo, 2024, Diagnostics"
+2024,15,https://app.dimensions.ai/details/publication/pub.1167784711,Towards provably efficient quantum algorithms for large-scale machine-learning models,434,1,,Nature Communications,10.1038/s41467-023-43957-x,2024-01-10,"Liu, Junyu;Liu, Minzhao;Liu, Jin-Peng;Ye, Ziyu;Wang, Yunfei;Alexeev, Yuri;Eisert, Jens;Jiang, Liang","Large machine learning models are revolutionary technologies of artificial intelligence whose bottlenecks include huge computational expenses, power, and time used both in the pre-training and fine-tuning process. In this work, we show that fault-tolerant quantum computing could possibly provide provably efficient resolutions for generic (stochastic) gradient descent algorithms, scaling as O(T2×polylog(n))$$\mathcalO(T^2\times m̊polylog(n))$$, where n is the size of the models and T is the number of iterations in the training, as long as the models are both sufficiently dissipative and sparse, with small learning rates. Based on earlier efficient quantum algorithms for dissipative differential equations, we find and prove that similar algorithms work for (stochastic) gradient descent, the primary algorithm for machine learning. In practice, we benchmark instances of large machine learning models from 7 million to 103 million parameters. We find that, in the context of sparse training, a quantum enhancement is possible at the early stage of learning after model pruning, motivating a sparse parameter download and re-upload scheme. Our work shows solidly that fault-tolerant quantum algorithms could potentially contribute to most state-of-the-art, large-scale machine-learning problems.",article,0,,,"Liu, Junyu;Liu, Minzhao;Liu, Jin-Peng;Ye, Ziyu;Wang, Yunfei;Alexeev, Yuri;Eisert, Jens;Jiang, Liang",,,,,,,Nature Communications,,,SCOPUS,"Liu Junyu, 2024, Nature Communications",,"Liu Junyu, 2024, Nature Communications"
+2024,14,https://app.dimensions.ai/details/publication/pub.1167794840,Can human-machine feedback in a smart learning environment enhance learners’ learning performance? A meta-analysis,1288503,,,Frontiers in Psychology,10.3389/fpsyg.2023.1288503,2024-01-10,"Liao, Mengyi;Zhu, Kaige;Wang, Guangshuai","Objective: The human-machine feedback in a smart learning environment can influences learners' learning styles, ability enhancement, and affective interactions. However, whether it has stability in improving learning performance and learning processes, the findings of many empirical studies are controversial. This study aimed to analyze the effect of human-machine feedback on learning performance and the potential boundary conditions that produce the effect in a smart learning environment.
+Methods: Web of Science, EBSCO, PsycINFO, and Science Direct were searched for publications from 2010 to 2022. We included randomized controlled trials with learning performance as outcome. The random effects model was used in the meta-analysis. The main effect tests and the heterogeneity tests were used to evaluate the effect of human-machine feedback mechanism on learning performance, and the boundary conditions of the effect were tested by moderating effects. Moreover, the validity of the meta-analysis was proved by publication bias test.
+Results: Out of 35 articles identified, 2,222 participants were included in this study. Human-machine interaction feedback had significant effects on learners' learning process (d = 0.594, k = 26) and learning outcomes (d = 0.407, k = 42). Also, the positive effects of human-machine interaction feedback were regulated by the direction of feedback, the form of feedback, and the type of feedback technique.
+Conclusion: To enhance learning performance through human-machine interactive feedback, we should focus on using two-way and multi-subject feedback. The technology that can provide emotional feedback and feedback loops should be used as a priority. Also, pay attention to the feedback process and mechanism, avoid increasing students' dependence on machines, and strengthen learners' subjectivity from feedback mechanism.",article,0,,,"Liao, Mengyi;Zhu, Kaige;Wang, Guangshuai",,,,,,,Frontiers in Psychology,,,SCOPUS,"Liao Mengyi, 2024, Frontiers in Psychology",,"Liao Mengyi, 2024, Frontiers in Psychology"
+2024,40,https://app.dimensions.ai/details/publication/pub.1167870595,Recommended Requirements and Essential Elements for Proper Reporting of the Use of Artificial Intelligence Machine Learning Tools in Biomedical Research and Scientific Publications,1033,4,,Arthroscopy: The Journal of Arthroscopic & Related Surgery,10.1016/j.arthro.2023.12.027,2024-01-11,"Cote, Mark P.;Lubowitz, James H.","Essential elements required for proper use of artificial intelligence machine learning tools in biomedical research and scientific publications include (1) explanation justifying why a machine learning approach contributes to the purpose of the study; (2) description of the adequacy of the data (input) to produce the desired results (output); (3) details of the algorithmic (i.e., computational) approach including methods for organizing the data (preprocessing); the machine learning computational algorithm(s) assessed; on what data the models were trained; the presence of bias and efforts to mitigate these effects; and the methods for quantifying the variables (features) most influential in determining the results (e.g., Shapley values); (4) description of methods, and reporting of results, quantitating performance in terms of both model accuracy and model calibration (level of confidence in the model's predictions); (5) availability of the programming code (including a link to the code when available-ideally, the code should be available); (6) discussion of model internal validation (results applicable and sensitive to the population investigated and data on which the model was trained) and external validation (were the results investigated as to whether they are generalizable to different populations? If not, consideration of this limitation and discussion of plans for external validation, i.e., next steps). As biomedical research submissions using artificial intelligence technology increase, these requirements could facilitate purposeful use and comprehensive methodological reporting.",article,0,,,"Cote, Mark P.;Lubowitz, James H.",,,,,,,Arthroscopy: The Journal of Arthroscopic & Related Surgery,1038,,SCOPUS,"Cote Mark P., 2024, Arthroscopy: The Journal of Arthroscopic & Related Surgery",,"Cote Mark P., 2024, Arthroscopy: The Journal of Arthroscopic & Related Surgery"
+2024,8,https://app.dimensions.ai/details/publication/pub.1167908934,Machine learning assisted biosensing technology: An emerging powerful tool for improving the intelligence of food safety detection,100679,,,Current Research in Food Science,10.1016/j.crfs.2024.100679,2024-01-12,"Zhou, Zixuan;Tian, Daoming;Yang, Yingao;Cui, Han;Li, Yanchun;Ren, Shuyue;Han, Tie;Gao, Zhixian","Recently, the application of biosensors in food safety assessment has gained considerable research attention. Nevertheless, the evaluation of biosensors' sensitivity, accuracy, and efficiency is still ongoing. The advent of machine learning has enhanced the application of biosensors in food security assessment, yielding improved results. Machine learning has been preliminarily applied in combination with different biosensors in food safety assessment, with positive results. This review offers a comprehensive summary of the diverse machine learning methods employed in biosensors for food safety. Initially, the primary machine learning methods were outlined, and the integrated application of biosensors and machine learning in food safety was thoroughly examined. Lastly, the challenges and limitations of machine learning and biosensors in the realm of food safety were underscored, and potential solutions were explored. The review's findings demonstrated that algorithms grounded in machine learning can aid in the early detection of food safety issues. Furthermore, preliminary research suggests that biosensors could be optimized through machine learning for real-time, multifaceted analyses of food safety variables and their interactions. The potential of machine learning and biosensors in real-time monitoring of food quality has been discussed.",article,0,,,"Zhou, Zixuan;Tian, Daoming;Yang, Yingao;Cui, Han;Li, Yanchun;Ren, Shuyue;Han, Tie;Gao, Zhixian",,,,,,,Current Research in Food Science,,,SCOPUS,"Zhou Zixuan, 2024, Current Research in Food Science",,"Zhou Zixuan, 2024, Current Research in Food Science"
+2024,32,https://app.dimensions.ai/details/publication/pub.1168022703,Machine learning models for positron emission tomography myocardial perfusion imaging,101805,,,Journal of Nuclear Cardiology,10.1016/j.nuclcard.2024.101805,2024-01-18,"Williams, Michelle C",Machine learning has the potential to improve patient care by automating the assessment of medical imaging. Machine learning models have been developed to identify ischaemia and scar on rest and stress myocardial perfusion imaging from positron emission tomography (PET). Application of these tools could aid reporting of PET by highlighting patients and vessels likely to have abnormalities. How this information should be integrated into clinical practice and the impact on patient management or outcomes is not currently known.,article,0,,,"Williams, Michelle C",,,,,,,Journal of Nuclear Cardiology,,,SCOPUS,"Williams Michelle C, 2024, Journal of Nuclear Cardiology",,"Williams Michelle C, 2024, Journal of Nuclear Cardiology"
+2024,6,https://app.dimensions.ai/details/publication/pub.1168045262,"Exploring the matrix: knowledge, perceptions and prospects of artificial intelligence and machine learning in Nigerian healthcare",1293297,,,Frontiers in Artificial Intelligence,10.3389/frai.2023.1293297,2024-01-19,"Adigwe, Obi Peter;Onavbavba, Godspower;Sanyaolu, Saheed Ekundayo","Background: Artificial intelligence technology can be applied in several aspects of healthcare delivery and its integration into the Nigerian healthcare value chain is expected to bring about new opportunities. This study aimed at assessing the knowledge and perception of healthcare professionals in Nigeria regarding the application of artificial intelligence and machine learning in the health sector.
+Methods: A cross-sectional study was undertaken amongst healthcare professionals in Nigeria with the use of a questionnaire. Data were collected across the six geopolitical zones in the Country using a stratified multistage sampling method. Descriptive and inferential statistical analyses were undertaken for the data obtained.
+Results: Female participants (55.7%) were slightly higher in proportion compared to the male respondents (44.3%). Pharmacists accounted for 27.7% of the participants, and this was closely followed by medical doctors (24.5%) and nurses (19.3%). The majority of the respondents (57.2%) reported good knowledge regarding artificial intelligence and machine learning, about a third of the participants (32.2%) were of average knowledge, and 10.6% of the sample had poor knowledge. More than half of the respondents (57.8%) disagreed with the notion that the adoption of artificial intelligence in the Nigerian healthcare sector could result in job losses. Two-thirds of the participants (66.7%) were of the view that the integration of artificial intelligence in healthcare will augment human intelligence. Three-quarters (77%) of the respondents agreed that the use of machine learning in Nigerian healthcare could facilitate efficient service delivery.
+Conclusion: This study provides novel insights regarding healthcare professionals' knowledge and perception with respect to the application of artificial intelligence and machine learning in healthcare. The emergent findings from this study can guide government and policymakers in decision-making as regards deployment of artificial intelligence and machine learning for healthcare delivery.",article,0,,,"Adigwe, Obi Peter;Onavbavba, Godspower;Sanyaolu, Saheed Ekundayo",,,,,,,Frontiers in Artificial Intelligence,,,SCOPUS,"Adigwe Obi Peter, 2024, Frontiers in Artificial Intelligence",,"Adigwe Obi Peter, 2024, Frontiers in Artificial Intelligence"
+2024,9,https://app.dimensions.ai/details/publication/pub.1168099706,Research Advances in Machine Learning Techniques in Gas Hydrate Applications,4210,4,,ACS Omega,10.1021/acsomega.3c04825,2024-01-19,"Osei, Harrison;Bavoh, Cornelius B.;Lal, Bhajan","The complex modeling accuracy of gas hydrate models has been recently improved owing to the existence of data for machine learning tools. In this review, we discuss most of the machine learning tools used in various hydrate-related areas such as phase behavior predictions, hydrate kinetics, CO2 capture, and gas hydrate natural distribution and saturation. The performance comparison between machine learning and conventional gas hydrate models is also discussed in detail. This review shows that machine learning methods have improved hydrate phase property predictions and could be adopted in current and new gas hydrate simulation software for better and more accurate results.",article,0,,,"Osei, Harrison;Bavoh, Cornelius B.;Lal, Bhajan",,,,,,,ACS Omega,4228,,SCOPUS,"Osei Harrison, 2024, ACS Omega",,"Osei Harrison, 2024, ACS Omega"
+2024,64,https://app.dimensions.ai/details/publication/pub.1168161979,Machine Learning Models for Predicting Zirconocene Properties and Barriers,775,3,,Journal of Chemical Information and Modeling,10.1021/acs.jcim.3c01575,2024-01-23,"Kirkland, Justin K.;Kumawat, Jugal;Tameh, Maliheh Shaban;Tolman, Tyson;Lambert, Allison C.;Lief, Graham R.;Yang, Qing;Ess, Daniel H.","Zr metallocenes have significant potential to be highly tunable polyethylene catalysts through modification of the aromatic ligand framework. Here we report the development of multiple machine learning models using a large library (>700 systems) of DFT-calculated zirconocene properties and barriers for ethylene polymerization. We show that very accurate machine learning models are possible for HOMO-LUMO gaps of precatalysts but the performance significantly depends on the machine learning algorithm and type of featurization, such as fingerprints, Coulomb matrices, smooth overlap of atomic positions, or persistence images. Surprisingly, the description of the bonding hapticity, the number of direct connections between Zr and the ligand aromatic carbons, only has a moderate influence on the performance of most models. Despite robust models for HOMO-LUMO gaps, these types of machine learning models based on structure connectivity type features perform poorly in predicting ethylene migratory insertion barrier heights. Therefore, we developed several relatively robust and accurate machine learning models for barrier heights that are based on quantum-chemical descriptors (QCDs). The quantitative accuracy of these models depends on which potential energy surface structure QCDs were harvested from. This revealed a Hammett-type principle to naturally emerge showing that QCDs from the π-coordination complexes provide much better descriptions of the transition states than other potential-energy structures. Feature importance analysis of the QCDs provides several fundamental principles that influence zirconocene catalyst reactivity.",article,0,,,"Kirkland, Justin K.;Kumawat, Jugal;Tameh, Maliheh Shaban;Tolman, Tyson;Lambert, Allison C.;Lief, Graham R.;Yang, Qing;Ess, Daniel H.",,,,,,,Journal of Chemical Information and Modeling,784,,SCOPUS,"Kirkland Justin K., 2024, Journal of Chemical Information and Modeling",,"Kirkland Justin K., 2024, Journal of Chemical Information and Modeling"
+2024,63,https://app.dimensions.ai/details/publication/pub.1168235322,Decoding Nanomaterial‐Biosystem Interactions through Machine Learning,e202318380,16,,Angewandte Chemie International Edition,10.1002/anie.202318380,2024-02-12,"Dhoble, Sagar;Wu, Tzu‐Hsien;Kenry","The interactions between biosystems and nanomaterials regulate most of their theranostic and nanomedicine applications. These nanomaterial-biosystem interactions are highly complex and influenced by a number of entangled factors, including but not limited to the physicochemical features of nanomaterials, the types and characteristics of the interacting biosystems, and the properties of the surrounding microenvironments. Over the years, different experimental approaches coupled with computational modeling have revealed important insights into these interactions, although many outstanding questions remain unanswered. The emergence of machine learning has provided a timely and unique opportunity to revisit nanomaterial-biosystem interactions and to further push the boundary of this field. This minireview highlights the development and use of machine learning to decode nanomaterial-biosystem interactions and provides our perspectives on the current challenges and potential opportunities in this field.",article,0,,,"Dhoble, Sagar;Wu, Tzu‐Hsien;Kenry",,,,,,,Angewandte Chemie International Edition,,,SCOPUS,"Dhoble Sagar, 2024, Angewandte Chemie International Edition",,"Dhoble Sagar, 2024, Angewandte Chemie International Edition"
+2024,14,https://app.dimensions.ai/details/publication/pub.1168275141,Role of machine learning in the management of epilepsy: a systematic review protocol,e079785,1,,BMJ Open,10.1136/bmjopen-2023-079785,2024-01-25,"Chang, Richard Shek-kwan;Nguyen, Shani;Chen, Zhibin;Foster, Emma;Kwan, Patrick","INTRODUCTION: Machine learning is a rapidly expanding field and is already incorporated into many aspects of medicine including diagnostics, prognostication and clinical decision-support tools. Epilepsy is a common and disabling neurological disorder, however, management remains challenging in many cases, despite expanding therapeutic options. We present a systematic review protocol to explore the role of machine learning in the management of epilepsy.
+METHODS AND ANALYSIS: This protocol has been drafted with reference to the Preferred Reporting Items for Systematic Reviews and Meta-Analyses (PRISMA) for Protocols. A literature search will be conducted in databases including MEDLINE, Embase, Scopus and Web of Science. A PRISMA flow chart will be constructed to summarise the study workflow. As the scope of this review is the clinical application of machine learning, the selection of papers will be focused on studies directly related to clinical decision-making in management of epilepsy, specifically the prediction of response to antiseizure medications, development of drug-resistant epilepsy, and epilepsy surgery and neuromodulation outcomes. Data will be extracted following the CHecklist for critical Appraisal and data extraction for systematic Reviews of prediction Modelling Studies checklist. Prediction model Risk Of Bias ASsessment Tool will be used for the quality assessment of the included studies. Syntheses of quantitative data will be presented in narrative format.
+ETHICS AND DISSEMINATION: As this study is a systematic review which does not involve patients or animals, ethics approval is not required. The results of the systematic review will be submitted to peer-review journals for publication and presented in academic conferences.
+PROSPERO REGISTRATION NUMBER: CRD42023442156.",article,0,,,"Chang, Richard Shek-kwan;Nguyen, Shani;Chen, Zhibin;Foster, Emma;Kwan, Patrick",,,,,,,BMJ Open,,,SCOPUS,"Chang Richard Shek-kwan, 2024, BMJ Open",,"Chang Richard Shek-kwan, 2024, BMJ Open"
+2024,5,https://app.dimensions.ai/details/publication/pub.1168279328,Optimizing lower limb rehabilitation: the intersection of machine learning and rehabilitative robotics,1246773,,,Frontiers in Rehabilitation Sciences,10.3389/fresc.2024.1246773,2024-01-26,"Zhang, Xiaoqian;Rong, Xiyin;Luo, Hanwen","Lower limb rehabilitation is essential for recovery post-injury, stroke, or surgery, improving functional mobility and quality of life. Traditional therapy, dependent on therapists' expertise, faces challenges that are addressed by rehabilitation robotics. In the domain of lower limb rehabilitation, machine learning is progressively manifesting its capabilities in high personalization and data-driven approaches, gradually transforming methods of optimizing treatment protocols and predicting rehabilitation outcomes. However, this evolution faces obstacles, including model interpretability, economic hurdles, and regulatory constraints. This review explores the synergy between machine learning and robotic-assisted lower limb rehabilitation, summarizing scientific literature and highlighting various models, data, and domains. Challenges are critically addressed, and future directions proposed for more effective clinical integration. Emphasis is placed on upcoming applications such as Virtual Reality and the potential of deep learning in refining rehabilitation training. This examination aims to provide insights into the evolving landscape, spotlighting the potential of machine learning in rehabilitation robotics and encouraging balanced exploration of current challenges and future opportunities.",article,0,,,"Zhang, Xiaoqian;Rong, Xiyin;Luo, Hanwen",,,,,,,Frontiers in Rehabilitation Sciences,,,SCOPUS,"Zhang Xiaoqian, 2024, Frontiers in Rehabilitation Sciences",,"Zhang Xiaoqian, 2024, Frontiers in Rehabilitation Sciences"
+2024,58,https://app.dimensions.ai/details/publication/pub.1168283036,Determination of Trace Organic Contaminant Concentration via Machine Classification of Surface-Enhanced Raman Spectra,15619,35,,Environmental Science & Technology,10.1021/acs.est.3c06447,2024-01-25,"Jayaprakash, Vishnu;You, Jae Bem;Kanike, Chiranjeevi;Liu, Jinfeng;McCallum, Christopher;Zhang, Xuehua","Surface-enhanced Raman spectroscopy (SERS) has been well explored as a highly effective characterization technique that is capable of chemical pollutant detection and identification at very low concentrations. Machine learning has been previously used to identify compounds based on SERS spectral data. However, utilization of SERS to quantify concentrations, with or without machine learning, has been difficult due to the spectral intensity being sensitive to confounding factors such as the substrate parameters, orientation of the analyte, and sample preparation technique. Here, we demonstrate an approach for predicting the concentration of sample pollutants from SERS spectra using machine learning. Frequency domain transform methods, including the Fourier and Walsh-Hadamard transforms, are applied to spectral data sets of three analytes (rhodamine 6G, chlorpyrifos, and triclosan), which are then used to train machine learning algorithms. Using standard machine learning models, the concentration of the sample pollutants is predicted with >80% cross-validation accuracy from raw SERS data. A cross-validation accuracy of 85% was achieved using deep learning for a moderately sized data set (∼100 spectra), and 70-80% was achieved for small data sets (∼50 spectra). Performance can be maintained within this range even when combining various sample preparation techniques and environmental media interference. Additionally, as a spectral pretreatment, the Fourier and Hadamard transforms are shown to consistently improve prediction accuracy across multiple data sets. Finally, standard models were shown to accurately identify characteristic peaks of compounds via analysis of their importance scores, further verifying their predictive value.",article,0,,,"Jayaprakash, Vishnu;You, Jae Bem;Kanike, Chiranjeevi;Liu, Jinfeng;McCallum, Christopher;Zhang, Xuehua",,,,,,,Environmental Science & Technology,15628,,SCOPUS,"Jayaprakash Vishnu, 2024, Environmental Science & Technology",,"Jayaprakash Vishnu, 2024, Environmental Science & Technology"
+2024,13,https://app.dimensions.ai/details/publication/pub.1168297361,Machine Learning and Deep Learning in Spinal Injury: A Narrative Review of Algorithms in Diagnosis and Prognosis,705,3,,Journal of Clinical Medicine,10.3390/jcm13030705,2024-01-25,"Maki, Satoshi;Furuya, Takeo;Inoue, Masahiro;Shiga, Yasuhiro;Inage, Kazuhide;Eguchi, Yawara;Orita, Sumihisa;Ohtori, Seiji","Spinal injuries, including cervical and thoracolumbar fractures, continue to be a major public health concern. Recent advancements in machine learning and deep learning technologies offer exciting prospects for improving both diagnostic and prognostic approaches in spinal injury care. This narrative review systematically explores the practical utility of these computational methods, with a focus on their application in imaging techniques such as computed tomography (CT) and magnetic resonance imaging (MRI), as well as in structured clinical data. Of the 39 studies included, 34 were focused on diagnostic applications, chiefly using deep learning to carry out tasks like vertebral fracture identification, differentiation between benign and malignant fractures, and AO fracture classification. The remaining five were prognostic, using machine learning to analyze parameters for predicting outcomes such as vertebral collapse and future fracture risk. This review highlights the potential benefit of machine learning and deep learning in spinal injury care, especially their roles in enhancing diagnostic capabilities, detailed fracture characterization, risk assessments, and individualized treatment planning.",article,0,,,"Maki, Satoshi;Furuya, Takeo;Inoue, Masahiro;Shiga, Yasuhiro;Inage, Kazuhide;Eguchi, Yawara;Orita, Sumihisa;Ohtori, Seiji",,,,,,,Journal of Clinical Medicine,,,SCOPUS,"Maki Satoshi, 2024, Journal of Clinical Medicine",,"Maki Satoshi, 2024, Journal of Clinical Medicine"
+2024,17,https://app.dimensions.ai/details/publication/pub.1168322582,The Design of a Piecewise-Integrated Composite Bumper Beam with Machine-Learning Algorithms,602,3,,Materials,10.3390/ma17030602,2024-01-26,"Ham, Seokwoo;Ji, Seungmin;Cheon, Seong Sik","In the present study, a piecewise-integrated composite bumper beam for passenger cars is proposed, and the design innovation process for a composite bumper beam regarding a bumper test protocol suggested by the Insurance Institute for Highway Safety is carried out with the help of machine learning models. Several elements in the bumper FE model have been assigned to be references in order to collect training data, which allow the machine learning model to study the method of predicting loading types for each finite element. Two-dimensional and three-dimensional implementations are provided by machine learning models, which determine the stacking sequences of each finite element in the piecewise-integrated composite bumper beam. It was found that the piecewise-integrated composite bumper beam, which is designed by a machine learning model, is more effective for reducing the possibility of structural failure as well as increasing bending strength compared to the conventional composite bumper beam. Moreover, the three-dimensional implementation produces better results compared with results from the two-dimensional implementation since it is preferable to choose loading-type information, which is achieved from surroundings when the target elements are located either at corners or junctions of planes, instead of using information that comes from the identical plane of target elements.",article,0,,,"Ham, Seokwoo;Ji, Seungmin;Cheon, Seong Sik",,,,,,,Materials,,,SCOPUS,"Ham Seokwoo, 2024, Materials",,"Ham Seokwoo, 2024, Materials"
+2024,466,https://app.dimensions.ai/details/publication/pub.1168333437,Rational design of hybrid sensor arrays combined synergistically with machine learning for rapid response to a hazardous gas leak environment in chemical plants,133649,,,Journal of Hazardous Materials,10.1016/j.jhazmat.2024.133649,2024-01-28,"Ku, Wonseok;Lee, Geonhee;Lee, Ju-Yeon;Kim, Do-Hyeong;Park, Ki-Hong;Lim, Jongtae;Cho, Donghwi;Ha, Seung-Chul;Jung, Byung-Gil;Hwang, Heesu;Lee, Wooseop;Shin, Huisu;Jang, Ha Seon;Lee, Jeong-O;Hwang, Jin-Ha","Combinations of semiconductor metal oxide (SMO) sensors, electrochemical (EC) sensors, and photoionization detection (PID) sensors were used to discriminate chemical hazards on the basis of machine learning. Sensing data inputs were exploited in the form of either numerical or image data formats, and the classification of chemical hazards with high accuracy was achieved in both cases. Even a small amount of gas sensing or purging data (input for ∼30 s) input can be exploited in machine-learning-based gas discrimination. SMO sensors exhibit high performance even in a single-sensor mode, presumably because of the intrinsic cross-sensitivity of metal oxides, which is otherwise considered a major disadvantage of SMO sensors. EC sensors were enhanced through synergistic integration of sensor combinations with machine learning. For precision detection of multiple target analytes, a minimum number of sensors can be proposed for gas detection/discrimination by combining sensors with dissimilar operating principles. The Type I hybrid sensor combines one SMO sensor, one EC sensor, and one PID sensor and is used to identify NH3 gas mixed with sulfur compounds in simulations of NH3 gas leak accidents in chemical plants. The portable remote sensing module made with a Type I hybrid sensor and LTE module can identify mixed NH3 gas with a detection time of 60 s, demonstrating the potential of the proposed system to quickly respond to hazardous gas leak accidents and prevent additional damage to the environment.",article,0,,,"Ku, Wonseok;Lee, Geonhee;Lee, Ju-Yeon;Kim, Do-Hyeong;Park, Ki-Hong;Lim, Jongtae;Cho, Donghwi;Ha, Seung-Chul;Jung, Byung-Gil;Hwang, Heesu;Lee, Wooseop;Shin, Huisu;Jang, Ha Seon;Lee, Jeong-O;Hwang, Jin-Ha",,,,,,,Journal of Hazardous Materials,,,SCOPUS,"Ku Wonseok, 2024, Journal of Hazardous Materials",,"Ku Wonseok, 2024, Journal of Hazardous Materials"
+2024,353,https://app.dimensions.ai/details/publication/pub.1168335535,Microalgal biorefineries: Advancement in machine learning tools for sustainable biofuel production and value-added products recovery,120135,,,Journal of Environmental Management,10.1016/j.jenvman.2024.120135,2024-01-28,"S, Kavitha;Ravi, Yukesh Kannah;Kumar, Gopalakrishnan;Kadapakkam Nandabalan, Yogalakshmi;J, Rajesh Banu","The microalgae can be converted into biofuels, biochemicals, and bioactive compounds in a biorefinery. Recently, designing and executing more viable and sustainable biofuel production from microalgal biomass is one of the vital challenges in the development of biorefinery. Scalable cultivation of microalgae is mandatory for commercializing and industrializing the biorefinery. The intrinsic complication in cultivation of microalgae is the physiological and operational factors that renders challenging impact to enable a smooth and profitable operation. However, this aim can only be successful via a simulation prospect. Machine learning tools provides advanced approaches for evaluating, predicting, and controlling uncertainties in microalgal biorefinery for sustainable biofuel production. The present review provides a critical evaluation of the most progressing machine learning tools that validate a potential to be employed in microalgal biorefinery. These tools are highly potential for their extensive evaluation on microalgal screening and classification. However, the application of these tools for optimization of microalgal biomass cultivation in industries in order to increase the biomass production, is still in its initial stages. Integrated hybrid machine learning tools can aid the industries to function efficiently with least resources. Some of the challenges, and perspectives of machine learning tools are discussed. Besides, future prospects are also emphasized. Though, most of the research reports on machine learning tools are not appropriate to gather generalized information, standard protocols and strategies must be developed to design generalized machine learning tools. On a whole, this review offers a perspective information about digitalized microalgal exploitation in a microalgal biorefinery.",article,0,,,"S, Kavitha;Ravi, Yukesh Kannah;Kumar, Gopalakrishnan;Kadapakkam Nandabalan, Yogalakshmi;J, Rajesh Banu",,,,,,,Journal of Environmental Management,,,SCOPUS,"S Kavitha, 2024, Journal of Environmental Management",,"S Kavitha, 2024, Journal of Environmental Management"
+2024,104,https://app.dimensions.ai/details/publication/pub.1168349089,Artificial intelligence‐based prediction of the rheological properties of hydrocolloids for plant‐based meat analogues,5114,9,,Journal of the Science of Food and Agriculture,10.1002/jsfa.13334,2024-02-08,"Lee, Dayeon;Jeong, Sungmin;Yun, Suin;Lee, Suyong","BACKGROUND: Methylcellulose has been applied as a primary binding agent to control the quality attributes of plant-based meat analogues. H owever, a great deal of effort has been made to search for hydrocolloids to replace methylcellulose because of increasing awareness of clean labels. In this study, a machine learning framework was proposed in order to describe and predict the flow behavior of six hydrocolloid solutions, and the predicted viscosities were correlated with the textural features of their corresponding plant-based meat analogues.
+RESULTS: Different shear-thinning and Newtonian behaviors were observed depending on the type of hydrocolloid and the shear rate. Methylcellulose exhibited an increasing viscosity pattern with increasing temperature, compared to the other hydrocolloids. The machine learning algorithms (random forest and multilayer perceptron models) showed a better viscosity fitting performance than the constitutive equations (power law and Cross models). In addition, three hyperparameters of the multilayer perceptron model (optimizer, learning rate, and the number of hidden layers) were tuned using the Bayesian optimization algorithm.
+CONCLUSION: The optimized multilayer perceptron model exhibited superior performance in viscosity prediction (R2 = 0.9944-0.9961/RMSE = 0.0545-0.0708). Furthermore, the machine learning-predicted viscosities overall showed similar patterns to the textural parameters of the meat analogues. © 2024 Society of Chemical Industry.",article,0,,,"Lee, Dayeon;Jeong, Sungmin;Yun, Suin;Lee, Suyong",,,,,,,Journal of the Science of Food and Agriculture,5123,,SCOPUS,"Lee Dayeon, 2024, Journal of the Science of Food and Agriculture",,"Lee Dayeon, 2024, Journal of the Science of Food and Agriculture"
+2024,123,https://app.dimensions.ai/details/publication/pub.1168364142,Machine learning in RNA structure prediction: Advances and challenges,2647,17,,Biophysical Journal,10.1016/j.bpj.2024.01.026,2024-01-30,"Zhang, Sicheng;Li, Jun;Chen, Shi-Jie","RNA molecules play a crucial role in various biological processes, with their functionality closely tied to their structures. The remarkable advancements in machine learning techniques for protein structure prediction have shown promise in the field of RNA structure prediction. In this perspective, we discuss the advances and challenges encountered in constructing machine learning-based models for RNA structure prediction. We explore topics including model building strategies, specific challenges involved in predicting RNA secondary (2D) and tertiary (3D) structures, and approaches to these challenges. In addition, we highlight the advantages and challenges of constructing RNA language models. Given the rapid advances of machine learning techniques, we anticipate that machine learning-based models will serve as important tools for predicting RNA structures, thereby enriching our understanding of RNA structures and their corresponding functions.",article,0,,,"Zhang, Sicheng;Li, Jun;Chen, Shi-Jie",,,,,,,Biophysical Journal,2657,,SCOPUS,"Zhang Sicheng, 2024, Biophysical Journal",,"Zhang Sicheng, 2024, Biophysical Journal"
+2024,12,https://app.dimensions.ai/details/publication/pub.1168408312,Predicting preterm birth using auto-ML frameworks: a large observational study using electronic inpatient discharge data,1330420,,,Frontiers in Pediatrics,10.3389/fped.2024.1330420,2024-01-31,"Kong, Deming;Tao, Ye;Xiao, Haiyan;Xiong, Huini;Wei, Weizhong;Cai, Miao","Background: To develop and compare different AutoML frameworks and machine learning models to predict premature birth.
+Methods: The study used a large electronic medical record database to include 715,962 participants who had the principal diagnosis code of childbirth. Three Automatic Machine Learning (AutoML) were used to construct machine learning models including tree-based models, ensembled models, and deep neural networks on the training sample (N = 536,971). The area under the curve (AUC) and training times were used to assess the performance of the prediction models, and feature importance was computed via permutation-shuffling.
+Results: The H2O AutoML framework had the highest median AUC of 0.846, followed by AutoGluon (median AUC: 0.840) and Auto-sklearn (median AUC: 0.820), and the median training time was the lowest for H2O AutoML (0.14 min), followed by AutoGluon (0.16 min) and Auto-sklearn (4.33 min). Among different types of machine learning models, the Gradient Boosting Machines (GBM) or Extreme Gradient Boosting (XGBoost), stacked ensemble, and random forrest models had better predictive performance, with median AUC scores being 0.846, 0.846, and 0.842, respectively. Important features related to preterm birth included premature rupture of membrane (PROM), incompetent cervix, occupation, and preeclampsia.
+Conclusions: Our study highlights the potential of machine learning models in predicting the risk of preterm birth using readily available electronic medical record data, which have significant implications for improving prenatal care and outcomes.",article,0,,,"Kong, Deming;Tao, Ye;Xiao, Haiyan;Xiong, Huini;Wei, Weizhong;Cai, Miao",,,,,,,Frontiers in Pediatrics,,,SCOPUS,"Kong Deming, 2024, Frontiers in Pediatrics",,"Kong Deming, 2024, Frontiers in Pediatrics"
+2024,27,https://app.dimensions.ai/details/publication/pub.1168412953,The use of machine learning in paediatric nutrition,290,3,,Current Opinion in Clinical Nutrition and Metabolic Care,10.1097/mco.0000000000001018,2024-01-31,"Young, Aneurin;Johnson, Mark J.;Beattie, R. Mark","PURPOSE OF REVIEW: In recent years, there has been a burgeoning interest in using machine learning methods. This has been accompanied by an expansion in the availability and ease of use of machine learning tools and an increase in the number of large, complex datasets which are suited to machine learning approaches. This review summarizes recent work in the field and sets expectations for its impact in the future.
+RECENT FINDINGS: Much work has focused on establishing good practices and ethical frameworks to guide the use of machine learning in research. Machine learning has an established role in identifying features in 'omics' research and is emerging as a tool to generate predictive models to identify people at risk of disease and patients at risk of complications. They have been used to identify risks for malnutrition and obesity. Machine learning techniques have also been used to develop smartphone apps to track behaviour and provide healthcare advice.
+SUMMARY: Machine learning techniques are reaching maturity and their impact on observational data analysis and behaviour change will come to fruition in the next 5 years. A set of standards and best practices are emerging and should be implemented by researchers and publishers.",article,0,,,"Young, Aneurin;Johnson, Mark J.;Beattie, R. Mark",,,,,,,Current Opinion in Clinical Nutrition and Metabolic Care,296,,SCOPUS,"Young Aneurin, 2024, Current Opinion in Clinical Nutrition and Metabolic Care",,"Young Aneurin, 2024, Current Opinion in Clinical Nutrition and Metabolic Care"
+2024,24,https://app.dimensions.ai/details/publication/pub.1168426884,Smart Resource Allocation in Mobile Cloud Next-Generation Network (NGN) Orchestration with Context-Aware Data and Machine Learning for the Cost Optimization of Microservice Applications,865,3,,Sensors,10.3390/s24030865,2024-01-29,"Hassan, Mahmood Ul;Al-Awady, Amin A.;Ali, Abid;Iqbal, Muhammad Munwar;Akram, Muhammad;Jamil, Harun","Mobile cloud computing (MCC) provides resources to users to handle smart mobile applications. In MCC, task scheduling is the solution for mobile users' context-aware computation resource-rich applications. Most existing approaches have achieved a moderate service reliability rate due to a lack of instance-centric resource estimations and task offloading, a statistical NP-hard problem. The current intelligent scheduling process cannot address NP-hard problems due to traditional task offloading approaches. To address this problem, the authors design an efficient context-aware service offloading approach based on instance-centric measurements. The revised machine learning model/algorithm employs task adaptation to make decisions regarding task offloading. The proposed MCVS scheduling algorithm predicts the usage rates of individual microservices for a practical task scheduling scheme, considering mobile device time, cost, network, location, and central processing unit (CPU) power to train data. One notable feature of the microservice software architecture is its capacity to facilitate the scalability, flexibility, and independent deployment of individual components. A series of simulation results show the efficiency of the proposed technique based on offloading, CPU usage, and execution time metrics. The experimental results efficiently show the learning rate in training and testing in comparison with existing approaches, showing efficient training and task offloading phases. The proposed system has lower costs and uses less energy to offload microservices in MCC. Graphical results are presented to define the effectiveness of the proposed model. For a service arrival rate of 80%, the proposed model achieves an average 4.5% service offloading rate and 0.18% CPU usage rate compared with state-of-the-art approaches. The proposed method demonstrates efficiency in terms of cost and energy savings for microservice offloading in mobile cloud computing (MCC).",article,0,,,"Hassan, Mahmood Ul;Al-Awady, Amin A.;Ali, Abid;Iqbal, Muhammad Munwar;Akram, Muhammad;Jamil, Harun",,,,,,,Sensors,,,SCOPUS,"Hassan Mahmood Ul, 2024, Sensors",,"Hassan Mahmood Ul, 2024, Sensors"
+2024,62,https://app.dimensions.ai/details/publication/pub.1168461011,Cancer detection and classification using a simplified binary state vector machine,1491,5,,Medical & Biological Engineering & Computing,10.1007/s11517-023-03012-9,2024-02-01,"Shafi, Imran;Ansari, Sana;Din, Sadia;Ashraf, Imran","Cancer is an invasive and malignant growth of cells and is known to be one of the most fatal diseases. Its early detection is essential for decreasing the mortality rate and increasing the probability of survival. This study presents an efficient machine learning approach based on the state vector machine (SVM) to diagnose and classify tumors into malignant or benign cancer using the online lymphographic data. Further, two types of neural network architectures are also implemented to evaluate the performance of the proposed SVM-based approach. The optimal structures of the classifiers are obtained by varying the architecture, topology, learning rate, and kernel function and recording the results’ accuracy. The classifiers are trained with the preprocessed data examples after noise removal and tested on the unknown cases to diagnose each example as positive or negative. Further, the positive cases are classified into different stages including metastases, malign lymph, and fibrosis. The results are evaluated against the feed-forward and generalized regression neural networks. It is found that the proposed SVM-based approach significantly improves the early detection and classification accuracy in comparison to the experienced physicians and the other machine learning approaches. The proposed approach is robust and can perform sub-class divisions for multipurpose tasks. Experimental results demonstrate that the two-class SVM gives the best results and can effectively be used for the classification of cancer. It has outperformed all other classifiers with an average accuracy of 94.90%.Graphical abstract",article,0,,,"Shafi, Imran;Ansari, Sana;Din, Sadia;Ashraf, Imran",,,,,,,Medical & Biological Engineering & Computing,1501,,SCOPUS,"Shafi Imran, 2024, Medical & Biological Engineering & Computing",,"Shafi Imran, 2024, Medical & Biological Engineering & Computing"
+2024,170,https://app.dimensions.ai/details/publication/pub.1168492593,"A review of traditional Chinese medicine diagnosis using machine learning: Inspection, auscultation-olfaction, inquiry, and palpation",108074,,,Computers in Biology and Medicine,10.1016/j.compbiomed.2024.108074,2024-02-02,"Tian, Dingcheng;Chen, Weihao;Xu, Dechao;Xu, Lisheng;Xu, Gang;Guo, Yaochen;Yao, Yudong","Traditional Chinese medicine (TCM) is an essential part of the Chinese medical system and is recognized by the World Health Organization as an important alternative medicine. As an important part of TCM, TCM diagnosis is a method to understand a patient's illness, analyze its state, and identify syndromes. In the long-term clinical diagnosis practice of TCM, four fundamental and effective diagnostic methods of inspection, auscultation-olfaction, inquiry, and palpation (IAOIP) have been formed. However, the diagnostic information in TCM is diverse, and the diagnostic process depends on doctors' experience, which is subject to a high-level subjectivity. At present, the research on the automated diagnosis of TCM based on machine learning is booming. Machine learning, which includes deep learning, is an essential part of artificial intelligence (AI), which provides new ideas for the objective and AI-related research of TCM. This paper aims to review and summarize the current research status of machine learning in TCM diagnosis. First, we review some key factors for the application of machine learning in TCM diagnosis, including data, data preprocessing, machine learning models, and evaluation metrics. Second, we review and summarize the research and applications of machine learning methods in TCM IAOIP and the synthesis of the four diagnostic methods. Finally, we discuss the challenges and research directions of using machine learning methods for TCM diagnosis.",article,0,,,"Tian, Dingcheng;Chen, Weihao;Xu, Dechao;Xu, Lisheng;Xu, Gang;Guo, Yaochen;Yao, Yudong",,,,,,,Computers in Biology and Medicine,,,SCOPUS,"Tian Dingcheng, 2024, Computers in Biology and Medicine",,"Tian Dingcheng, 2024, Computers in Biology and Medicine"
+2024,32,https://app.dimensions.ai/details/publication/pub.1168502993,Development and validation of a clinical prediction model for glioma grade using machine learning,1977,3,,Technology and Health Care,10.3233/thc-231645,2024-05,"Wu, Mingzhen;Luan, Jixin;Zhang, Di;Fan, Hua;Qiao, Lishan;Zhang, Chuanchen","BACKGROUND: Histopathological evaluation is currently the gold standard for grading gliomas; however, this technique is invasive.
+OBJECTIVE: This study aimed to develop and validate a diagnostic prediction model for glioma by employing multiple machine learning algorithms to identify risk factors associated with high-grade glioma, facilitating the prediction of glioma grading.
+METHODS: Data from 1114 eligible glioma patients were obtained from The Cancer Genome Atlas (TCGA) database, which was divided into a training set (n= 781) and a test set (n= 333). Fifty machine learning algorithms were employed, and the optimal algorithm was selected to construct a prediction model. The performance of the machine learning prediction model was compared to the clinical prediction model in terms of discrimination, calibration, and clinical validity to assess the performance of the prediction model.
+RESULTS: The area under the curve (AUC) values of the machine learning prediction models (training set: 0.870 vs. 0.740, test set: 0.863 vs. 0.718) were significantly improved from the clinical prediction models. Furthermore, significant improvement in discrimination was observed for the Integrated Discrimination Improvement (IDI) (training set: 0.230, test set: 0.270) and Net Reclassification Index (NRI) (training set: 0.170, test set: 0.170) from the clinical prognostic model. Both models showed a high goodness of fit and an increased net benefit.
+CONCLUSION: A strong prediction accuracy model can be developed using machine learning algorithms to screen for high-grade glioma risk predictors, which can serve as a non-invasive prediction tool for preoperative diagnostic grading of glioma.",article,0,,,"Wu, Mingzhen;Luan, Jixin;Zhang, Di;Fan, Hua;Qiao, Lishan;Zhang, Chuanchen",,,,,,,Technology and Health Care,1990,,SCOPUS,"Wu Mingzhen, 2024, Technology and Health Care",,"Wu Mingzhen, 2024, Technology and Health Care"
+2024,12,https://app.dimensions.ai/details/publication/pub.1168576087,Predicting shock-induced cavitation using machine learning: implications for blast-injury models,1268314,,,Frontiers in Bioengineering and Biotechnology,10.3389/fbioe.2024.1268314,2024-02-05,"Marsh, Jenny L.;Zinnel, Laura;Bentil, Sarah A.","While cavitation has been suspected as a mechanism of blast-induced traumatic brain injury (bTBI) for a number of years, this phenomenon remains difficult to study due to the current inability to measure cavitation in vivo. Therefore, numerical simulations are often implemented to study cavitation in the brain and surrounding fluids after blast exposure. However, these simulations need to be validated with the results from cavitation experiments. Machine learning algorithms have not generally been applied to study blast injury or biological cavitation models. However, such algorithms have concrete measures for optimization using fewer parameters than those of finite element or fluid dynamics models. Thus, machine learning algorithms are a viable option for predicting cavitation behavior from experiments and numerical simulations. This paper compares the ability of two machine learning algorithms, k-nearest neighbor (kNN) and support vector machine (SVM), to predict shock-induced cavitation behavior. The machine learning models were trained and validated with experimental data from a three-dimensional shock tube model, and it has been shown that the algorithms could predict the number of cavitation bubbles produced at a given temperature with good accuracy. This study demonstrates the potential utility of machine learning in studying shock-induced cavitation for applications in blast injury research.",article,0,,,"Marsh, Jenny L.;Zinnel, Laura;Bentil, Sarah A.",,,,,,,Frontiers in Bioengineering and Biotechnology,,,SCOPUS,"Marsh Jenny L., 2024, Frontiers in Bioengineering and Biotechnology",,"Marsh Jenny L., 2024, Frontiers in Bioengineering and Biotechnology"
+2024,9,https://app.dimensions.ai/details/publication/pub.1168625654,Machine learning/artificial intelligence in sports medicine: state of the art and future directions,635,4,,Journal of ISAKOS,10.1016/j.jisako.2024.01.013,2024-02-07,"Pareek, Ayoosh;Ro, Du Hyun;Karlsson, Jón;Martin, R Kyle","Machine learning (ML) is changing the way health care is practiced and recent applications of these novel statistical techniques have started to impact orthopaedic sports medicine. Machine learning enables the analysis of large volumes of data to establish complex relationships between ""input"" and ""output"" variables. These relationships may be more complex than could be established through traditional statistical analysis and can lead to the ability to predict the ""output"" with high levels of accuracy. Supervised learning is the most common ML approach for healthcare data and recent studies have developed algorithms to predict patient-specific outcome after surgical procedures such as hip arthroscopy and anterior cruciate ligament reconstruction. Deep learning is a higher-level ML approach that facilitates the processing and interpretation of complex datasets through artificial neural networks that are inspired by the way the human brain processes information. In orthopaedic sports medicine, deep learning has primarily been used for automatic image (computer vision) and text (natural language processing) interpretation. While applications in orthopaedic sports medicine have been increasing exponentially, one significant barrier to widespread adoption of ML remains clinician unfamiliarity with the associated methods and concepts. The goal of this review is to introduce these concepts, review current machine learning models in orthopaedic sport medicine, and discuss future opportunities for innovation within the specialty.",article,0,,,"Pareek, Ayoosh;Ro, Du Hyun;Karlsson, Jón;Martin, R Kyle",,,,,,,Journal of ISAKOS,644,,SCOPUS,"Pareek Ayoosh, 2024, Journal of ISAKOS",,"Pareek Ayoosh, 2024, Journal of ISAKOS"
+2024,32,https://app.dimensions.ai/details/publication/pub.1168753198,Detection of anemic condition in patients from clinical markers and explainable artificial intelligence,2431,4,,Technology and Health Care,10.3233/thc-231207,2024,"Darshan, B.S. Dhruva;Sampathila, Niranjana;Bairy, Muralidhar G.;Belurkar, Sushma;Prabhu, Srikanth;Chadaga, Krishnaraj","BACKGROUND: Anaemia is a commonly known blood illness worldwide. Red blood cell (RBC) count or oxygen carrying capability being insufficient are two ways to describe anaemia. This disorder has an impact on the quality of life. If anaemia is detected in the initial stage, appropriate care can be taken to prevent further harm.
+OBJECTIVE: This study proposes a machine learning approach to identify anaemia from clinical markers, which will help further in clinical practice.
+METHODS: The models are designed with a dataset of 364 samples and 12 blood test attributes. The developed algorithm is expected to provide decision support to the clinicians based on blood markers. Each model is trained and validated on several performance metrics.
+RESULTS: The accuracy obtained by the random forest, K nearest neighbour, support vector machine, Naive Bayes, xgboost, and catboost are 97%, 98%, 95%, 95%, 98% and 97% respectively. Four explainers such as Shapley Additive Values (SHAP), QLattice, Eli5 and local interpretable model-agnostic explanations (LIME) are explored for interpreting the model predictions.
+CONCLUSION: The study provides insights into the potential of machine learning algorithms for classification and may help in the development of automated and accurate diagnostic tools for anaemia.",article,0,,,"Darshan, B.S. Dhruva;Sampathila, Niranjana;Bairy, Muralidhar G.;Belurkar, Sushma;Prabhu, Srikanth;Chadaga, Krishnaraj",,,,,,,Technology and Health Care,2444,,SCOPUS,"Darshan B.S. Dhruva, 2024, Technology and Health Care",,"Darshan B.S. Dhruva, 2024, Technology and Health Care"
+2024,65,https://app.dimensions.ai/details/publication/pub.1168847159,A comprehensive review of machine learning and its application to dairy products,1878,10,,Critical Reviews in Food Science and Nutrition,10.1080/10408398.2024.2312537,2024-02-13,"Freire, Paulina;Freire, Diego;Licon, Carmen C.","Machine learning (ML) technology is a powerful tool in food science and engineering offering numerous advantages, from recognizing patterns and predicting outcomes to customizing and adjusting to individual needs. Its further development can enable researchers and industries to significantly enhance the efficiency of dairy processing while providing valuable insights into the field. This paper presents an overview of the role of machine learning in the dairy industry and its potential to improve the efficiency of dairy processing. We performed a systematic search for articles published between January 2003 and January 2023 related to machine learning in dairy products and highlighted the algorithms used. 48 studies are discussed to assist researchers in identifying the best methods that could be applied in their field and providing relevant ideas for future research directions. Moreover, a step-by-step guide to the machine learning process, including a classification of different machine learning algorithms, is provided. This review focuses on state-of-the-art machine learning applications in milk products and their transformation into other dairy products, but it also presents future perspectives and conclusions. The study serves as a valuable guide for individuals in the dairy industry interested in learning about or getting involved with ML.",article,0,,,"Freire, Paulina;Freire, Diego;Licon, Carmen C.",,,,,,,Critical Reviews in Food Science and Nutrition,1893,,SCOPUS,"Freire Paulina, 2024, Critical Reviews in Food Science and Nutrition",,"Freire Paulina, 2024, Critical Reviews in Food Science and Nutrition"
+2024,19,https://app.dimensions.ai/details/publication/pub.1168869788,Building an ab initio solvated DNA model using Euclidean neural networks,e0297502,2,,PLOS ONE,10.1371/journal.pone.0297502,2024-02-15,"Lee, Alex J.;Rackers, Joshua A.;Pathak, Shivesh;Bricker, William P.","Accurately modeling large biomolecules such as DNA from first principles is fundamentally challenging due to the steep computational scaling of ab initio quantum chemistry methods. This limitation becomes even more prominent when modeling biomolecules in solution due to the need to include large numbers of solvent molecules. We present a machine-learned electron density model based on a Euclidean neural network framework that includes a built-in understanding of equivariance to model explicitly solvated double-stranded DNA. By training the machine learning model using molecular fragments that sample the key DNA and solvent interactions, we show that the model predicts electron densities of arbitrary systems of solvated DNA accurately, resolves polarization effects that are neglected by classical force fields, and captures the physics of the DNA-solvent interaction at the ab initio level.",article,0,,,"Lee, Alex J.;Rackers, Joshua A.;Pathak, Shivesh;Bricker, William P.",,,,,,,PLOS ONE,,,SCOPUS,"Lee Alex J., 2024, PLOS ONE",,"Lee Alex J., 2024, PLOS ONE"
+2024,14,https://app.dimensions.ai/details/publication/pub.1168895453,Leveraging Machine Learning for Personalized Wearable Biomedical Devices: A Review,203,2,,Journal of Personalized Medicine,10.3390/jpm14020203,2024-02-13,"Olyanasab, Ali;Annabestani, Mohsen","This review investigates the convergence of artificial intelligence (AI) and personalized health monitoring through wearable devices, classifying them into three distinct categories: bio-electrical, bio-impedance and electro-chemical, and electro-mechanical. Wearable devices have emerged as promising tools for personalized health monitoring, utilizing machine learning to distill meaningful insights from the expansive datasets they capture. Within the bio-electrical category, these devices employ biosignal data, such as electrocardiograms (ECGs), electromyograms (EMGs), electroencephalograms (EEGs), etc., to monitor and assess health. The bio-impedance and electro-chemical category focuses on devices measuring physiological signals, including glucose levels and electrolytes, offering a holistic understanding of the wearer's physiological state. Lastly, the electro-mechanical category encompasses devices designed to capture motion and physical activity data, providing valuable insights into an individual's physical activity and behavior. This review critically evaluates the integration of machine learning algorithms within these wearable devices, illuminating their potential to revolutionize healthcare. Emphasizing early detection, timely intervention, and the provision of personalized lifestyle recommendations, the paper outlines how the amalgamation of advanced machine learning techniques with wearable devices can pave the way for more effective and individualized healthcare solutions. The exploration of this intersection promises a paradigm shift, heralding a new era in healthcare innovation and personalized well-being.",article,0,,,"Olyanasab, Ali;Annabestani, Mohsen",,,,,,,Journal of Personalized Medicine,,,SCOPUS,"Olyanasab Ali, 2024, Journal of Personalized Medicine",,"Olyanasab Ali, 2024, Journal of Personalized Medicine"
+2024,56,https://app.dimensions.ai/details/publication/pub.1168946815,Application of machine learning techniques in population pharmacokinetics/pharmacodynamics modeling,101004,,,Drug Metabolism and Pharmacokinetics,10.1016/j.dmpk.2024.101004,2024-02-17,"Uno, Mizuki;Nakamaru, Yuta;Yamashita, Fumiyoshi","Population pharmacokinetics/pharmacodynamics (pop-PK/PD) consolidates pharmacokinetic and pharmacodynamic data from many subjects to understand inter- and intra-individual variability due to patient backgrounds, including disease state and genetics. The typical workflow in pop-PK/PD analysis involves the determination of the structure model, selection of the error model, analysis based on the base model, covariate modeling, and validation of the final model. Machine learning is gaining considerable attention in the medical and various fields because, in contrast to traditional modeling, which often assumes linear or predefined relationships, machine learning modeling learns directly from data and accommodates complex patterns. Machine learning has demonstrated excellent capabilities for prescreening covariates and developing predictive models. This review introduces various applications of machine learning techniques in pop-PK/PD research.",article,0,,,"Uno, Mizuki;Nakamaru, Yuta;Yamashita, Fumiyoshi",,,,,,,Drug Metabolism and Pharmacokinetics,,,SCOPUS,"Uno Mizuki, 2024, Drug Metabolism and Pharmacokinetics",,"Uno Mizuki, 2024, Drug Metabolism and Pharmacokinetics"
+2024,9,https://app.dimensions.ai/details/publication/pub.1168955297,Advances in Machine Learning Processing of Big Data from Disease Diagnosis Sensors,1134,3,,ACS Sensors,10.1021/acssensors.3c02670,2024-02-16,"Lu, Shasha;Yang, Jianyu;Gu, Yu;He, Dongyuan;Wu, Haocheng;Sun, Wei;Xu, Dong;Li, Changming;Guo, Chunxian","Exploring accurate, noninvasive, and inexpensive disease diagnostic sensors is a critical task in the fields of chemistry, biology, and medicine. The complexity of biological systems and the explosive growth of biomarker data have driven machine learning to become a powerful tool for mining and processing big data from disease diagnosis sensors. With the development of bioinformatics and artificial intelligence (AI), machine learning models formed by data mining have been able to guide more sensitive and accurate molecular computing. This review presents an overview of big data collection approaches and fundamental machine learning algorithms and discusses recent advances in machine learning and molecular computational disease diagnostic sensors. More specifically, we highlight existing modular workflows and key opportunities and challenges for machine learning to achieve disease diagnosis through big data mining.",article,0,,,"Lu, Shasha;Yang, Jianyu;Gu, Yu;He, Dongyuan;Wu, Haocheng;Sun, Wei;Xu, Dong;Li, Changming;Guo, Chunxian",,,,,,,ACS Sensors,1148,,SCOPUS,"Lu Shasha, 2024, ACS Sensors",,"Lu Shasha, 2024, ACS Sensors"
+2024,24,https://app.dimensions.ai/details/publication/pub.1169006586,Regression-Based Machine Learning for Predicting Lifting Movement Pattern Change in People with Low Back Pain,1337,4,,Sensors,10.3390/s24041337,2024-02-19,"Phan, Trung C.;Pranata, Adrian;Farragher, Joshua;Bryant, Adam;Nguyen, Hung T.;Chai, Rifai","Machine learning (ML) algorithms are crucial within the realm of healthcare applications. However, a comprehensive assessment of the effectiveness of regression algorithms in predicting alterations in lifting movement patterns has not been conducted. This research represents a pilot investigation using regression-based machine learning techniques to forecast alterations in trunk, hip, and knee movements subsequent to a 12-week strength training for people who have low back pain (LBP). The system uses a feature extraction algorithm to calculate the range of motion in the sagittal plane for the knee, trunk, and hip and 12 different regression machine learning algorithms. The results show that Ensemble Tree with LSBoost demonstrated the utmost accuracy in prognosticating trunk movement. Meanwhile, the Ensemble Tree approach, specifically LSBoost, exhibited the highest predictive precision for hip movement. The Gaussian regression with the kernel chosen as exponential returned the highest prediction accuracy for knee movement. These regression models hold the potential to significantly enhance the precision of visualisation of the treatment output for individuals afflicted with LBP.",article,0,,,"Phan, Trung C.;Pranata, Adrian;Farragher, Joshua;Bryant, Adam;Nguyen, Hung T.;Chai, Rifai",,,,,,,Sensors,,,SCOPUS,"Phan Trung C., 2024, Sensors",,"Phan Trung C., 2024, Sensors"
+2024,10,https://app.dimensions.ai/details/publication/pub.1169011580,Enhancing digital health services: A machine learning approach to personalized exercise goal setting,20552076241233247,,,Digital Health,10.1177/20552076241233247,2024-02-20,"Fang, Ji;Lee, Vincent CS;Ji, Hao;Wang, Haiyan","Background: The utilization of digital health has increased recently, and these services provide extensive guidance to encourage users to exercise frequently by setting daily exercise goals to promote a healthy lifestyle. These comprehensive guides evolved from the consideration of various personalized behavioral factors. Nevertheless, existing approaches frequently neglect the users' dynamic behavior and the changing in their health conditions.
+Objective: This study aims to fill this gap by developing a machine learning algorithm that dynamically updates auto-suggestion exercise goals using retrospective data and realistic behavior trajectory.
+Methods: We conducted a methodological study by designing a deep reinforcement learning algorithm to evaluate exercise performance, considering fitness-fatigue effects. The deep reinforcement learning algorithm combines deep learning techniques to analyze time series data and infer user's exercise behavior. In addition, we use the asynchronous advantage actor-critic algorithm for reinforcement learning to determine the optimal exercise intensity through exploration and exploitation. The personalized exercise data and biometric data used in this study were collected from publicly available datasets, encompassing walking, sports logs, and running.
+Results: In our study, we conducted the statistical analyses/inferential tests to compare the effectiveness of machine learning approach in exercise goal setting across different exercise goal-setting strategies. The 95% confidence intervals demonstrated the robustness of these findings, emphasizing the superior outcomes of the machine learning approach.
+Conclusions: Our study demonstrates the adaptability of machine learning algorithm to users' exercise preferences and behaviors in exercise goal setting, emphasizing the substantial influence of goal design on service effectiveness.",article,0,,,"Fang, Ji;Lee, Vincent CS;Ji, Hao;Wang, Haiyan",,,,,,,Digital Health,,,SCOPUS,"Fang Ji, 2024, Digital Health",,"Fang Ji, 2024, Digital Health"
+2024,81,https://app.dimensions.ai/details/publication/pub.1169029132,"AI, Machine Learning, and ChatGPT in Hypertension",709,4,,Hypertension,10.1161/hypertensionaha.124.19468,2024-02-21,"Layton, Anita T.","Hypertension, a leading cause of cardiovascular disease and premature death, remains incompletely understood despite extensive research. Indeed, even though numerous drugs are available, achieving adequate blood pressure control remains a challenge, prompting recent interest in artificial intelligence. To promote the use of machine learning in cardiovascular medicine, this review provides a brief introduction to machine learning and reviews its notable applications in hypertension management and research, such as disease diagnosis and prognosis, treatment decisions, and omics data analysis. The challenges and limitations associated with data-driven predictive techniques are also discussed. The goal of this review is to raise awareness and encourage the hypertension research community to consider machine learning as a key component in developing innovative diagnostic and therapeutic tools for hypertension. By integrating traditional cardiovascular risk factors with genomics, socioeconomic, behavioral, and environmental factors, machine learning may aid in the development of precise risk prediction models and personalized treatment approaches for patients with hypertension.",article,0,,,"Layton, Anita T.",,,,,,,Hypertension,716,,SCOPUS,"Layton Anita T., 2024, Hypertension",,"Layton Anita T., 2024, Hypertension"
+2024,52,https://app.dimensions.ai/details/publication/pub.1169057419,A Review of Machine Learning Algorithms for Biomedical Applications,1159,5,,Annals of Biomedical Engineering,10.1007/s10439-024-03459-3,2024-02-21,"Binson, V. A.;Thomas, Sania;Subramoniam, M.;Arun, J.;Naveen, S.;Madhu, S.","As the amount and complexity of biomedical data continue to increase, machine learning methods are becoming a popular tool in creating prediction models for the underlying biomedical processes. Although all machine learning methods aim to fit models to data, the methodologies used can vary greatly and may seem daunting at first. A comprehensive review of various machine learning algorithms per biomedical applications is presented. The key concepts of machine learning are supervised and unsupervised learning, feature selection, and evaluation metrics. Technical insights on the major machine learning methods such as decision trees, random forests, support vector machines, and k-nearest neighbors are analyzed. Next, the dimensionality reduction methods like principal component analysis and t-distributed stochastic neighbor embedding methods, and their applications in biomedical data analysis were reviewed. Moreover, in biomedical applications predominantly feedforward neural networks, convolutional neural networks, and recurrent neural networks are utilized. In addition, the identification of emerging directions in machine learning methodology will serve as a useful reference for individuals involved in biomedical research, clinical practice, and related professions who are interested in understanding and applying machine learning algorithms in their research or practice.",article,0,,,"Binson, V. A.;Thomas, Sania;Subramoniam, M.;Arun, J.;Naveen, S.;Madhu, S.",,,,,,,Annals of Biomedical Engineering,1183,,SCOPUS,"Binson V. A., 2024, Annals of Biomedical Engineering",,"Binson V. A., 2024, Annals of Biomedical Engineering"
+2024,13,https://app.dimensions.ai/details/publication/pub.1169069652,Development of a Machine-Learning–Based Tool for Overnight Orthokeratology Lens Fitting,17,2,,Translational Vision Science & Technology,10.1167/tvst.13.2.17,2024-02-22,"Koo, Seongbong;Kim, Wook Kyum;Park, Yoo Kyung;Jun, Kiwon;Kim, Dongyoung;Ryu, Ik Hee;Kim, Jin Kuk;Yoo, Tae Keun","Purpose: Orthokeratology (ortho-K) is widely used to control myopia. Overnight ortho-K lens fitting with the selection of appropriate parameters is an important technique for achieving successful reductions in myopic refractive error. In this study, we developed a machine-learning model that could select ortho-K lens parameters at an expert level.
+Methods: Machine-learning models were established to predict the optimal ortho-K parameters, including toric lens option (toric or non-toric), overall diameter (OAD; 10.5 or 11.0 mm), base curve (BC), return zone depth (RZD), landing zone angle (LZA), and lens sagittal depth (LensSag). The analysis included 547 eyes of 297 Korean adolescents with myopia or astigmatism. The dataset was randomly divided into training (80%, n = 437 eyes) and validation (20%, n = 110 eyes) sets at the patient level. The model was trained based on clinical ortho-K lens fitting performed by highly experienced experts and ophthalmic measurements.
+Results: The final machine-learning models showed accuracies of 92.7% and 86.4% for predicting the toric lens option and OAD, respectively. The mean absolute errors for the BC, RZD, LZA, and LensSag predictions were 0.052 mm, 2.727 µm, 0.118°, and 5.215 µm, respectively. The machine-learning model outperformed the manufacturer's conventional initial lens selector in predicting BC and RZD.
+Conclusions: We developed an expert-level machine-learning-based model for determining comprehensive ortho-K lens parameters. We also created a web-based application.
+Translational Relevance: This model may provide more accurate fitting parameters for lenses than those of conventional calculations, thus reducing the need to rely on trial and error.",article,0,,,"Koo, Seongbong;Kim, Wook Kyum;Park, Yoo Kyung;Jun, Kiwon;Kim, Dongyoung;Ryu, Ik Hee;Kim, Jin Kuk;Yoo, Tae Keun",,,,,,,Translational Vision Science & Technology,,,SCOPUS,"Koo Seongbong, 2024, Translational Vision Science & Technology",,"Koo Seongbong, 2024, Translational Vision Science & Technology"
+2024,185,https://app.dimensions.ai/details/publication/pub.1169098175,Prediction of Hematoma Expansion in Intracerebral Hemorrhage in 24 Hours by Machine Learning Algorithm,e475,,,World Neurosurgery,10.1016/j.wneu.2024.02.058,2024-02-22,"Du, Chaonan;Li, Yan;Yang, Mingfei;Ma, Qingfang;Ge, Sikai;Ma, Chiyuan","OBJECTIVE: The significance of noncontrast computer tomography (CT) image markers in predicting hematoma expansion (HE) following intracerebral hemorrhage (ICH) within different time intervals in the initial 24 hours after onset may be uncertain. Hence, our objective was to examine the predictive value of clinical factors and CT image markers for HE within the initial 24 hours using machine learning algorithms.
+METHODS: Four machine learning algorithms, including extreme gradient boosting (XGBoost), support vector machine, random forest, and logistic regression, were employed to assess the predictive efficacy of HE within every 6-hour interval during the first 24 hours post-ICH. The area under the receiver operating characteristic curves was utilized to appraise predictive performance across various time periods within the initial 24 hours.
+RESULTS: A total of 604 patients were included, with 326 being male, and 112 experiencing hematoma expansion (HE). The findings from machine learning algorithms revealed that computed tomography (CT) image markers, baseline hematoma volume, and other factors could accurately predict HE. Among these algorithms, XGBoost demonstrated the most robust predictive model results. XGBoost's accuracy at different time intervals was 0.89, 0.82, 0.87, and 0.94, accompanied by F1-scores of 0.89, 0.80, 0.87, and 0.93, respectively. The corresponding area under the curve was 0.96, affirming the precision of the predictive capability.
+CONCLUSIONS: Computed tomography (CT) imaging markers and clinical factors could effectively predict HE within the initial 24 hours across various time periods by machine learning algorithms. In the expansive landscape of big data and multimodal cerebral hemorrhage, machine learning held significant potential within the realm of neuroscience.",article,0,,,"Du, Chaonan;Li, Yan;Yang, Mingfei;Ma, Qingfang;Ge, Sikai;Ma, Chiyuan",,,,,,,World Neurosurgery,e483,,SCOPUS,"Du Chaonan, 2024, World Neurosurgery",,"Du Chaonan, 2024, World Neurosurgery"
+2024,354,https://app.dimensions.ai/details/publication/pub.1169102357,Uncertainty-based saltwater intrusion prediction using integrated Bayesian machine learning modeling (IBMLM) in a deep aquifer,120252,,,Journal of Environmental Management,10.1016/j.jenvman.2024.120252,2024-02-22,"Yin, Jina;Huang, Yulu;Lu, Chunhui;Liu, Zhu","Data-driven machine learning approaches are promising to substitute physically based groundwater numerical models and capture input-output relationships for reducing computational burden. But the performance and reliability are strongly influenced by different sources of uncertainty. Conventional researches generally rely on a stand-alone machine learning surrogate approach and fail to account for errors in model outputs resulting from structural deficiencies. To overcome this issue, this study proposes a flexible integrated Bayesian machine learning modeling (IBMLM) method to explicitly quantify uncertainties originating from structures and parameters of machine learning surrogate models. An Expectation-Maximization (EM) algorithm is combined with Bayesian model averaging (BMA) to find out maximum likelihood and construct posterior predictive distribution. Three machine learning approaches representing different model complexity are incorporated in the framework, including artificial neural network (ANN), support vector machine (SVM) and random forest (RF). The proposed IBMLM method is demonstrated in a field-scale real-world ""1500-foot"" sand aquifer, Baton Rouge, USA, where overexploitation caused serious saltwater intrusion (SWI) issues. This study adds to the understanding of how chloride concentration transport responds to multi-dimensional extraction-injection remediation strategies in a sophisticated saltwater intrusion model. Results show that most IBMLM exhibit r values above 0.98 and NSE values above 0.93, both slightly higher than individual machine learning, confirming that the IBMLM is well established to provide better model predictions than individual machine learning models, while maintaining the advantage of high computing efficiency. The IBMLM is found useful to predict saltwater intrusion without running the physically based numerical simulation model. We conclude that an explicit consideration of machine learning model structure uncertainty along with parameters improves accuracy and reliability of predictions, and also corrects uncertainty bounds. The applicability of the IBMLM framework can be extended in regions where a physical hydrogeologic model is difficult to build due to lack of subsurface information.",article,0,,,"Yin, Jina;Huang, Yulu;Lu, Chunhui;Liu, Zhu",,,,,,,Journal of Environmental Management,,,SCOPUS,"Yin Jina, 2024, Journal of Environmental Management",,"Yin Jina, 2024, Journal of Environmental Management"
+2024,150,https://app.dimensions.ai/details/publication/pub.1169174539,Machine learning algorithms to predict outcomes in children and adolescents with COVID-19: A systematic review,102824,,,Artificial Intelligence in Medicine,10.1016/j.artmed.2024.102824,2024-02-24,"Dos Santos, Adriano Lages;Pinhati, Clara;Perdigão, Jonathan;Galante, Stella;Silva, Ludmilla;Veloso, Isadora;Simões E Silva, Ana Cristina;Oliveira, Eduardo Araújo","BACKGROUND AND OBJECTIVES: We aimed to analyze the study designs, modeling approaches, and performance evaluation metrics in studies using machine learning techniques to develop clinical prediction models for children and adolescents with COVID-19.
+METHODS: We searched four databases for articles published between 01/01/2020 and 10/25/2023, describing the development of multivariable prediction models using any machine learning technique for predicting several outcomes in children and adolescents who had COVID-19.
+RESULTS: We included ten articles, six (60 % [95 % confidence interval (CI) 0.31 - 0.83]) were predictive diagnostic models and four (40% [95 % CI 0.170.69]) were prognostic models. All models were developed to predict a binary outcome (n= 10/10, 100 % [95 % CI 0.72-1]). The most frequently predicted outcome was disease detection (n=3/10, 30% [95 % CI 0.11-0.60]). The most commonly used machine learning models in the studies were tree-based (n=12/33, 36.3% [95 % CI 0.17-0.47]) and neural networks (n=9/27, 33.2% [95% CI 0.15-0.44]).
+CONCLUSION: Our review revealed that attention is required to address problems including small sample sizes, inconsistent reporting practices on data preparation, biases in data sources, lack of reporting metrics such as calibration and discrimination, hyperparameters and other aspects that allow reproducibility by other researchers and might improve the methodology.",article,0,,,"Dos Santos, Adriano Lages;Pinhati, Clara;Perdigão, Jonathan;Galante, Stella;Silva, Ludmilla;Veloso, Isadora;Simões E Silva, Ana Cristina;Oliveira, Eduardo Araújo",,,,,,,Artificial Intelligence in Medicine,,,SCOPUS,"Dos Santos Adriano Lages, 2024, Artificial Intelligence in Medicine",,"Dos Santos Adriano Lages, 2024, Artificial Intelligence in Medicine"
+2024,102,https://app.dimensions.ai/details/publication/pub.1169237114,"Machine learning in health financing: benefits, risks and regulatory needs",216,03,,Bulletin of the World Health Organization,10.2471/blt.23.290333,2024-03-01,"Mathauer, Inke;Oranje, Maarten","There is increasing use of machine learning for the health financing functions (revenue raising, pooling and purchasing), yet evidence lacks for its effects on the universal health coverage (UHC) objectives. This paper provides a synopsis of the use cases of machine learning and their potential benefits and risks. The assessment reveals that the various use cases of machine learning for health financing have the potential to affect all the UHC intermediate objectives - the equitable distribution of resources (both positively and negatively); efficiency (primarily positively); and transparency (both positively and negatively). There are also both positive and negative effects on all three UHC final goals, that is, utilization of health services in line with need, financial protection and quality care. When the use of machine learning facilitates or simplifies health financing tasks that are counterproductive to UHC objectives, there are various risks - for instance risk selection, cost reductions at the expense of quality care, reduced financial protection or over-surveillance. Whether the effects of using machine learning are positive or negative depends on how and for which purpose the technology is applied. Therefore, specific health financing guidance and regulations, particularly for (voluntary) health insurance, are needed. To inform the development of specific health financing guidance and regulation, we propose several key policy and research questions. To gain a better understanding of how machine learning affects health financing for UHC objectives, more systematic and rigorous research should accompany the application of machine learning.",article,0,,,"Mathauer, Inke;Oranje, Maarten",,,,,,,Bulletin of the World Health Organization,224,,SCOPUS,"Mathauer Inke, 2024, Bulletin of the World Health Organization",,"Mathauer Inke, 2024, Bulletin of the World Health Organization"
+2024,5,https://app.dimensions.ai/details/publication/pub.1169274476,Integrating machine learning and genome editing for crop improvement,262,2,,aBIOTECH,10.1007/s42994-023-00133-5,2024-02-29,"Chen, Long;Liu, Guanqing;Zhang, Tao","Genome editing is a promising technique that has been broadly utilized for basic gene function studies and trait improvements. Simultaneously, the exponential growth of computational power and big data now promote the application of machine learning for biological research. In this regard, machine learning shows great potential in the refinement of genome editing systems and crop improvement. Here, we review the advances of machine learning to genome editing optimization, with emphasis placed on editing efficiency and specificity enhancement. Additionally, we demonstrate how machine learning bridges genome editing and crop breeding, by accurate key site detection and guide RNA design. Finally, we discuss the current challenges and prospects of these two techniques in crop improvement. By integrating advanced genome editing techniques with machine learning, progress in crop breeding will be further accelerated in the future.",article,0,,,"Chen, Long;Liu, Guanqing;Zhang, Tao",,,,,,,aBIOTECH,277,,SCOPUS,"Chen Long, 2024, aBIOTECH",,"Chen Long, 2024, aBIOTECH"
+2024,14,https://app.dimensions.ai/details/publication/pub.1169300168,Migraine headache (MH) classification using machine learning methods with data augmentation,5180,1,,Scientific Reports,10.1038/s41598-024-55874-0,2024-03-02,"Khan, Lal;Shahreen, Moudasra;Qazi, Atika;Jamil Ahmed Shah, Syed;Hussain, Sabir;Chang, Hsien-Tsung","Migraine headache, a prevalent and intricate neurovascular disease, presents significant challenges in its clinical identification. Existing techniques that use subjective pain intensity measures are insufficiently accurate to make a reliable diagnosis. Even though headaches are a common condition with poor diagnostic specificity, they have a significant negative influence on the brain, body, and general human function. In this era of deeply intertwined health and technology, machine learning (ML) has emerged as a crucial force in transforming every aspect of healthcare, utilizing advanced facilities ML has shown groundbreaking achievements related to developing classification and automatic predictors. With this, deep learning models, in particular, have proven effective in solving complex problems spanning computer vision and data analytics. Consequently, the integration of ML in healthcare has become vital, especially in developing countries where limited medical resources and lack of awareness prevail, the urgent need to forecast and categorize migraines using artificial intelligence (AI) becomes even more crucial. By training these models on a publicly available dataset, with and without data augmentation. This study focuses on leveraging state-of-the-art ML algorithms, including support vector machine (SVM), K-nearest neighbors (KNN), random forest (RF), decision tree (DST), and deep neural networks (DNN), to predict and classify various types of migraines. The proposed models with data augmentations were trained to classify seven various types of migraine. The proposed models with data augmentations were trained to classify seven various types of migraine. The revealed results show that DNN, SVM, KNN, DST, and RF achieved an accuracy of 99.66%, 94.60%, 97.10%, 88.20%, and 98.50% respectively with data augmentation highlighting the transformative potential of AI in enhancing migraine diagnosis.",article,0,,,"Khan, Lal;Shahreen, Moudasra;Qazi, Atika;Jamil Ahmed Shah, Syed;Hussain, Sabir;Chang, Hsien-Tsung",,,,,,,Scientific Reports,,,SCOPUS,"Khan Lal, 2024, Scientific Reports",,"Khan Lal, 2024, Scientific Reports"
+2024,185,https://app.dimensions.ai/details/publication/pub.1169310647,Using machine learning to link electronic health records in cancer registries: On the tradeoff between linkage quality and manual effort,105387,,,International Journal of Medical Informatics,10.1016/j.ijmedinf.2024.105387,2024-02-28,"Röchner, Philipp;Rothlauf, Franz","BACKGROUND: Cancer registries link a large number of electronic health records reported by medical institutions to already registered records of the matching individual and tumor. Records are automatically linked using deterministic and probabilistic approaches; machine learning is rarely used. Records that cannot be matched automatically with sufficient accuracy are typically processed manually. For application, it is important to know how well record linkage approaches match real-world records and how much manual effort is required to achieve the desired linkage quality. We study the task of linking reported records to the matching registered tumor in cancer registries.
+METHODS: We compare the tradeoff between linkage quality and manual effort of five machine learning methods (logistic regression, random forest, gradient boosting, neural network, and a stacked method) to a deterministic baseline. The record linkage methods are compared in a two-class setting (no-match/ match) and a three-class setting (no-match/ undecided/ match). A cancer registry collected and linked the dataset consisting of categorical variables matching 145,755 reported records with 33,289 registered tumors.
+RESULTS: In the two-class setting, the gradient boosting, neural network, and stacked models have higher accuracy and F1 score (accuracy: 0.968-0.978, F1 score: 0.983-0.988) than the deterministic baseline (accuracy: 0.964, F1 score: 0.980) when the same records are manually processed (0.89% of all records). In the three-class setting, these three machine learning methods can automatically process all reported records and still have higher accuracy and F1 score than the deterministic baseline. The linkage quality of the machine learning methods studied, except for the neural network, increase as the number of manually processed records increases.
+CONCLUSION: Machine learning methods can significantly improve linkage quality and reduce the manual effort required by medical coders to match tumor records in cancer registries compared to a deterministic baseline. Our results help cancer registries estimate how linkage quality increases as more records are manually processed.",article,0,,,"Röchner, Philipp;Rothlauf, Franz",,,,,,,International Journal of Medical Informatics,,,SCOPUS,"Röchner Philipp, 2024, International Journal of Medical Informatics",,"Röchner Philipp, 2024, International Journal of Medical Informatics"
+2024,15,https://app.dimensions.ai/details/publication/pub.1169399766,The use of machine learning on administrative and survey data to predict suicidal thoughts and behaviors: a systematic review,1291362,,,Frontiers in Psychiatry,10.3389/fpsyt.2024.1291362,2024-03-04,"Somé, Nibene H.;Noormohammadpour, Pardis;Lange, Shannon","Background: Machine learning is a promising tool in the area of suicide prevention due to its ability to combine the effects of multiple risk factors and complex interactions. The power of machine learning has led to an influx of studies on suicide prediction, as well as a few recent reviews. Our study distinguished between data sources and reported the most important predictors of suicide outcomes identified in the literature.
+Objective: Our study aimed to identify studies that applied machine learning techniques to administrative and survey data, summarize performance metrics reported in those studies, and enumerate the important risk factors of suicidal thoughts and behaviors identified.
+Methods: A systematic literature search of PubMed, Medline, Embase, PsycINFO, Web of Science, Cumulative Index to Nursing and Allied Health Literature (CINAHL), and Allied and Complementary Medicine Database (AMED) to identify all studies that have used machine learning to predict suicidal thoughts and behaviors using administrative and survey data was performed. The search was conducted for articles published between January 1, 2019 and May 11, 2022. In addition, all articles identified in three recently published systematic reviews (the last of which included studies up until January 1, 2019) were retained if they met our inclusion criteria. The predictive power of machine learning methods in predicting suicidal thoughts and behaviors was explored using box plots to summarize the distribution of the area under the receiver operating characteristic curve (AUC) values by machine learning method and suicide outcome (i.e., suicidal thoughts, suicide attempt, and death by suicide). Mean AUCs with 95% confidence intervals (CIs) were computed for each suicide outcome by study design, data source, total sample size, sample size of cases, and machine learning methods employed. The most important risk factors were listed.
+Results: The search strategy identified 2,200 unique records, of which 104 articles met the inclusion criteria. Machine learning algorithms achieved good prediction of suicidal thoughts and behaviors (i.e., an AUC between 0.80 and 0.89); however, their predictive power appears to differ across suicide outcomes. The boosting algorithms achieved good prediction of suicidal thoughts, death by suicide, and all suicide outcomes combined, while neural network algorithms achieved good prediction of suicide attempts. The risk factors for suicidal thoughts and behaviors differed depending on the data source and the population under study.
+Conclusion: The predictive utility of machine learning for suicidal thoughts and behaviors largely depends on the approach used. The findings of the current review should prove helpful in preparing future machine learning models using administrative and survey data.
+Systematic review registration: https://www.crd.york.ac.uk/prospero/display_record.php?ID=CRD42022333454 identifier CRD42022333454.",article,0,,,"Somé, Nibene H.;Noormohammadpour, Pardis;Lange, Shannon",,,,,,,Frontiers in Psychiatry,,,SCOPUS,"Somé Nibene H., 2024, Frontiers in Psychiatry",,"Somé Nibene H., 2024, Frontiers in Psychiatry"
+2024,11,https://app.dimensions.ai/details/publication/pub.1169420390,Systemic lupus in the era of machine learning medicine,e001140,1,,Lupus Science & Medicine,10.1136/lupus-2023-001140,2024-03-04,"Zhan, Kevin;Buhler, Katherine A;Chen, Irene Y;Fritzler, Marvin J;Choi, May Y","Artificial intelligence and machine learning applications are emerging as transformative technologies in medicine. With greater access to a diverse range of big datasets, researchers are turning to these powerful techniques for data analysis. Machine learning can reveal patterns and interactions between variables in large and complex datasets more accurately and efficiently than traditional statistical methods. Machine learning approaches open new possibilities for studying SLE, a multifactorial, highly heterogeneous and complex disease. Here, we discuss how machine learning methods are rapidly being integrated into the field of SLE research. Recent reports have focused on building prediction models and/or identifying novel biomarkers using both supervised and unsupervised techniques for understanding disease pathogenesis, early diagnosis and prognosis of disease. In this review, we will provide an overview of machine learning techniques to discuss current gaps, challenges and opportunities for SLE studies. External validation of most prediction models is still needed before clinical adoption. Utilisation of deep learning models, access to alternative sources of health data and increased awareness of the ethics, governance and regulations surrounding the use of artificial intelligence in medicine will help propel this exciting field forward.",article,0,,,"Zhan, Kevin;Buhler, Katherine A;Chen, Irene Y;Fritzler, Marvin J;Choi, May Y",,,,,,,Lupus Science & Medicine,,,SCOPUS,"Zhan Kevin, 2024, Lupus Science & Medicine",,"Zhan Kevin, 2024, Lupus Science & Medicine"
+2024,48,https://app.dimensions.ai/details/publication/pub.1169425998,Quantum Machine-Based Decision Support System for the Detection of Schizophrenia from EEG Records,29,1,,Journal of Medical Systems,10.1007/s10916-024-02048-0,2024-01-01,"Aksoy, Gamzepelin;Cattan, Grégoire;Chakraborty, Subrata;Karabatak, Murat","Schizophrenia is a serious chronic mental disorder that significantly affects daily life. Electroencephalography (EEG), a method used to measure mental activities in the brain, is among the techniques employed in the diagnosis of schizophrenia. The symptoms of the disease typically begin in childhood and become more pronounced as one grows older. However, it can be managed with specific treatments. Computer-aided methods can be used to achieve an early diagnosis of this illness. In this study, various machine learning algorithms and the emerging technology of quantum-based machine learning algorithm were used to detect schizophrenia using EEG signals. The principal component analysis (PCA) method was applied to process the obtained data in quantum systems. The data, which were reduced in dimensionality, were transformed into qubit form using various feature maps and provided as input to the Quantum Support Vector Machine (QSVM) algorithm. Thus, the QSVM algorithm was applied using different qubit numbers and different circuits in addition to classical machine learning algorithms. All analyses were conducted in the simulator environment of the IBM Quantum Platform. In the classification of this EEG dataset, it is evident that the QSVM algorithm demonstrated superior performance with a 100% success rate when using Pauli X and Pauli Z feature maps. This study serves as proof that quantum machine learning algorithms can be effectively utilized in the field of healthcare.",article,0,,,"Aksoy, Gamzepelin;Cattan, Grégoire;Chakraborty, Subrata;Karabatak, Murat",,,,,,,Journal of Medical Systems,,,SCOPUS,"Aksoy Gamzepelin, 2024, Journal of Medical Systems",,"Aksoy Gamzepelin, 2024, Journal of Medical Systems"
+2024,383,https://app.dimensions.ai/details/publication/pub.1169526733,Mechanism for feature learning in neural networks and backpropagation-free machine learning models,1461,6690,,Science,10.1126/science.adi5639,2024-03-07,"Radhakrishnan, Adityanarayanan;Beaglehole, Daniel;Pandit, Parthe;Belkin, Mikhail","Understanding how neural networks learn features, or relevant patterns in data, for prediction is necessary for their reliable use in technological and scientific applications. In this work, we presented a unifying mathematical mechanism, known as average gradient outer product (AGOP), that characterized feature learning in neural networks. We provided empirical evidence that AGOP captured features learned by various neural network architectures, including transformer-based language models, convolutional networks, multilayer perceptrons, and recurrent neural networks. Moreover, we demonstrated that AGOP, which is backpropagation-free, enabled feature learning in machine learning models, such as kernel machines, that a priori could not identify task-specific features. Overall, we established a fundamental mechanism that captured feature learning in neural networks and enabled feature learning in general machine learning models.",article,0,,,"Radhakrishnan, Adityanarayanan;Beaglehole, Daniel;Pandit, Parthe;Belkin, Mikhail",,,,,,,Science,1467,,SCOPUS,"Radhakrishnan Adityanarayanan, 2024, Science",,"Radhakrishnan Adityanarayanan, 2024, Science"
+2024,10,https://app.dimensions.ai/details/publication/pub.1169543664,Comparison of conventional mathematical model and machine learning model based on recent advances in mathematical models for predicting diabetic kidney disease,20552076241238093,,,Digital Health,10.1177/20552076241238093,2024-01,"Sheng, Yingda;Zhang, Caimei;Huang, Jing;Wang, Dan;Xiao, Qian;Zhang, Haocheng;Ha, Xiaoqin","Previous research suggests that mathematical models could serve as valuable tools for diagnosing or predicting diseases like diabetic kidney disease, which often necessitate invasive examinations for conclusive diagnosis. In the big-data era, there are several mathematical modeling methods, but generally, two types are recognized: conventional mathematical model and machine learning model. Each modeling method has its advantages and disadvantages, but a thorough comparison of the two models is lacking. In this article, we describe and briefly compare the conventional mathematical model and machine learning model, and provide research prospects in this field.",article,0,,,"Sheng, Yingda;Zhang, Caimei;Huang, Jing;Wang, Dan;Xiao, Qian;Zhang, Haocheng;Ha, Xiaoqin",,,,,,,Digital Health,,,SCOPUS,"Sheng Yingda, 2024, Digital Health",,"Sheng Yingda, 2024, Digital Health"
+2024,25,https://app.dimensions.ai/details/publication/pub.1169560131,Deep self-supervised machine learning algorithms with a novel feature elimination and selection approaches for blood test-based multi-dimensional health risks classification,103,1,,BMC Bioinformatics,10.1186/s12859-024-05729-2,2024-03-08,"Tutsoy, Onder;Koç, Gizem Gul","BackgroundBlood test is extensively performed for screening, diagnoses and surveillance purposes. Although it is possible to automatically evaluate the raw blood test data with the advanced deep self-supervised machine learning approaches, it has not been profoundly investigated and implemented yet.ResultsThis paper proposes deep machine learning algorithms with multi-dimensional adaptive feature elimination, self-feature weighting and novel feature selection approaches. To classify the health risks based on the processed data with the deep layers, four machine learning algorithms having various properties from being utterly model free to gradient driven are modified.ConclusionsThe results show that the proposed deep machine learning algorithms can remove the unnecessary features, assign self-importance weights, selects their most informative ones and classify the health risks automatically from the worst-case low to worst-case high values.",article,0,,,"Tutsoy, Onder;Koç, Gizem Gul",,,,,,,BMC Bioinformatics,,,SCOPUS,"Tutsoy Onder, 2024, BMC Bioinformatics",,"Tutsoy Onder, 2024, BMC Bioinformatics"
+2024,,https://app.dimensions.ai/details/publication/pub.1169621271,Machine Learning for Biological Design,319,,,,10.1007/978-1-0716-3658-9_19,2024-03-12,"Blau, Tom;Chades, Iadine;Ong, Cheng Soon","We briefly present machine learning approaches for designing better biological experiments. These approaches build on machine learning predictors and provide additional tools to guide scientific discovery. There are two different kinds of objectives when designing better experiments: to improve the predictive model or to improve the experimental outcome. We survey five different approaches for adaptive experimental design that iteratively search the space of possible experiments while adapting to measured data. The approaches are Bayesian optimization, bandits, reinforcement learning, optimal experimental design, and active learning. These machine learning approaches have shown promise in various areas of biology, and we provide broad guidelines to the practitioner and links to further resources.",inbook,0,,Synthetic Biology,"Blau, Tom;Chades, Iadine;Ong, Cheng Soon",,,,,,,,344,,SCOPUS,"Blau Tom, 2024, ",,"Blau Tom, 2024, "
+2024,19,https://app.dimensions.ai/details/publication/pub.1169657319,"Machine learning algorithm for ventilator mode selection, pressure and volume control",e0299653,3,,PLOS ONE,10.1371/journal.pone.0299653,2024-03-13,"T, Anitha;G, Gopu;P, Arun Mozhi Devan;Assaad, Maher","Mechanical ventilation techniques are vital for preserving individuals with a serious condition lives in the prolonged hospitalization unit. Nevertheless, an imbalance amid the hospitalized people demands and the respiratory structure could cause to inconsistencies in the patient's inhalation. To tackle this problem, this study presents an Iterative Learning PID Controller (ILC-PID), a unique current cycle feedback type controller that helps in gaining the correct pressure and volume. The paper also offers a clear and complete examination of the primarily efficient neural approach for generating optimal inhalation strategies. Moreover, machine learning-based classifiers are used to evaluate the precision and performance of the ILC-PID controller. These classifiers able to forecast and choose the perfect type for various inhalation modes, eliminating the likelihood that patients will require mechanical ventilation. In pressure control, the suggested accurate neural categorization exhibited an average accuracy rate of 88.2% in continuous positive airway pressure (CPAP) mode and 91.7% in proportional assist ventilation (PAV) mode while comparing with the other classifiers like ensemble classifier has reduced accuracy rate of 69.5% in CPAP mode and also 71.7% in PAV mode. An average accuracy of 78.9% rate in other classifiers compared to neutral network in CPAP. The neural model had an typical range of 81.6% in CPAP mode and 84.59% in PAV mode for 20 cm H2O of volume created by the neural network classifier in the volume investigation. Compared to the other classifiers, an average of 72.17% was in CPAP mode, and 77.83% was in PAV mode in volume control. Different approaches, such as decision trees, optimizable Bayes trees, naive Bayes trees, nearest neighbour trees, and an ensemble of trees, were also evaluated regarding the accuracy by confusion matrix concept, training duration, specificity, sensitivity, and F1 score.",article,0,,,"T, Anitha;G, Gopu;P, Arun Mozhi Devan;Assaad, Maher",,,,,,,PLOS ONE,,,SCOPUS,"T Anitha, 2024, PLOS ONE",,"T Anitha, 2024, PLOS ONE"
+2024,482,https://app.dimensions.ai/details/publication/pub.1169676761,Machine Learning Did Not Outperform Conventional Competing Risk Modeling to Predict Revision Arthroplasty,1472,8,,Clinical Orthopaedics and Related Research,10.1097/corr.0000000000003018,2024-03-12,"Oosterhoff, Jacobien H. F.;de Hond, Anne A. H.;Peters, Rinne M.;van Steenbergen, Liza N.;Sorel, Juliette C.;Zijlstra, Wierd P.;Poolman, Rudolf W.;Ring, David;Jutte, Paul C.;Kerkhoffs, Gino M. M. J.;Putter, Hein;Steyerberg, Ewout W.;Doornberg, Job N.;Consortium,;the Machine Learning","BACKGROUND: Estimating the risk of revision after arthroplasty could inform patient and surgeon decision-making. However, there is a lack of well-performing prediction models assisting in this task, which may be due to current conventional modeling approaches such as traditional survivorship estimators (such as Kaplan-Meier) or competing risk estimators. Recent advances in machine learning survival analysis might improve decision support tools in this setting. Therefore, this study aimed to assess the performance of machine learning compared with that of conventional modeling to predict revision after arthroplasty.
+QUESTION/PURPOSE: Does machine learning perform better than traditional regression models for estimating the risk of revision for patients undergoing hip or knee arthroplasty?
+METHODS: Eleven datasets from published studies from the Dutch Arthroplasty Register reporting on factors associated with revision or survival after partial or total knee and hip arthroplasty between 2018 and 2022 were included in our study. The 11 datasets were observational registry studies, with a sample size ranging from 3038 to 218,214 procedures. We developed a set of time-to-event models for each dataset, leading to 11 comparisons. A set of predictors (factors associated with revision surgery) was identified based on the variables that were selected in the included studies. We assessed the predictive performance of two state-of-the-art statistical time-to-event models for 1-, 2-, and 3-year follow-up: a Fine and Gray model (which models the cumulative incidence of revision) and a cause-specific Cox model (which models the hazard of revision). These were compared with a machine-learning approach (a random survival forest model, which is a decision tree-based machine-learning algorithm for time-to-event analysis). Performance was assessed according to discriminative ability (time-dependent area under the receiver operating curve), calibration (slope and intercept), and overall prediction error (scaled Brier score). Discrimination, known as the area under the receiver operating characteristic curve, measures the model's ability to distinguish patients who achieved the outcomes from those who did not and ranges from 0.5 to 1.0, with 1.0 indicating the highest discrimination score and 0.50 the lowest. Calibration plots the predicted versus the observed probabilities; a perfect plot has an intercept of 0 and a slope of 1. The Brier score calculates a composite of discrimination and calibration, with 0 indicating perfect prediction and 1 the poorest. A scaled version of the Brier score, 1 - (model Brier score/null model Brier score), can be interpreted as the amount of overall prediction error.
+RESULTS: Using machine learning survivorship analysis, we found no differences between the competing risks estimator and traditional regression models for patients undergoing arthroplasty in terms of discriminative ability (patients who received a revision compared with those who did not). We found no consistent differences between the validated performance (time-dependent area under the receiver operating characteristic curve) of different modeling approaches because these values ranged between -0.04 and 0.03 across the 11 datasets (the time-dependent area under the receiver operating characteristic curve of the models across 11 datasets ranged between 0.52 to 0.68). In addition, the calibration metrics and scaled Brier scores produced comparable estimates, showing no advantage of machine learning over traditional regression models.
+CONCLUSION: Machine learning did not outperform traditional regression models.
+CLINICAL RELEVANCE: Neither machine learning modeling nor traditional regression methods were sufficiently accurate in order to offer prognostic information when predicting revision arthroplasty. The benefit of these modeling approaches may be limited in this context.",article,0,,,"Oosterhoff, Jacobien H. F.;de Hond, Anne A. H.;Peters, Rinne M.;van Steenbergen, Liza N.;Sorel, Juliette C.;Zijlstra, Wierd P.;Poolman, Rudolf W.;Ring, David;Jutte, Paul C.;Kerkhoffs, Gino M. M. J.;Putter, Hein;Steyerberg, Ewout W.;Doornberg, Job N.;Consortium,;the Machine Learning",,,,,,,Clinical Orthopaedics and Related Research,1482,,SCOPUS,"Oosterhoff Jacobien H. F., 2024, Clinical Orthopaedics and Related Research",,"Oosterhoff Jacobien H. F., 2024, Clinical Orthopaedics and Related Research"
+2024,10,https://app.dimensions.ai/details/publication/pub.1169717489,Heart failure survival prediction using novel transfer learning based probabilistic features,e1894,,,PeerJ Computer Science,10.7717/peerj-cs.1894,2024-03-12,"Qadri, Azam Mehmood;Hashmi, Muhammad Shadab Alam;Raza, Ali;Zaidi, Syed Ali Jafar;Rehman, Atiq ur","Heart failure is a complex cardiovascular condition characterized by the heart's inability to pump blood effectively, leading to a cascade of physiological changes. Predicting survival in heart failure patients is crucial for optimizing patient care and resource allocation. This research aims to develop a robust survival prediction model for heart failure patients using advanced machine learning techniques. We analyzed data from 299 hospitalized heart failure patients, addressing the issue of imbalanced data with the Synthetic Minority Oversampling (SMOTE) method. Additionally, we proposed a novel transfer learning-based feature engineering approach that generates a new probabilistic feature set from patient data using ensemble trees. Nine fine-tuned machine learning models are built and compared to evaluate performance in patient survival prediction. Our novel transfer learning mechanism applied to the random forest model outperformed other models and state-of-the-art studies, achieving a remarkable accuracy of 0.975. All models underwent evaluation using 10-fold cross-validation and tuning through hyperparameter optimization. The findings of this study have the potential to advance the field of cardiovascular medicine by providing more accurate and personalized prognostic assessments for individuals with heart failure.",article,0,,,"Qadri, Azam Mehmood;Hashmi, Muhammad Shadab Alam;Raza, Ali;Zaidi, Syed Ali Jafar;Rehman, Atiq ur",,,,,,,PeerJ Computer Science,,,SCOPUS,"Qadri Azam Mehmood, 2024, PeerJ Computer Science",,"Qadri Azam Mehmood, 2024, PeerJ Computer Science"
+2024,128,https://app.dimensions.ai/details/publication/pub.1169741325,Predicting Rate Constants of Alkane Cracking Reactions Using Machine Learning,2383,12,,The Journal of Physical Chemistry A,10.1021/acs.jpca.4c00912,2024-03-13,"Zhang, Yu;Xia, Min;Song, Hongwei;Yang, Minghui","Calculating the thermal rate constants of elementary combustion reactions is of great importance in theoretical chemistry. Machine learning has become a powerful, data-driven method for predicting rate constants nowadays. Recently, the molecular similarity combined with the topological indices were proposed to represent the hydrogen abstraction reactions of alkane [J. Chem. Inf. Model. 2023, 63, 5097-5106], which are, however, not applicable to alkane cracking reactions, another important class of combustion reactions, due to the cleavage of the C-C bond. In this work, a new feature selection scheme is proposed to describe both bimolecular and unimolecular cracking reactions. Molecular descriptors are elaborately selected individually for both reactants and products from those generated by the open-source software RDKit. Machine learning models combined with these molecular descriptors are proven to have the ability to accurately predict rate constants of both the hydrogen abstraction reactions of alkanes by CH3 and the alkane cracking reactions. The average deviation of the XGB-FNN model for prediction is around 60% for the hydrogen abstraction reactions of alkanes and 100% for the alkane cracking reactions. It is expected that the descriptors proposed in this work can be applied to build machine learning models for other reactions.",article,0,,,"Zhang, Yu;Xia, Min;Song, Hongwei;Yang, Minghui",,,,,,,The Journal of Physical Chemistry A,2392,,SCOPUS,"Zhang Yu, 2024, The Journal of Physical Chemistry A",,"Zhang Yu, 2024, The Journal of Physical Chemistry A"
+2024,15,https://app.dimensions.ai/details/publication/pub.1169837963,Application of machine learning combined with population pharmacokinetics to improve individual prediction of vancomycin clearance in simulated adult patients,1352113,,,Frontiers in Pharmacology,10.3389/fphar.2024.1352113,2024-03-18,"Li, Guodong;Sun, Yubo;Zhu, Liping","Background and aim: Vancomycin, a glycopeptide antimicrobial drug. PPK has problems such as difficulty in accurately reflecting inter-individual differences, and the PPK model may not be accurate enough to predict individual pharmacokinetic parameters. Therefore, the aim of this study is to investigate whether the application of machine learning combined with the PPK method can improve the prediction of vancomycin CL in adult Chinese patients.
+Methods: In the first step, a vancomycin CL prediction model for Chinese adult patients is given by PPK and Hamilton Monte Carlo sampling is used to obtain the reference CL of 1,000 patients; the second step is to obtain the final prediction model by machine learning using an appropriate model for the predictive factor and the reference CL; and the third step is to randomly select, in the simulated data, a total of 250 patients for prediction effect evaluation.
+Results: XGBoost model is selected as final machine learning model. More than four-fifths of the subjects' predictive values regarding vancomycin CL are improved by machine learning combined with PPK. Machine learning combined with PPK models is more stable in performance than the PPK method alone for predicting models.
+Conclusion: The first combination of PPK and machine learning for predictive modeling of vancomycin clearance in adult patients. It provides a reference for clinical pharmacists or clinicians to optimize the initial dosage given to ensure the effectiveness and safety of drug therapy for each patient.",article,0,,,"Li, Guodong;Sun, Yubo;Zhu, Liping",,,,,,,Frontiers in Pharmacology,,,SCOPUS,"Li Guodong, 2024, Frontiers in Pharmacology",,"Li Guodong, 2024, Frontiers in Pharmacology"
+2024,14,https://app.dimensions.ai/details/publication/pub.1169886962,Inter-reviewer reliability of human literature reviewing and implications for the introduction of machine-assisted systematic reviews: a mixed-methods review,e076912,3,,BMJ Open,10.1136/bmjopen-2023-076912,2024-03-19,"Hanegraaf, Piet;Wondimu, Abrham;Mosselman, Jacob Jan;de Jong, Rutger;Abogunrin, Seye;Queiros, Luisa;Lane, Marie;Postma, Maarten J;Boersma, Cornelis;van der Schans, Jurjen","OBJECTIVES: Our main objective is to assess the inter-reviewer reliability (IRR) reported in published systematic literature reviews (SLRs). Our secondary objective is to determine the expected IRR by authors of SLRs for both human and machine-assisted reviews.
+METHODS: We performed a review of SLRs of randomised controlled trials using the PubMed and Embase databases. Data were extracted on IRR by means of Cohen's kappa score of abstract/title screening, full-text screening and data extraction in combination with review team size, items screened and the quality of the review was assessed with the A MeaSurement Tool to Assess systematic Reviews 2. In addition, we performed a survey of authors of SLRs on their expectations of machine learning automation and human performed IRR in SLRs.
+RESULTS: After removal of duplicates, 836 articles were screened for abstract, and 413 were screened full text. In total, 45 eligible articles were included. The average Cohen's kappa score reported was 0.82 (SD=0.11, n=12) for abstract screening, 0.77 (SD=0.18, n=14) for full-text screening, 0.86 (SD=0.07, n=15) for the whole screening process and 0.88 (SD=0.08, n=16) for data extraction. No association was observed between the IRR reported and review team size, items screened and quality of the SLR. The survey (n=37) showed overlapping expected Cohen's kappa values ranging between approximately 0.6-0.9 for either human or machine learning-assisted SLRs. No trend was observed between reviewer experience and expected IRR. Authors expect a higher-than-average IRR for machine learning-assisted SLR compared with human based SLR in both screening and data extraction.
+CONCLUSION: Currently, it is not common to report on IRR in the scientific literature for either human and machine learning-assisted SLRs. This mixed-methods review gives first guidance on the human IRR benchmark, which could be used as a minimal threshold for IRR in machine learning-assisted SLRs.
+PROSPERO REGISTRATION NUMBER: CRD42023386706.",article,0,,,"Hanegraaf, Piet;Wondimu, Abrham;Mosselman, Jacob Jan;de Jong, Rutger;Abogunrin, Seye;Queiros, Luisa;Lane, Marie;Postma, Maarten J;Boersma, Cornelis;van der Schans, Jurjen",,,,,,,BMJ Open,,,SCOPUS,"Hanegraaf Piet, 2024, BMJ Open",,"Hanegraaf Piet, 2024, BMJ Open"
+2024,18,https://app.dimensions.ai/details/publication/pub.1170103651,The value of machine learning technology and artificial intelligence to enhance patient safety in spine surgery: a review,11,1,,Patient Safety in Surgery,10.1186/s13037-024-00393-0,2024-03-25,"Arjmandnia, Fatemeh;Alimohammadi, Ehsan","Machine learning algorithms have the potential to significantly improve patient safety in spine surgeries by providing healthcare professionals with valuable insights and predictive analytics. These algorithms can analyze preoperative data, such as patient demographics, medical history, and imaging studies, to identify potential risk factors and predict postoperative complications. By leveraging machine learning, surgeons can make more informed decisions, personalize treatment plans, and optimize surgical techniques to minimize risks and enhance patient outcomes. Moreover, by harnessing the power of machine learning, healthcare providers can make data-driven decisions, personalize treatment plans, and optimize surgical interventions, ultimately enhancing the quality of care in spine surgery. The findings highlight the potential of integrating artificial intelligence in healthcare settings to mitigate risks and enhance patient safety in surgical practices. The integration of machine learning holds immense potential for enhancing patient safety in spine surgeries. By leveraging advanced algorithms and predictive analytics, healthcare providers can optimize surgical decision-making, mitigate risks, and personalize treatment strategies to improve outcomes and ensure the highest standard of care for patients undergoing spine procedures. As technology continues to evolve, the future of spine surgery lies in harnessing the power of machine learning to transform patient safety and revolutionize surgical practices. The present review article was designed to discuss the available literature in the field of machine learning techniques to enhance patient safety in spine surgery.",article,0,,,"Arjmandnia, Fatemeh;Alimohammadi, Ehsan",,,,,,,Patient Safety in Surgery,,,SCOPUS,"Arjmandnia Fatemeh, 2024, Patient Safety in Surgery",,"Arjmandnia Fatemeh, 2024, Patient Safety in Surgery"
+2024,40,https://app.dimensions.ai/details/publication/pub.1170158580,Accuracy of machine learning in the diagnosis of odontogenic cysts and tumors: a systematic review and meta-analysis,342,3,,Oral Radiology,10.1007/s11282-024-00745-7,2024-03-26,"Shrivastava, Priyanshu Kumar;Hasan, Shamimul;Abid, Laraib;Injety, Ranjit;Shrivastav, Ayush Kumar;Sybil, Deborah","BackgroundThe recent impact of artificial intelligence in diagnostic services has been enormous. Machine learning tools offer an innovative alternative to diagnose cysts and tumors radiographically that pose certain challenges due to the near similar presentation, anatomical variations, and superimposition. It is crucial that the performance of these models is evaluated for their clinical applicability in diagnosing cysts and tumors.MethodsA comprehensive literature search was carried out on eminent databases for published studies between January 2015 and December 2022. Studies utilizing machine learning models in the diagnosis of odontogenic cysts or tumors using Orthopantomograms (OPG) or Cone Beam Computed Tomographic images (CBCT) were included. QUADAS-2 tool was used for the assessment of the risk of bias and applicability concerns. Meta-analysis was performed for studies reporting sufficient performance metrics, separately for OPG and CBCT.Results16 studies were included for qualitative synthesis including a total of 10,872 odontogenic cysts and tumors. The sensitivity and specificity of machine learning in diagnosing cysts and tumors through OPG were 0.83 (95% CI 0.81–0.85) and 0.82 (95% CI 0.81–0.83) respectively. Studies utilizing CBCT noted a sensitivity of 0.88 (95% CI 0.87–0.88) and specificity of 0.88 (95% CI 0.87–0.89). Highest classification accuracy was 100%, noted for Support Vector Machine classifier.ConclusionThe results from the present review favoured machine learning models to be used as a clinical adjunct in the radiographic diagnosis of odontogenic cysts and tumors, provided they undergo robust training with a huge dataset. However, the arduous process, investment, and certain ethical concerns associated with the total dependence on technology must be taken into account. Standardized reporting of outcomes for diagnostic studies utilizing machine learning methods is recommended to ensure homogeneity in assessment criteria, facilitate comparison between different studies, and promote transparency in research findings.",article,0,,,"Shrivastava, Priyanshu Kumar;Hasan, Shamimul;Abid, Laraib;Injety, Ranjit;Shrivastav, Ayush Kumar;Sybil, Deborah",,,,,,,Oral Radiology,356,,SCOPUS,"Shrivastava Priyanshu Kumar, 2024, Oral Radiology",,"Shrivastava Priyanshu Kumar, 2024, Oral Radiology"
+2024,25,https://app.dimensions.ai/details/publication/pub.1170212114,Prediction and Diagnosis of Breast Cancer Using Machine and Modern Deep Learning Models,1077,3,,Asian Pacific Journal of Cancer Prevention : APJCP,10.31557/apjcp.2024.25.3.1077,2024-03-01,"Devi, Seeta;Ghanekar, Ruchika Kaul;Pande, Jayshree Ashok;Dumbr, Dipali;Chavan, Ranjana;Gupta, Harshita","Background &Objective: Carcinoma of the breast is one of the major issues causing death in women, especially in developing countries. Timely prediction, detection, diagnosis, and efficient therapies have become critical to reducing death rates. Increased use of artificial intelligence, machine, and deep learning techniques create more accurate and trustworthy models for predicting and detecting breast cancer. This study aims to examine the effectiveness of several machine and modern deep learning models for prediction and diagnosis of breast cancer.
+METHODS: This research compares traditional machine learning classification methods to innovative techniques that use deep learning models. Established usual classification models such as k-Nearest Neighbors (kNN), Gradient Boosting, Support Vector Machine (SVM), Neural Network, CN2 rule inducer, Naive Bayes, Stochastic Gradient Descent (SGD), and Tree, and deep learning models such as Neural Decision Forest and Multilayer Perceptron used. The investigation, which was carried out using the Orange and Python tools, evaluates their diagnostic effectiveness in breast cancer detection. The evaluation uses UCI's publicly accessible Wisconsin Diagnostic Data Set, enabling transparency and accessibility in the study approach.
+RESULT: The mean radius ranges from 6.981 to 28.110, while the mean texture runs from 9.71 to 39.28 in malignant and benign cases. Gradient boosting and CN2 rule inducer classifiers outperform SVM in accuracy and sensitivity, whereas SVM has the lowest accuracy and sensitivity at 88%. The CN2 rule inducer classifier achieves the greatest ROC curve score for benign and malignant breast cancer datasets, with an AUC score of 0.98%. MLP displays distinguish positive and negative classes, with a higher AUC-ROC of 0.9959. with accuracy of 96.49%, precision of 96.57%, recall of 96.49%, and an F1-Score of 96.50%.
+CONCLUSION: Among the most commonly used classifier models, CN2 rule and GB performed better than other models. However, MLP from deep learning produced the greatest overall performance.",article,0,,,"Devi, Seeta;Ghanekar, Ruchika Kaul;Pande, Jayshree Ashok;Dumbr, Dipali;Chavan, Ranjana;Gupta, Harshita",,,,,,,Asian Pacific Journal of Cancer Prevention : APJCP,1085,,SCOPUS,"Devi Seeta, 2024, Asian Pacific Journal of Cancer Prevention : APJCP",,"Devi Seeta, 2024, Asian Pacific Journal of Cancer Prevention : APJCP"
+2024,196,https://app.dimensions.ai/details/publication/pub.1170299839,Applications of machine learning in phylogenetics,108066,,,Molecular Phylogenetics and Evolution,10.1016/j.ympev.2024.108066,2024-03-31,"Mo, Yu K;Hahn, Matthew W;Smith, Megan L","Machine learning has increasingly been applied to a wide range of questions in phylogenetic inference. Supervised machine learning approaches that rely on simulated training data have been used to infer tree topologies and branch lengths, to select substitution models, and to perform downstream inferences of introgression and diversification. Here, we review how researchers have used several promising machine learning approaches to make phylogenetic inferences. Despite the promise of these methods, several barriers prevent supervised machine learning from reaching its full potential in phylogenetics. We discuss these barriers and potential paths forward. In the future, we expect that the application of careful network designs and data encodings will allow supervised machine learning to accommodate the complex processes that continue to confound traditional phylogenetic methods.",article,0,,,"Mo, Yu K;Hahn, Matthew W;Smith, Megan L",,,,,,,Molecular Phylogenetics and Evolution,,,SCOPUS,"Mo Yu K, 2024, Molecular Phylogenetics and Evolution",,"Mo Yu K, 2024, Molecular Phylogenetics and Evolution"
+2024,8,https://app.dimensions.ai/details/publication/pub.1170312959,Learning algorithms for identification of whisky using portable Raman spectroscopy,100729,,,Current Research in Food Science,10.1016/j.crfs.2024.100729,2024-04-01,"Lee, Kwang Jun;Trowbridge, Alexander C.;Bruce, Graham D.;Dwapanyin, George O.;Dunning, Kylie R.;Dholakia, Kishan;Schartner, Erik P.","Reliable identification of high-value products such as whisky is vital due to rising issues of brand substitution and quality control in the industry. We have developed a novel framework that can perform whisky analysis directly from raw spectral data with no human intervention by integrating machine learning models with a portable Raman device. We demonstrate that machine learning models can achieve over 99% accuracy in brand or product identification across twenty-eight commercial samples. To demonstrate the flexibility of this approach, we utilized the same algorithms to quantify ethanol concentrations, as well as measuring methanol levels in spiked whisky samples. To demonstrate the potential use of these algorithms in a real-world environment we tested our algorithms on spectral measurements performed through the original whisky bottle. Through the bottle measurements are facilitated by a beam geometry hitherto not applied to whisky brand identification in conjunction with machine learning. Removing the need for decanting greatly enhances the practicality and commercial potential of this technique, enabling its use in detecting counterfeit or adulterated spirits and other high-value liquids. The techniques established in this paper aim to function as a rapid and non-destructive initial screening mechanism for detecting falsified and tampered spirits, complementing more comprehensive and stringent analytical methods.",article,0,,,"Lee, Kwang Jun;Trowbridge, Alexander C.;Bruce, Graham D.;Dwapanyin, George O.;Dunning, Kylie R.;Dholakia, Kishan;Schartner, Erik P.",,,,,,,Current Research in Food Science,,,SCOPUS,"Lee Kwang Jun, 2024, Current Research in Food Science",,"Lee Kwang Jun, 2024, Current Research in Food Science"
+2024,24,https://app.dimensions.ai/details/publication/pub.1170320334,Machine Learning Applications in Optical Fiber Sensing: A Research Agenda,2200,7,,Sensors,10.3390/s24072200,2024-03-29,"Reyes-Vera, Erick;Valencia-Arias, Alejandro;García-Pineda, Vanessa;Aurora-Vigo, Edward Florencio;Vásquez, Halyn Alvarez;Sánchez, Gustavo","The constant monitoring and control of various health, infrastructure, and natural factors have led to the design and development of technological devices in a wide range of fields. This has resulted in the creation of different types of sensors that can be used to monitor and control different environments, such as fire, water, temperature, and movement, among others. These sensors detect anomalies in the input data to the system, allowing alerts to be generated for early risk detection. The advancement of artificial intelligence has led to improved sensor systems and networks, resulting in devices with better performance and more precise results by incorporating various features. The aim of this work is to conduct a bibliometric analysis using the PRISMA 2020 set to identify research trends in the development of machine learning applications in fiber optic sensors. This methodology facilitates the analysis of a dataset comprised of documents obtained from Scopus and Web of Science databases. It enables the evaluation of both the quantity and quality of publications in the study area based on specific criteria, such as trends, key concepts, and advances in concepts over time. The study found that deep learning techniques and fiber Bragg gratings have been extensively researched in infrastructure, with a focus on using fiber optic sensors for structural health monitoring in future research. One of the main limitations is the lack of research on the use of novel materials, such as graphite, for designing fiber optic sensors. One of the main limitations is the lack of research on the use of novel materials, such as graphite, for designing fiber optic sensors. This presents an opportunity for future studies.",article,0,,,"Reyes-Vera, Erick;Valencia-Arias, Alejandro;García-Pineda, Vanessa;Aurora-Vigo, Edward Florencio;Vásquez, Halyn Alvarez;Sánchez, Gustavo",,,,,,,Sensors,,,SCOPUS,"Reyes-Vera Erick, 2024, Sensors",,"Reyes-Vera Erick, 2024, Sensors"
+2024,13,https://app.dimensions.ai/details/publication/pub.1170343082,Code-Free Machine Learning Approach for EVO-ICL Vault Prediction: A Retrospective Two-Center Study,4,4,,Translational Vision Science & Technology,10.1167/tvst.13.4.4,2024-04-02,"Shin, Daeun;Choi, Hannuy;Kim, Dongyoung;Park, Jaekyung;Yoo, Tae Keun;Koh, Kyungmin","Purpose: Establishing a development environment for machine learning is difficult for medical researchers because learning to code is a major barrier. This study aimed to improve the accuracy of a postoperative vault value prediction model for implantable collamer lens (ICL) sizing using machine learning without coding experience.
+Methods: We used Orange data mining, a recently developed open-source, code-free machine learning tool. This study included eye-pair data from 294 patients from the B&VIIT Eye Center and 26 patients from Kim's Eye Hospital. The model was developed using OCULUS Pentacam data from the B&VIIT Eye Center and was internally evaluated through 10-fold cross-validation. External validation was performed using data from Kim's Eye Hospital.
+Results: The machine learning model was successfully trained using the data collected without coding. The random forest showed mean absolute errors of 124.8 µm and 152.4 µm for the internal 10-fold cross-validation and the external validation, respectively. For high vault prediction (>750 µm), the random forest showed areas under the curve of 0.725 and 0.760 for the internal and external validation datasets, respectively. The developed model performed better than the classic statistical regression models and the Google no-code platform.
+Conclusions: Applying a no-code machine learning tool to our ICL implantation datasets showed a more accurate prediction of the postoperative vault than the classic regression and Google no-code models.
+Translational Relevance: Because of significant bias in measurements and surgery between clinics, the no-code development of a customized machine learning nomogram will improve the accuracy of ICL implantation.",article,0,,,"Shin, Daeun;Choi, Hannuy;Kim, Dongyoung;Park, Jaekyung;Yoo, Tae Keun;Koh, Kyungmin",,,,,,,Translational Vision Science & Technology,,,SCOPUS,"Shin Daeun, 2024, Translational Vision Science & Technology",,"Shin Daeun, 2024, Translational Vision Science & Technology"
+2024,14,https://app.dimensions.ai/details/publication/pub.1170366718,Exploring the impact of pathogenic microbiome in orthopedic diseases: machine learning and deep learning approaches,1380136,,,Frontiers in Cellular and Infection Microbiology,10.3389/fcimb.2024.1380136,2024-04-03,"Shao, Zhuce;Gao, Huanshen;Wang, Benlong;Zhang, Shenqi","Osteoporosis, arthritis, and fractures are examples of orthopedic illnesses that not only significantly impair patients' quality of life but also complicate and raise the expense of therapy. It has been discovered in recent years that the pathophysiology of orthopedic disorders is significantly influenced by the microbiota. By employing machine learning and deep learning techniques to conduct a thorough analysis of the disease-causing microbiome, we can enhance our comprehension of the pathophysiology of many illnesses and expedite the creation of novel treatment approaches. Today's science is undergoing a revolution because to the introduction of machine learning and deep learning technologies, and the field of biomedical research is no exception. The genesis, course, and management of orthopedic disorders are significantly influenced by pathogenic microbes. Orthopedic infection diagnosis and treatment are made more difficult by the lengthy and imprecise nature of traditional microbial detection and characterization techniques. These cutting-edge analytical techniques are offering previously unheard-of insights into the intricate relationships between orthopedic health and pathogenic microbes, opening up previously unimaginable possibilities for illness diagnosis, treatment, and prevention. The goal of biomedical research has always been to improve diagnostic and treatment methods while also gaining a deeper knowledge of the processes behind the onset and development of disease. Although traditional biomedical research methodologies have demonstrated certain limits throughout time, they nevertheless rely heavily on experimental data and expertise. This is the area in which deep learning and machine learning approaches excel. The advancements in machine learning (ML) and deep learning (DL) methodologies have enabled us to examine vast quantities of data and unveil intricate connections between microorganisms and orthopedic disorders. The importance of ML and DL in detecting, categorizing, and forecasting harmful microorganisms in orthopedic infectious illnesses is reviewed in this work.",article,0,,,"Shao, Zhuce;Gao, Huanshen;Wang, Benlong;Zhang, Shenqi",,,,,,,Frontiers in Cellular and Infection Microbiology,,,SCOPUS,"Shao Zhuce, 2024, Frontiers in Cellular and Infection Microbiology",,"Shao Zhuce, 2024, Frontiers in Cellular and Infection Microbiology"
+2024,27,https://app.dimensions.ai/details/publication/pub.1170433970,Machine learning interatomic potential: Bridge the gap between small-scale models and realistic device-scale simulations,109673,5,,iScience,10.1016/j.isci.2024.109673,2024-04-04,"Wang, Guanjie;Wang, Changrui;Zhang, Xuanguang;Li, Zefeng;Zhou, Jian;Sun, Zhimei","Machine learning interatomic potential (MLIP) overcomes the challenges of high computational costs in density-functional theory and the relatively low accuracy in classical large-scale molecular dynamics, facilitating more efficient and precise simulations in materials research and design. In this review, the current state of the four essential stages of MLIP is discussed, including data generation methods, material structure descriptors, six unique machine learning algorithms, and available software. Furthermore, the applications of MLIP in various fields are investigated, notably in phase-change memory materials, structure searching, material properties predicting, and the pre-trained universal models. Eventually, the future perspectives, consisting of standard datasets, transferability, generalization, and trade-off between accuracy and complexity in MLIPs, are reported.",article,0,,,"Wang, Guanjie;Wang, Changrui;Zhang, Xuanguang;Li, Zefeng;Zhou, Jian;Sun, Zhimei",,,,,,,iScience,,,SCOPUS,"Wang Guanjie, 2024, iScience",,"Wang Guanjie, 2024, iScience"
+2024,927,https://app.dimensions.ai/details/publication/pub.1170502212,Evaluation of the prediction effectiveness for geochemical mapping using machine learning methods: A case study from northern Guangdong Province in China,172223,,,Science of The Total Environment,10.1016/j.scitotenv.2024.172223,2024-04-07,"Lv, Songjian;Zhu, Ying;Cheng, Li;Zhang, Jingru;Shen, Wenjie;Li, Xingyuan","This study compares seven machine learning models to investigate whether they improve the accuracy of geochemical mapping compared to ordinary kriging (OK). Arsenic is widely present in soil due to human activities and soil parent material, posing significant toxicity. Predicting the spatial distribution of elements in soil has become a current research hotspot. Lianzhou City in northern Guangdong Province, China, was chosen as the study area, collecting a total of 2908 surface soil samples from 0 to 20 cm depth. Seven machine learning models were chosen: Random Forest (RF), Support Vector Machine (SVM), Ridge Regression (Ridge), Gradient Boosting Decision Tree (GBDT), Artificial Neural Network (ANN), K-Nearest Neighbors (KNN), and Gaussian Process Regression (GPR). Exploring the advantages and disadvantages of machine learning and traditional geological statistical models in predicting the spatial distribution of heavy metal elements, this study also analyzes factors affecting the accuracy of element prediction. The two best-performing models in the original model, RF (R2 = 0.445) and GBDT (R2 = 0.414), did not outperform OK (R2 = 0.459) in terms of prediction accuracy. Ridge and GPR, the worst-performing methods, have R2 values of only 0.201 and 0.248, respectively. To improve the models' prediction accuracy, a spatial regionalized (SR) covariate index was added. Improvements varied among different methods, with RF and GBDT increasing their R2 values from 0.4 to 0.78 after enhancement. In contrast, the GPR model showed the least significant improvement, with its R2 value only reaching 0.25 in the improved method. This study concluded that choosing the right machine learning model and considering factors that influence prediction accuracy, such as regional variations, the number of sampling points, and their distribution, are crucial for ensuring the accuracy of predictions. This provides valuable insights for future research in this area.",article,0,,,"Lv, Songjian;Zhu, Ying;Cheng, Li;Zhang, Jingru;Shen, Wenjie;Li, Xingyuan",,,,,,,Science of The Total Environment,,,SCOPUS,"Lv Songjian, 2024, Science of The Total Environment",,"Lv Songjian, 2024, Science of The Total Environment"
+2024,4,https://app.dimensions.ai/details/publication/pub.1170610033,Text-mining-based feature selection for anticancer drug response prediction,vbae047,1,,Bioinformatics Advances,10.1093/bioadv/vbae047,2024-01-05,"Wu, Grace;Zaker, Arvin;Ebrahimi, Amirhosein;Tripathi, Shivanshi;Mer, Arvind Singh","Motivation: Predicting anticancer treatment response from baseline genomic data is a critical obstacle in personalized medicine. Machine learning methods are commonly used for predicting drug response from gene expression data. In the process of constructing these machine learning models, one of the most significant challenges is identifying appropriate features among a massive number of genes.
+Results: In this study, we utilize features (genes) extracted using the text-mining of scientific literatures. Using two independent cancer pharmacogenomic datasets, we demonstrate that text-mining-based features outperform traditional feature selection techniques in machine learning tasks. In addition, our analysis reveals that text-mining feature-based machine learning models trained on in vitro data also perform well when predicting the response of in vivo cancer models. Our results demonstrate that text-mining-based feature selection is an easy to implement approach that is suitable for building machine learning models for anticancer drug response prediction.
+Availability and implementation: https://github.com/merlab/text_features.",article,0,,,"Wu, Grace;Zaker, Arvin;Ebrahimi, Amirhosein;Tripathi, Shivanshi;Mer, Arvind Singh",,,,,,,Bioinformatics Advances,,,SCOPUS,"Wu Grace, 2024, Bioinformatics Advances",,"Wu Grace, 2024, Bioinformatics Advances"
+2024,14,https://app.dimensions.ai/details/publication/pub.1170611185,Predictive modeling for breast cancer classification in the context of Bangladeshi patients by use of machine learning approach with explainable AI,8487,1,,Scientific Reports,10.1038/s41598-024-57740-5,2024-04-11,"Islam, Taminul;Sheakh, Md. Alif;Tahosin, Mst. Sazia;Hena, Most. Hasna;Akash, Shopnil;Bin Jardan, Yousef A.;FentahunWondmie, Gezahign;Nafidi, Hiba-Allah;Bourhia, Mohammed","Breast cancer has rapidly increased in prevalence in recent years, making it one of the leading causes of mortality worldwide. Among all cancers, it is by far the most common. Diagnosing this illness manually requires significant time and expertise. Since detecting breast cancer is a time-consuming process, preventing its further spread can be aided by creating machine-based forecasts. Machine learning and Explainable AI are crucial in classification as they not only provide accurate predictions but also offer insights into how the model arrives at its decisions, aiding in the understanding and trustworthiness of the classification results. In this study, we evaluate and compare the classification accuracy, precision, recall, and F1 scores of five different machine learning methods using a primary dataset (500 patients from Dhaka Medical College Hospital). Five different supervised machine learning techniques, including decision tree, random forest, logistic regression, naive bayes, and XGBoost, have been used to achieve optimal results on our dataset. Additionally, this study applied SHAP analysis to the XGBoost model to interpret the model’s predictions and understand the impact of each feature on the model’s output. We compared the accuracy with which several algorithms classified the data, as well as contrasted with other literature in this field. After final evaluation, this study found that XGBoost achieved the best model accuracy, which is 97%.",article,0,,,"Islam, Taminul;Sheakh, Md. Alif;Tahosin, Mst. Sazia;Hena, Most. Hasna;Akash, Shopnil;Bin Jardan, Yousef A.;FentahunWondmie, Gezahign;Nafidi, Hiba-Allah;Bourhia, Mohammed",,,,,,,Scientific Reports,,,SCOPUS,"Islam Taminul, 2024, Scientific Reports",,"Islam Taminul, 2024, Scientific Reports"
+2024,174,https://app.dimensions.ai/details/publication/pub.1170611915,Fuzzy machine learning logic utilization on hormonal imbalance dataset,108429,,,Computers in Biology and Medicine,10.1016/j.compbiomed.2024.108429,2024-04-11,"Khushal, Rabia;Fatima, Ubaida","In this research work, a novel fuzzy data transformation technique has been proposed and applied to the hormonal imbalance dataset. Hormonal imbalance is ubiquitously found principally in females of reproductive age which ultimately leads to numerous related medical conditions. Polycystic Ovary Syndrome (PCOS) is one of them. Treatment along with adopting a healthy lifestyle is advised to mitigate its consequences on the quality of life. The biological dataset of hormonal imbalance ""PCOS"" provides limited results that is whether the syndrome is present or not. Also, there are input variables that contain binary responses only, to deal with this conundrum, a novel fuzzy data transformation technique has been developed and applied to them thus leading to their fuzzy transformation which provides a broader spectrum to diagnose PCOS. Due to this, the output variable has also been transformed. Hence, a novel fuzzy transformation technique has been employed due to the limitation of the dataset leading to the transition of binary classification output into three classes. An adaptive fuzzy machine learning logic model is developed in which the inference of the transformed biological dataset is performed by the machine learning techniques that provide the fuzzy output. Machine learning techniques have also been applied to the untransformed biological dataset. Both implementations have been compared by computation of the relevant metrics. Machine learning employment on untransformed biological dataset provides limited results whether the syndrome is present or absent however machine learning on fuzzy transformed biological dataset provides a broader spectrum of diagnosis consisting of a third class depicting that PCOS might be present which would ultimately alert a patient to take preventive measures to minimize the chances of syndrome development in future.",article,0,,,"Khushal, Rabia;Fatima, Ubaida",,,,,,,Computers in Biology and Medicine,,,SCOPUS,"Khushal Rabia, 2024, Computers in Biology and Medicine",,"Khushal Rabia, 2024, Computers in Biology and Medicine"
+2024,41,https://app.dimensions.ai/details/publication/pub.1170640424,Machine Learning Exploration of the Relationship Between Drugs and the Blood–Brain Barrier: Guiding Molecular Modification,863,5,,Pharmaceutical Research,10.1007/s11095-024-03686-2,2024-04-11,"Yang, Qi;Fan, Lili;Hao, Erwei;Hou, Xiaotao;Deng, Jiagang;Xia, Zhongshang;Du, Zhengcai","ObjectiveThis study aimed to improve the efficiency of pharmacotherapy for CNS diseases by optimizing the ability of drug molecules to penetrate the Blood-Brain Barrier (BBB).MethodsWe established qualitative and quantitative databases of the ADME properties of drugs and derived characteristic features of compounds with efficient BBB penetration. Using these insights, we developed four machine learning models to predict a drug's BBB permeability by assessing ADME properties and molecular topology. We then validated the models using the B3DB database. For acyclovir and ceftriaxone, we modified the Hydrogen Bond Donors and Acceptors, and evaluated the BBB permeability using the predictive model.ResultsThe machine learning models performed well in predicting BBB permeability on both internal and external validation sets. Reducing the number of Hydrogen Bond Donors and Acceptors generally improves BBB permeability. Modification only enhanced BBB penetration in the case of acyclovir and not ceftriaxone.ConclusionsThe machine learning models developed can accurately predict BBB permeability, and many drug molecules are likely to have increased BBB penetration if the number of Hydrogen Bond Donors and Acceptors are reduced. These findings suggest that molecular modifications can enhance the efficacy of CNS drugs and provide practical strategies for drug design and development. This is particularly relevant for improving drug penetration of the BBB.Graphical Abstract",article,0,,,"Yang, Qi;Fan, Lili;Hao, Erwei;Hou, Xiaotao;Deng, Jiagang;Xia, Zhongshang;Du, Zhengcai",,,,,,,Pharmaceutical Research,875,,SCOPUS,"Yang Qi, 2024, Pharmaceutical Research",,"Yang Qi, 2024, Pharmaceutical Research"
+2024,16,https://app.dimensions.ai/details/publication/pub.1170658854,Interpretable Machine Learning Framework to Predict the Glass Transition Temperature of Polymers,1049,8,,Polymers,10.3390/polym16081049,2024-04-10,"Uddin, Md Jamal;Fan, Jitang","The glass transition temperature of polymers is a key parameter in meeting the application requirements for energy absorption. Previous studies have provided some data from slow, expensive trial-and-error procedures. By recognizing these data, machine learning algorithms are able to extract valuable knowledge and disclose essential insights. In this study, a dataset of 7174 samples was utilized. The polymers were numerically represented using two methods: Morgan fingerprint and molecular descriptor. During preprocessing, the dataset was scaled using a standard scaler technique. We removed the features with small variance from the dataset and used the Pearson correlation technique to exclude the features that were highly connected. Then, the most significant features were selected using the recursive feature elimination method. Nine machine learning techniques were employed to predict the glass transition temperature and tune their hyperparameters. The models were compared using the performance metrics of mean absolute error (MAE), root mean square error (RMSE), and coefficient of determination (R2). We observed that the extra tree regressor provided the best results. Significant features were also identified using statistical machine learning methods. The SHAP method was also employed to demonstrate the influence of each feature on the model's output. This framework can be adaptable to other properties at a low computational expense.",article,0,,,"Uddin, Md Jamal;Fan, Jitang",,,,,,,Polymers,,,SCOPUS,"Uddin Md Jamal, 2024, Polymers",,"Uddin Md Jamal, 2024, Polymers"
+2024,3,https://app.dimensions.ai/details/publication/pub.1170700906,Machine learning for healthcare that matters: Reorienting from technical novelty to equitable impact,e0000474,4,,PLOS Digital Health,10.1371/journal.pdig.0000474,2024-04-15,"Balagopalan, Aparna;Baldini, Ioana;Celi, Leo Anthony;Gichoya, Judy;McCoy, Liam G.;Naumann, Tristan;Shalit, Uri;van der Schaar, Mihaela;Wagstaff, Kiri L.","Despite significant technical advances in machine learning (ML) over the past several years, the tangible impact of this technology in healthcare has been limited. This is due not only to the particular complexities of healthcare, but also due to structural issues in the machine learning for healthcare (MLHC) community which broadly reward technical novelty over tangible, equitable impact. We structure our work as a healthcare-focused echo of the 2012 paper ""Machine Learning that Matters"", which highlighted such structural issues in the ML community at large, and offered a series of clearly defined ""Impact Challenges"" to which the field should orient itself. Drawing on the expertise of a diverse and international group of authors, we engage in a narrative review and examine issues in the research background environment, training processes, evaluation metrics, and deployment protocols which act to limit the real-world applicability of MLHC. Broadly, we seek to distinguish between machine learning ON healthcare data and machine learning FOR healthcare-the former of which sees healthcare as merely a source of interesting technical challenges, and the latter of which regards ML as a tool in service of meeting tangible clinical needs. We offer specific recommendations for a series of stakeholders in the field, from ML researchers and clinicians, to the institutions in which they work, and the governments which regulate their data access.",article,0,,,"Balagopalan, Aparna;Baldini, Ioana;Celi, Leo Anthony;Gichoya, Judy;McCoy, Liam G.;Naumann, Tristan;Shalit, Uri;van der Schaar, Mihaela;Wagstaff, Kiri L.",,,,,,,PLOS Digital Health,,,SCOPUS,"Balagopalan Aparna, 2024, PLOS Digital Health",,"Balagopalan Aparna, 2024, PLOS Digital Health"
+2024,19,https://app.dimensions.ai/details/publication/pub.1170716797,Machine learning in internet financial risk management: A systematic literature review,e0300195,4,,PLOS ONE,10.1371/journal.pone.0300195,2024-04-16,"Tian, Xu;Tian, ZongYi;Khatib, Saleh F. A.;Wang, Yan","Internet finance has permeated into myriad households, bringing about lifestyle convenience alongside potential risks. Presently, internet finance enterprises are progressively adopting machine learning and other artificial intelligence methods for risk alertness. What is the current status of the application of various machine learning models and algorithms across different institutions? Is there an optimal machine learning algorithm suited for the majority of internet finance platforms and application scenarios? Scholars have embarked on a series of studies addressing these questions; however, the focus predominantly lies in comparing different algorithms within specific platforms and contexts, lacking a comprehensive discourse and summary on the utilization of machine learning in this domain. Thus, based on the data from Web of Science and Scopus databases, this paper conducts a systematic literature review on all aspects of machine learning in internet finance risk in recent years, based on publications trends, geographical distribution, literature focus, machine learning models and algorithms, and evaluations. The research reveals that machine learning, as a nascent technology, whether through basic algorithms or intricate algorithmic combinations, has made significant strides compared to traditional credit scoring methods in predicting accuracy, time efficiency, and robustness in internet finance risk management. Nonetheless, there exist noticeable disparities among different algorithms, and factors such as model structure, sample data, and parameter settings also influence prediction accuracy, although generally, updated algorithms tend to achieve higher accuracy. Consequently, there is no one-size-fits-all approach applicable to all platforms; each platform should enhance its machine learning models and algorithms based on its unique characteristics, data, and the development of AI technology, starting from key evaluation indicators to mitigate internet finance risks.",article,0,,,"Tian, Xu;Tian, ZongYi;Khatib, Saleh F. A.;Wang, Yan",,,,,,,PLOS ONE,,,SCOPUS,"Tian Xu, 2024, PLOS ONE",,"Tian Xu, 2024, PLOS ONE"
+2024,19,https://app.dimensions.ai/details/publication/pub.1170716809,Fall prediction in a quiet standing balance test via machine learning: Is it possible?,e0296355,4,,PLOS ONE,10.1371/journal.pone.0296355,2024-04-16,"Pennone, Juliana;Aguero, Natasha Fioretto;Martini, Daniel Marczuk;Mochizuki, Luis;do Passo Suaide, Alexandre Alarcon","The elderly population is growing rapidly in the world and falls are becoming a big problem for society. Currently, clinical assessments of gait and posture include functional evaluations, objective, and subjective scales. They are considered the gold standard to indicate optimal mobility and performance individually, but their sensitivity and specificity are not good enough to predict who is at higher risk of falling. An innovative approach for fall prediction is the machine learning. Machine learning is a computer-science area that uses statistics and optimization methods in a large amount of data to make outcome predictions. Thus, to assess the performance of machine learning algorithms in classify participants by age, number of falls and falls frequency based on features extracted from a public database of stabilometric assessments. 163 participants (116 women and 47 men) between 18 and 85 years old, 44.0 to 75.9 kg mass, 140.0 to 189.8 cm tall, and 17.2 to 31.9 kg/m2 body mass index. Six different machine learning algorithms were tested for this classification, which included Logistic Regression, Linear Discriminant Analysis, K Nearest-neighbours, Decision Tree Classifier, Gaussian Naive Bayes and C-Support Vector Classification. The machine learning algorithms were applied in this database which has sociocultural, demographic, and health status information about participants. All algorithm models were able to classify the participants into young or old, but our main goal was not achieved, no model identified participants at high risk of falling. Our conclusion corroborates other works in the biomechanics field, arguing the static posturography, probably due to the low daily living activities specificity, does not have the desired effects in predicting the risk of falling. Further studies should focus on dynamic posturography to assess the risk of falls.",article,0,,,"Pennone, Juliana;Aguero, Natasha Fioretto;Martini, Daniel Marczuk;Mochizuki, Luis;do Passo Suaide, Alexandre Alarcon",,,,,,,PLOS ONE,,,SCOPUS,"Pennone Juliana, 2024, PLOS ONE",,"Pennone Juliana, 2024, PLOS ONE"
+2024,309,https://app.dimensions.ai/details/publication/pub.1170729260,Exploring the potential of machine learning in gynecological care: a review,2347,6,,Archives of Gynecology and Obstetrics,10.1007/s00404-024-07479-1,2024-04-16,"Khan, Imran;Khare, Brajesh Kumar","Gynecological health remains a critical aspect of women’s overall well-being, with profound implications for maternal and reproductive outcomes. This comprehensive review synthesizes the current state of knowledge on four pivotal aspects of gynecological health: preterm birth, breast cancer and cervical cancer and infertility treatment. Machine learning (ML) has emerged as a transformative technology with the potential to revolutionize gynecology and women’s healthcare. The subsets of AI, namely, machine learning (ML) and deep learning (DL) methods, have aided in detecting complex patterns from huge datasets and using such patterns in making predictions. This paper investigates how machine learning (ML) algorithms are employed in the field of gynecology to tackle crucial issues pertaining to women’s health. This paper also investigates the integration of ultrasound technology with artificial intelligence (AI) during the initial, intermediate, and final stages of pregnancy. Additionally, it delves into the diverse applications of AI throughout each trimester.This review paper provides an overview of machine learning (ML) models, introduces natural language processing (NLP) concepts, including ChatGPT, and discusses the clinical applications of artificial intelligence (AI) in gynecology. Additionally, the paper outlines the challenges in utilizing machine learning within the field of gynecology.",article,0,,,"Khan, Imran;Khare, Brajesh Kumar",,,,,,,Archives of Gynecology and Obstetrics,2365,,SCOPUS,"Khan Imran, 2024, Archives of Gynecology and Obstetrics",,"Khan Imran, 2024, Archives of Gynecology and Obstetrics"
+2024,10,https://app.dimensions.ai/details/publication/pub.1170750237,Improving prediction of maternal health risks using PCA features and TreeNet model,e1982,,,PeerJ Computer Science,10.7717/peerj-cs.1982,2024-04-15,"Jamel, Leila;Umer, Muhammad;Saidani, Oumaima;Alabduallah, Bayan;Alsubai, Shtwai;Ishmanov, Farruh;Kim, Tai-hoon;Ashraf, Imran","Maternal healthcare is a critical aspect of public health that focuses on the well-being of pregnant women before, during, and after childbirth. It encompasses a range of services aimed at ensuring the optimal health of both the mother and the developing fetus. During pregnancy and in the postpartum period, the mother's health is susceptible to several complications and risks, and timely detection of such risks can play a vital role in women's safety. This study proposes an approach to predict risks associated with maternal health. The first step of the approach involves utilizing principal component analysis (PCA) to extract significant features from the dataset. Following that, this study employs a stacked ensemble voting classifier which combines one machine learning and one deep learning model to achieve high performance. The performance of the proposed approach is compared to six machine learning algorithms and one deep learning algorithm. Two scenarios are considered for the experiments: one utilizing all features and the other using PCA features. By utilizing PCA-based features, the proposed model achieves an accuracy of 98.25%, precision of 99.17%, recall of 99.16%, and an F1 score of 99.16%. The effectiveness of the proposed model is further confirmed by comparing it to existing state of-the-art approaches.",article,0,,,"Jamel, Leila;Umer, Muhammad;Saidani, Oumaima;Alabduallah, Bayan;Alsubai, Shtwai;Ishmanov, Farruh;Kim, Tai-hoon;Ashraf, Imran",,,,,,,PeerJ Computer Science,,,SCOPUS,"Jamel Leila, 2024, PeerJ Computer Science",,"Jamel Leila, 2024, PeerJ Computer Science"
+2024,19,https://app.dimensions.ai/details/publication/pub.1170797081,Confirming the statistically significant superiority of tree-based machine learning algorithms over their counterparts for tabular data,e0301541,4,,PLOS ONE,10.1371/journal.pone.0301541,2024-04-18,"Uddin, Shahadat;Lu, Haohui","Many individual studies in the literature observed the superiority of tree-based machine learning (ML) algorithms. However, the current body of literature lacks statistical validation of this superiority. This study addresses this gap by employing five ML algorithms on 200 open-access datasets from a wide range of research contexts to statistically confirm the superiority of tree-based ML algorithms over their counterparts. Specifically, it examines two tree-based ML (Decision tree and Random forest) and three non-tree-based ML (Support vector machine, Logistic regression and k-nearest neighbour) algorithms. Results from paired-sample t-tests show that both tree-based ML algorithms reveal better performance than each non-tree-based ML algorithm for the four ML performance measures (accuracy, precision, recall and F1 score) considered in this study, each at p<0.001 significance level. This performance superiority is consistent across both the model development and test phases. This study also used paired-sample t-tests for the subsets of the research datasets from disease prediction (66) and university-ranking (50) research contexts for further validation. The observed superiority of the tree-based ML algorithms remains valid for these subsets. Tree-based ML algorithms significantly outperformed non-tree-based algorithms for these two research contexts for all four performance measures. We discuss the research implications of these findings in detail in this article.",article,0,,,"Uddin, Shahadat;Lu, Haohui",,,,,,,PLOS ONE,,,SCOPUS,"Uddin Shahadat, 2024, PLOS ONE",,"Uddin Shahadat, 2024, PLOS ONE"
+2024,63,https://app.dimensions.ai/details/publication/pub.1170816095,Artificial Intelligence and Computational Biology in Gene Therapy: A Review,960,2,,Biochemical Genetics,10.1007/s10528-024-10799-1,2024-04-18,"Danaeifar, Mohsen;Najafi, Ali","One of the trending fields in almost all areas of science and technology is artificial intelligence. Computational biology and artificial intelligence can help gene therapy in many steps including: gene identification, gene editing, vector design, development of new macromolecules and modeling of gene delivery. There are various tools used by computational biology and artificial intelligence in this field, such as genomics, transcriptomic and proteomics data analysis, machine learning algorithms and molecular interaction studies. These tools can introduce new gene targets, novel vectors, optimized experiment conditions, predict the outcomes and suggest the best solutions to avoid undesired immune responses following gene therapy treatment.",article,0,,,"Danaeifar, Mohsen;Najafi, Ali",,,,,,,Biochemical Genetics,983,,SCOPUS,"Danaeifar Mohsen, 2024, Biochemical Genetics",,"Danaeifar Mohsen, 2024, Biochemical Genetics"
+2024,87,https://app.dimensions.ai/details/publication/pub.1170999071,Using machine learning to identify key subject categories predicting the pre-clerkship and clerkship performance: 8-year cohort study,609,6,,Journal of the Chinese Medical Association,10.1097/jcma.0000000000001097,2024-04-18,"Huang, Shiau-Shian;Lin, Yu-Fan;Huang, Anna YuQing;Lin, Ji-Yang;Yang, Ying-Ying;Lin, Sheng-Min;Lin, Wen-Yu;Huang, Pin-Hsiang;Chen, Tzu-Yao;Yang, Stephen J. H.;Lirng, Jiing-Feng;Chen, Chen-Huan","BACKGROUND: Medical students need to build a solid foundation of knowledge to become physicians. Clerkship is often considered the first transition point, and clerkship performance is essential for their development. We hope to identify subjects that could predict the clerkship performance, thus helping medical students learn more efficiently to achieve high clerkship performance.
+METHODS: This cohort study collected background and academic data from medical students who graduated between 2011 and 2019. Prediction models were developed by machine learning techniques to identify the affecting features in predicting the pre-clerkship performance and clerkship performance. Following serial processes of data collection, data preprocessing before machine learning, and techniques and performance of machine learning, different machine learning models were trained and validated using the 10-fold cross-validation method.
+RESULTS: Thirteen subjects from the pre-med stage and 10 subjects from the basic medical science stage with an area under the ROC curve (AUC) >0.7 for either pre-clerkship performance or clerkship performance were found. In each subject category, medical humanities and sociology in social science, chemistry, and physician scientist-related training in basic science, and pharmacology, immunology-microbiology, and histology in basic medical science have predictive abilities for clerkship performance above the top tertile. Using a machine learning technique based on random forest, the prediction model predicted clerkship performance with 95% accuracy and 88% AUC.
+CONCLUSION: Clerkship performance was predicted by selected subjects or combination of different subject categories in the pre-med and basic medical science stages. The demonstrated predictive ability of subjects or categories in the medical program may facilitate students' understanding of how these subjects or categories of the medical program relate to their performance in the clerkship to enhance their preparedness for the clerkship.",article,0,,,"Huang, Shiau-Shian;Lin, Yu-Fan;Huang, Anna YuQing;Lin, Ji-Yang;Yang, Ying-Ying;Lin, Sheng-Min;Lin, Wen-Yu;Huang, Pin-Hsiang;Chen, Tzu-Yao;Yang, Stephen J. H.;Lirng, Jiing-Feng;Chen, Chen-Huan",,,,,,,Journal of the Chinese Medical Association,614,,SCOPUS,"Huang Shiau-Shian, 2024, Journal of the Chinese Medical Association",,"Huang Shiau-Shian, 2024, Journal of the Chinese Medical Association"
+2024,12,https://app.dimensions.ai/details/publication/pub.1171046368,Tackling the Antimicrobial Resistance “Pandemic” with Machine Learning Tools: A Summary of Available Evidence,842,5,,Microorganisms,10.3390/microorganisms12050842,2024-04-23,"Rusic, Doris;Kumric, Marko;Perisin, Ana Seselja;Leskur, Dario;Bukic, Josipa;Modun, Darko;Vilovic, Marino;Vrdoljak, Josip;Martinovic, Dinko;Grahovac, Marko;Bozic, Josko","Antimicrobial resistance is recognised as one of the top threats healthcare is bound to face in the future. There have been various attempts to preserve the efficacy of existing antimicrobials, develop new and efficient antimicrobials, manage infections with multi-drug resistant strains, and improve patient outcomes, resulting in a growing mass of routinely available data, including electronic health records and microbiological information that can be employed to develop individualised antimicrobial stewardship. Machine learning methods have been developed to predict antimicrobial resistance from whole-genome sequencing data, forecast medication susceptibility, recognise epidemic patterns for surveillance purposes, or propose new antibacterial treatments and accelerate scientific discovery. Unfortunately, there is an evident gap between the number of machine learning applications in science and the effective implementation of these systems. This narrative review highlights some of the outstanding opportunities that machine learning offers when applied in research related to antimicrobial resistance. In the future, machine learning tools may prove to be superbugs' kryptonite. This review aims to provide an overview of available publications to aid researchers that are looking to expand their work with new approaches and to acquaint them with the current application of machine learning techniques in this field.",article,0,,,"Rusic, Doris;Kumric, Marko;Perisin, Ana Seselja;Leskur, Dario;Bukic, Josipa;Modun, Darko;Vilovic, Marino;Vrdoljak, Josip;Martinovic, Dinko;Grahovac, Marko;Bozic, Josko",,,,,,,Microorganisms,,,SCOPUS,"Rusic Doris, 2024, Microorganisms",,"Rusic Doris, 2024, Microorganisms"
+2024,16,https://app.dimensions.ai/details/publication/pub.1171094964,Prediction of the Need for Anticonvulsants in the Management of Orofacial Neuropathic Pain Using Machine Learning,e58934,4,,Cureus,10.7759/cureus.58934,2024-04-24,"Suresh, Ramya;Yadalam, Pradeep Kumar;Ramadoss, Ramya;Ramalingam, Karthikeyan","Background and aim Orofacial neuropathic pain is a medical condition caused by a lesion or dysfunction of the nervous system and is one of the most challenging for dental clinicians to diagnose. Anticonvulsants, antidepressants, analgesics, nonsteroidal anti-inflammatory drugs, and other classes of medications are frequently used to treat this condition. Our study aimed to build a machine learning-based classifier to predict the need for anticonvulsant drugs in patients with orofacial neuropathic pain. Materials and methods A machine learning tool that was trained and tested on patients for predicting and detecting algorithms, which would in turn predict the need for anticonvulsants in the treatment of orofacial neuropathic pain, was employed in this study. Results Three machine learning algorithms successfully detected and predicted the need for anticonvulsants to treat patients with orofacial neuropathic pain. All three models showed a high accuracy, that is, 97%, 94%, and 89%, in predicting the need for anticonvulsants. Conclusion Machine learning algorithms can accurately predict the need for anticonvulsant drugs for treating orofacial neuropathic pain. Further research is needed to validate these findings using larger sample sizes and imaging modalities.",article,0,,,"Suresh, Ramya;Yadalam, Pradeep Kumar;Ramadoss, Ramya;Ramalingam, Karthikeyan",,,,,,,Cureus,,,SCOPUS,"Suresh Ramya, 2024, Cureus",,"Suresh Ramya, 2024, Cureus"
+2024,257,https://app.dimensions.ai/details/publication/pub.1171106797,"Conceptualizing future groundwater models through a ternary framework of multisource data, human expertise, and machine intelligence",121679,,,Water Research,10.1016/j.watres.2024.121679,2024-04-26,"Zhan, Chuanjun;Dai, Zhenxue;Yin, Shangxian;Carroll, Kenneth C;Soltanian, Mohamad Reza","Groundwater models are essential for understanding aquifer systems behavior and effective water resources spatio-temporal distributions, yet they are often hindered by challenges related to model assumptions, parametrization, uncertainty, and computational efficiency. Machine intelligence, especially deep learning, promises a paradigm shift in overcoming these challenges. A critical examination of existing machine-driven methods reveals the inherent limitations, particularly in terms of the interpretability and the ability to generalize findings. To overcome these challenges, we develop a ternary framework that synergizes the valuable insights from multisource data, human expertise, and machine intelligence. This framework capitalizes on the distinct strengths of each element: the value and relevance of multisource data, the innovative capacity of human expertise, and the analytical efficiency of machine intelligence. Our goal is to conceptualize sustainable water management practices and enhance our understanding and predictive capabilities of groundwater systems. Unlike approaches that rely solely on abundant data, our framework emphasizes the quality and strategic use of available data, combined with human intellect and advanced computing, to overcome current limitations and pave the way for more realistic groundwater simulations.",article,0,,,"Zhan, Chuanjun;Dai, Zhenxue;Yin, Shangxian;Carroll, Kenneth C;Soltanian, Mohamad Reza",,,,,,,Water Research,,,SCOPUS,"Zhan Chuanjun, 2024, Water Research",,"Zhan Chuanjun, 2024, Water Research"
+2024,32,https://app.dimensions.ai/details/publication/pub.1171112402,An extensive review on lung cancer therapeutics using machine learning techniques: state-of-the-art and perspectives,635,6,,Journal of Drug Targeting,10.1080/1061186x.2024.2347358,2024-05-06,"Ahmad, Shaban;Raza, Khalid","There are over 100 types of human cancer, accounting for millions of deaths every year. Lung cancer alone claims over 1.8 million lives per year and is expected to surpass 3.2 million by 2050, which underscores the urgent need for rapid drug development and repurposing initiatives. The application of AI emerges as a pivotal solution to developing anti-cancer therapeutics. This state-of-the-art review aims to explore the various applications of AI in lung cancer therapeutics. Predictive models can analyse large datasets, including clinical data, genetic information, and treatment outcomes, for novel drug design and to generate personalised treatment recommendations, potentially optimising therapeutic strategies, enhancing treatment efficacy, and minimising adverse effects. A thorough literature review study was conducted based on articles indexed in PubMed and Scopus. We compiled the use of various machine learning approaches, including CNN, RNN, GAN, VAEs, and other AI techniques, enhancing efficiency with accuracy exceeding 95%, which is validated through a computer-aided drug design process. AI can revolutionise lung cancer therapeutics, streamlining processes and saving biological scientists' time and effort-however, further research is needed to overcome challenges and fully unlock AI's potential in Lung Cancer Therapeutics.",article,0,,,"Ahmad, Shaban;Raza, Khalid",,,,,,,Journal of Drug Targeting,646,,SCOPUS,"Ahmad Shaban, 2024, Journal of Drug Targeting",,"Ahmad Shaban, 2024, Journal of Drug Targeting"
+2024,19,https://app.dimensions.ai/details/publication/pub.1171144974,Development of new materials for electrothermal metals using data driven and machine learning,e0297943,4,,PLOS ONE,10.1371/journal.pone.0297943,2024-04-26,"Zhou, Chengqun;Pei, Muyang;Wu, Chao;Xu, Degang;Peng, Qiang;He, Guoai","After adopting a combined approach of data-driven methods and machine learning, the prediction of material performance and the optimization of composition design can significantly reduce the development time of materials at a lower cost. In this research, we employed four machine learning algorithms, including linear regression, ridge regression, support vector regression, and backpropagation neural networks, to develop predictive models for the electrical performance data of titanium alloys. Our focus was on two key objectives: resistivity and the temperature coefficient of resistance (TCR). Subsequently, leveraging the results of feature selection, we conducted an analysis to discern the impact of alloying elements on these two electrical properties.The prediction results indicate that for the resistivity data prediction task, the radial basis function kernel-based support vector machine model performs the best, with a correlation coefficient above 0.995 and a percentage error within 2%, demonstrating high predictive capability. For the TCR data prediction task, the best-performing model is a backpropagation neural network with two hidden layers, also with a correlation coefficient above 0.995 and a percentage error within 3%, demonstrating good generalization ability. The feature selection results using random forest and Xgboost indicate that Al and Zr have a significant positive effect on resistivity, while Al, Zr, and V have a significant negative effect on TCR. The conclusion of the composition optimization design suggests that to achieve both high resistivity and TCR, it is recommended to set the Al content in the range of 1.5% to 2% and the Zr content in the range of 2.5% to 3%.",article,0,,,"Zhou, Chengqun;Pei, Muyang;Wu, Chao;Xu, Degang;Peng, Qiang;He, Guoai",,,,,,,PLOS ONE,,,SCOPUS,"Zhou Chengqun, 2024, PLOS ONE",,"Zhou Chengqun, 2024, PLOS ONE"
+2024,19,https://app.dimensions.ai/details/publication/pub.1171144983,Study on design optimization of GFRP tubular column composite structure based on machine learning method,e0301865,4,,PLOS ONE,10.1371/journal.pone.0301865,2024-04-26,"Shu, Peiyao;Xue, Chengqi;Zhang, Gengpei;Deng, Tianyi","Circular reinforced concrete wound glass fiber reinforced polymer (GFRP) columns and reinforced concrete filled GFRP columns are extensively utilized in civil engineering practice. Various factors influence the performance of these two types of GFRP columns, thereby impacting the whole project. Therefore, it is highly significant to establish the prediction models for ultimate displacement and ultimate bearing capacity to optimize the design of the two types of GFRP columns. In this study, based on the experiments conducted under different conditions on the two kinds of GFRP columns, automatic machine learning along with four other commonly used machine learning methods were employed for modeling to analyze how the column parameters (cross section shape, concrete strength, height of GFRP column, wound GFRP wall thickness, inner diameter of wound GFRP column) affect their performance. The differences in performance among these five machine learning methods were analyzed after modeling. Subsequently, we obtained the variation patterns in ultimate displacement and ultimate bearing capacity of the columns influenced by each parameter by testing the data using the optimal model. Based on these findings, the optimal design schemes for the two types of GFRP columns are proposed. The contribution of this paper is three-fold. First, AutoML sheds light on the automatic prediction of ultimate displacement and ultimate bearing capacity of GFRP column. Second, in this paper, two optimal design schemes of GFRP columns are proposed. Third, for AEC industrial practitioners, the whole process is automatic, accurate and less reliant on data expertise and the optimization design scheme proposed in the article is relatively scientific.",article,0,,,"Shu, Peiyao;Xue, Chengqi;Zhang, Gengpei;Deng, Tianyi",,,,,,,PLOS ONE,,,SCOPUS,"Shu Peiyao, 2024, PLOS ONE",,"Shu Peiyao, 2024, PLOS ONE"
+2024,15,https://app.dimensions.ai/details/publication/pub.1171176069,The role of machine learning in advancing diabetic foot: a review,1325434,,,Frontiers in Endocrinology,10.3389/fendo.2024.1325434,2024-04-29,"Guan, Huifang;Wang, Ying;Niu, Ping;Zhang, Yuxin;Zhang, Yanjiao;Miao, Runyu;Fang, Xinyi;Yin, Ruiyang;Zhao, Shuang;Liu, Jun;Tian, Jiaxing","Background: Diabetic foot complications impose a significant strain on healthcare systems worldwide, acting as a principal cause of morbidity and mortality in individuals with diabetes mellitus. While traditional methods in diagnosing and treating these conditions have faced limitations, the emergence of Machine Learning (ML) technologies heralds a new era, offering the promise of revolutionizing diabetic foot care through enhanced precision and tailored treatment strategies.
+Objective: This review aims to explore the transformative impact of ML on managing diabetic foot complications, highlighting its potential to advance diagnostic accuracy and therapeutic approaches by leveraging developments in medical imaging, biomarker detection, and clinical biomechanics.
+Methods: A meticulous literature search was executed across PubMed, Scopus, and Google Scholar databases to identify pertinent articles published up to March 2024. The search strategy was carefully crafted, employing a combination of keywords such as ""Machine Learning,"" ""Diabetic Foot,"" ""Diabetic Foot Ulcers,"" ""Diabetic Foot Care,"" ""Artificial Intelligence,"" and ""Predictive Modeling."" This review offers an in-depth analysis of the foundational principles and algorithms that constitute ML, placing a special emphasis on their relevance to the medical sciences, particularly within the specialized domain of diabetic foot pathology. Through the incorporation of illustrative case studies and schematic diagrams, the review endeavors to elucidate the intricate computational methodologies involved.
+Results: ML has proven to be invaluable in deriving critical insights from complex datasets, enhancing both the diagnostic precision and therapeutic planning for diabetic foot management. This review highlights the efficacy of ML in clinical decision-making, underscored by comparative analyses of ML algorithms in prognostic assessments and diagnostic applications within diabetic foot care.
+Conclusion: The review culminates in a prospective assessment of the trajectory of ML applications in the realm of diabetic foot care. We believe that despite challenges such as computational limitations and ethical considerations, ML remains at the forefront of revolutionizing treatment paradigms for the management of diabetic foot complications that are globally applicable and precision-oriented. This technological evolution heralds unprecedented possibilities for treatment and opportunities for enhancing patient care.",article,0,,,"Guan, Huifang;Wang, Ying;Niu, Ping;Zhang, Yuxin;Zhang, Yanjiao;Miao, Runyu;Fang, Xinyi;Yin, Ruiyang;Zhao, Shuang;Liu, Jun;Tian, Jiaxing",,,,,,,Frontiers in Endocrinology,,,SCOPUS,"Guan Huifang, 2024, Frontiers in Endocrinology",,"Guan Huifang, 2024, Frontiers in Endocrinology"
+2024,16,https://app.dimensions.ai/details/publication/pub.1171193772,Machine learning in cardiac surgery: a narrative review,2644,4,,Journal of Thoracic Disease,10.21037/jtd-23-1659,2024-04,"Miles, Travis J.;Ghanta, Ravi K.","Background and Objective: Machine learning (ML) is increasingly being utilized to provide data driven solutions to challenges in medicine. Within the field of cardiac surgery, ML methods have been employed as risk stratification tools to predict a variety of operative outcomes. However, the clinical utility of ML in this domain is unclear. The aim of this review is to provide an overview of ML in cardiac surgery, particularly with regards to its utility in predictive analytics and implications for use in clinical decision support.
+Methods: We performed a narrative review of relevant articles indexed in PubMed since 2000 using the MeSH terms ""Machine Learning"", ""Supervised Machine Learning"", ""Deep Learning"", or ""Artificial Intelligence"" and ""Cardiovascular Surgery"" or ""Thoracic Surgery"".
+Key Content and Findings: ML methods have been widely used to generate pre-operative risk profiles, consistently resulting in the accurate prediction of clinical outcomes in cardiac surgery. However, improvement in predictive performance over traditional risk metrics has proven modest and current applications in the clinical setting remain limited.
+Conclusions: Studies utilizing high volume, multidimensional data such as that derived from electronic health record (EHR) data appear to best demonstrate the advantages of ML methods. Models trained on post cardiac surgery intensive care unit data demonstrate excellent predictive performance and may provide greater clinical utility if incorporated as clinical decision support tools. Further development of ML models and their integration into EHR's may result in dynamic clinical decision support strategies capable of informing clinical care and improving outcomes in cardiac surgery.",article,0,,,"Miles, Travis J.;Ghanta, Ravi K.",,,,,,,Journal of Thoracic Disease,2653,,SCOPUS,"Miles Travis J., 2024, Journal of Thoracic Disease",,"Miles Travis J., 2024, Journal of Thoracic Disease"
+2024,4,https://app.dimensions.ai/details/publication/pub.1171244714,An open auscultation dataset for machine learning-based respiratory diagnosis studies,052001,5,,JASA Express Letters,10.1121/10.0025851,2024-05-01,"Zhou, Guanyu;Liu, Chengjian;Li, Xiaoguang;Liang, Sicong;Wang, Ruichen;Huang, Xun","Machine learning enabled auscultating diagnosis can provide promising solutions especially for prescreening purposes. The bottleneck for its potential success is that high-quality datasets for training are still scarce. An open auscultation dataset that consists of samples and annotations from patients and healthy individuals is established in this work for the respiratory diagnosis studies with machine learning, which is of both scientific importance and practical potential. A machine learning approach is examined to showcase the use of this new dataset for lung sound classifications with different diseases. The open dataset is available to the public online.",article,0,,,"Zhou, Guanyu;Liu, Chengjian;Li, Xiaoguang;Liang, Sicong;Wang, Ruichen;Huang, Xun",,,,,,,JASA Express Letters,,,SCOPUS,"Zhou Guanyu, 2024, JASA Express Letters",,"Zhou Guanyu, 2024, JASA Express Letters"
+2024,2024,https://app.dimensions.ai/details/publication/pub.1171248623,Artificial Intelligence in Cardiology and Atherosclerosis in the Context of Precision Medicine: A Scoping Review,2991243,1,,Applied Bionics and Biomechanics,10.1155/2024/2991243,2024-04-30,"Kolaszyńska, Oliwia;Lorkowski, Jacek","Cardiovascular diseases remain the main cause of death worldwide which makes it essential to better understand, diagnose, and treat atherosclerosis. Artificial intelligence (AI) and novel technological solutions offer us new possibilities and enable the practice of individually tailored medicine. The study was performed using the PRISMA protocol. As of January 10, 2023, the analysis has been based on a review of 457 identified articles in PubMed and MEDLINE databases. The search covered reviews, original articles, meta-analyses, comments, and editorials published in the years 2009-2023. In total, 123 articles met inclusion criteria. The results were divided into the subsections presented in the review (genome-wide association studies, radiomics, and other studies). This paper presents actual knowledge concerning atherosclerosis, in silico, and big data analyses in cardiology that affect the way medicine is practiced in order to create an individual approach and adjust the therapy of atherosclerosis.",article,0,,,"Kolaszyńska, Oliwia;Lorkowski, Jacek",,,,,,,Applied Bionics and Biomechanics,,,SCOPUS,"Kolaszyńska Oliwia, 2024, Applied Bionics and Biomechanics",,"Kolaszyńska Oliwia, 2024, Applied Bionics and Biomechanics"
+2024,402,https://app.dimensions.ai/details/publication/pub.1171307078,Ensemble machine learning prediction of anaerobic co-digestion of manure and thermally pretreated harvest residues,130793,,,Bioresource Technology,10.1016/j.biortech.2024.130793,2024-05-03,"Kovačić, Đurđica;Radočaj, Dorijan;Jurišić, Mladen","This study aimed to clarify the statistical accuracy assessment approaches used in recent biogas prediction studies using state-of-the-art ensemble machine learning approach according to 10-fold cross-validation in 100 repetitions. Three thermally pretreated harvest residue types (maize stover, sunflower stalk and soybean straw) and manure were anaerobically co-digested, measuring biogas and methane yield alongside eight thermal preprocessing and biomass covariates. These were the inputs to an ensemble machine learning approach for biogas and methane yield prediction, employing three feature selection approaches. The Support Vector Machine prediction with the Recursive Feature Elimination resulted in the highest prediction accuracy, achieving the coefficient of determination of 0.820 and 0.823 for biogas and methane yield prediction, respectively. This study demonstrated an extreme dependency of prediction accuracy to input dataset properties, which could only be mitigated with ensemble machine learning and strongly suggested that the split-sample approach, often used in previous studies, should be avoided.",article,0,,,"Kovačić, Đurđica;Radočaj, Dorijan;Jurišić, Mladen",,,,,,,Bioresource Technology,,,SCOPUS,"Kovačić Đurđica, 2024, Bioresource Technology",,"Kovačić Đurđica, 2024, Bioresource Technology"
+2024,6,https://app.dimensions.ai/details/publication/pub.1171320937,Accuracy of machine learning to predict the outcomes of shoulder arthroplasty: a systematic review,26,1,,Arthroplasty,10.1186/s42836-024-00244-4,2024-05-04,"Karimi, Amir H.;Langberg, Joshua;Malige, Ajith;Rahman, Omar;Abboud, Joseph A.;Stone, Michael A.","BackgroundArtificial intelligence (AI) uses computer systems to simulate cognitive capacities to accomplish goals like problem-solving and decision-making. Machine learning (ML), a branch of AI, makes algorithms find connections between preset variables, thereby producing prediction models. ML can aid shoulder surgeons in determining which patients may be susceptible to worse outcomes and complications following shoulder arthroplasty (SA) and align patient expectations following SA. However, limited literature is available on ML utilization in total shoulder arthroplasty (TSA) and reverse TSA.MethodsA systematic literature review in accordance with PRISMA guidelines was performed to identify primary research articles evaluating ML’s ability to predict SA outcomes. With duplicates removed, the initial query yielded 327 articles, and after applying inclusion and exclusion criteria, 12 articles that had at least 1 month follow-up time were included.ResultsML can predict 30-day postoperative complications with a 90% accuracy, postoperative range of motion with a higher-than-85% accuracy, and clinical improvement in patient-reported outcome measures above minimal clinically important differences with a 93%–99% accuracy. ML can predict length of stay, operative time, discharge disposition, and hospitalization costs.ConclusionML can accurately predict outcomes and complications following SA and healthcare utilization. Outcomes are highly dependent on the type of algorithms used, data input, and features selected for the model.Level of EvidenceIII",article,0,,,"Karimi, Amir H.;Langberg, Joshua;Malige, Ajith;Rahman, Omar;Abboud, Joseph A.;Stone, Michael A.",,,,,,,Arthroplasty,,,SCOPUS,"Karimi Amir H., 2024, Arthroplasty",,"Karimi Amir H., 2024, Arthroplasty"
+2024,138,https://app.dimensions.ai/details/publication/pub.1171480000,Predicting noise-induced hearing loss with machine learning: the influence of tinnitus as a predictive factor,1030,10,,The Journal of Laryngology & Otology,10.1017/s002221512400094x,2024-05-09,"Soylemez, Emre;Avci, Isa;Yildirim, Elif;Karaboya, Engin;Yilmaz, Nihat;Ertugrul, Süha;Tokgoz-Yilmaz, Suna","OBJECTIVES: This study aimed to determine which machine learning model is most suitable for predicting noise-induced hearing loss and the effect of tinnitus on the models' accuracy.
+METHODS: Two hundred workers employed in a metal industry were selected for this study and tested using pure tone audiometry. Their occupational exposure histories were collected, analysed and used to create a dataset. Eighty per cent of the data collected was used to train six machine learning models and the remaining 20 per cent was used to test the models.
+RESULTS: Eight workers (40.5 per cent) had bilaterally normal hearing and 119 (59.5 per cent) had hearing loss. Tinnitus was the second most important indicator after age for noise-induced hearing loss. The support vector machine was the best-performing algorithm, with 90 per cent accuracy, 91 per cent F1 score, 95 per cent precision and 88 per cent recall.
+CONCLUSION: The use of tinnitus as a risk factor in the support vector machine model may increase the success of occupational health and safety programmes.",article,0,,,"Soylemez, Emre;Avci, Isa;Yildirim, Elif;Karaboya, Engin;Yilmaz, Nihat;Ertugrul, Süha;Tokgoz-Yilmaz, Suna",,,,,,,The Journal of Laryngology & Otology,1035,,SCOPUS,"Soylemez Emre, 2024, The Journal of Laryngology & Otology",,"Soylemez Emre, 2024, The Journal of Laryngology & Otology"
+2024,70,https://app.dimensions.ai/details/publication/pub.1171502364,Development and Validation of a Machine Learning Model to Predict Post-dispatch Cancellation of Physician-staffed Rapid Car,195,3,,Juntendo Medical Journal,10.14789/jmj.jmj23-0031-oa,2024-05-10,"KAWASAKI, TAKAAKI;HIRANO, YOHEI;KONDO, YUTAKA;MATSUDA, SHIGERU;OKAMOTO, KEN","Objectives: This study aimed to develop and validate a machine learning prediction model for post-dispatch cancellation of physician-staffed rapid car.
+Materials: Data were extracted from the physician-staffed rapid response car database at our Hospital between April 2017 and March 2019.
+Methods: After obtaining 2019 cases, we divided the dataset into a training set for developing the model and a test set for validation using stratified random sampling with an 8 : 2 allocation ratio. We selected random forest as the machine-learning classifier. The outcome was the post-dispatch cancellation of a rapid car. The model was trained using predictor variables, including 18 different reasons for rapid car request, age and gender of a patient, date (month), and distance from the hospital.
+Results: This machine learning model predicted the occurrence of post-dispatch cancellation of rapid cars with an accuracy of 75.5% [95% confidence interval (CI): 71.0-79.6], sensitivity of 81.5% (CI: 75.0-86.9), specificity of 70.8% (CI: 64.4-76.6), and an area under the receiver operating characteristic value of 0.83 (CI: 0.79-0.87). The important features were distance from the hospital to the scene, age, suspicion of non-witnessed cardiac arrest, farthest geographic area, and date (months).
+Conclusions: We developed a favorable machine learning model to predict post-dispatch cancellation of rapid cars in a local district. This study suggests the potential of machine-learning models in improving the efficiency of dispatching physicians outside hospitals.",article,0,,,"KAWASAKI, TAKAAKI;HIRANO, YOHEI;KONDO, YUTAKA;MATSUDA, SHIGERU;OKAMOTO, KEN",,,,,,,Juntendo Medical Journal,203,,SCOPUS,"KAWASAKI TAKAAKI, 2024, Juntendo Medical Journal",,"KAWASAKI TAKAAKI, 2024, Juntendo Medical Journal"
+2024,24,https://app.dimensions.ai/details/publication/pub.1171524617,Photothermal Radiometry Data Analysis by Using Machine Learning,3015,10,,Sensors,10.3390/s24103015,2024-05-09,"Xiao, Perry;Chen, Daqing","Photothermal techniques are infrared remote sensing techniques that have been used for biomedical applications, as well as industrial non-destructive testing (NDT). Machine learning is a branch of artificial intelligence, which includes a set of algorithms for learning from past data and analyzing new data, without being explicitly programmed to do so. In this paper, we first review the latest development of machine learning and its applications in photothermal techniques. Next, we present our latest work on machine learning for data analysis in opto-thermal transient emission radiometry (OTTER), which is a type of photothermal technique that has been extensively used in skin hydration, skin hydration depth profiles, skin pigments, as well as topically applied substances and skin penetration measurements. We have investigated different algorithms, such as random forest regression, gradient boosting regression, support vector machine (SVM) regression, and partial least squares regression, as well as deep learning neural network regression. We first introduce the theoretical background, then illustrate its applications with experimental results.",article,0,,,"Xiao, Perry;Chen, Daqing",,,,,,,Sensors,,,SCOPUS,"Xiao Perry, 2024, Sensors",,"Xiao Perry, 2024, Sensors"
+2024,360,https://app.dimensions.ai/details/publication/pub.1171609344,Machine learning-based exploration of biochar for environmental management and remediation,121162,,,Journal of Environmental Management,10.1016/j.jenvman.2024.121162,2024-05-14,"Oral, Burcu;Coşgun, Ahmet;Günay, M Erdem;Yıldırım, Ramazan","Biochar has a wide range of applications, including environmental management, such as preventing soil and water pollution, removing heavy metals from water sources, and reducing air pollution. However, there are several challenges associated with the usage of biochar for these purposes, resulting in an abundance of experimental data in the literature. Accordingly, the purpose of this study is to examine the use of machine learning in biochar processes with an eye toward the potential of biochar in environmental remediation. First, recent developments in biochar utilization for the environment are summarized. Then, a bibliometric analysis is carried out to illustrate the major trends (demonstrating that the top three keywords are heavy metal, wastewater, and adsorption) and construct a comprehensive perspective for future studies. This is followed by a detailed review of machine learning applications, which reveals that adsorption efficiency and capacity are the primary utilization targets in biochar utilization. Finally, a comprehensive perspective is provided for the future. It is then concluded that machine learning can help to detect hidden patterns and make accurate predictions for determining the combination of variables that results in the desired properties which can be later used for decision-making, resource allocation, and environmental management.",article,0,,,"Oral, Burcu;Coşgun, Ahmet;Günay, M Erdem;Yıldırım, Ramazan",,,,,,,Journal of Environmental Management,,,SCOPUS,"Oral Burcu, 2024, Journal of Environmental Management",,"Oral Burcu, 2024, Journal of Environmental Management"
+2024,34,https://app.dimensions.ai/details/publication/pub.1171647387,Application of machine learning in the analysis of multiparametric MRI data for the differentiation of treatment responses in breast cancer: retrospective study,56,1,,European Journal of Cancer Prevention,10.1097/cej.0000000000000892,2024-06-19,"Wang, Jinhua;Wang, Liang;Yang, Zhongxian;Tan, Wanchang;Liu, Yubao","OBJECTIVE: The objective of this study is to develop and validate a multiparametric MRI model employing machine learning to predict the effectiveness of treatment and the stage of breast cancer.
+METHODS: The study encompassed 400 female patients diagnosed with breast cancer, with 200 individuals allocated to both the control and experimental groups, undergoing examinations in Shenzhen, China, during the period 2017-2023. This study pertains to retrospective research. Multiparametric MRI was employed to extract data concerning tumor size, blood flow, and metabolism.
+RESULTS: The model achieved high accuracy, predicting treatment outcomes with an accuracy of 92%, sensitivity of 88%, and specificity of 95%. The model effectively classified breast cancer stages: stage I, 38% ( P = 0.027); stage II, 72% ( P = 0.014); stage III, 50% ( P = 0.032); and stage IV, 45% ( P = 0.041).
+CONCLUSIONS: The developed model, utilizing multiparametric MRI and machine learning, exhibits high accuracy in predicting the effectiveness of treatment and breast cancer staging. These findings affirm the model's potential to enhance treatment strategies and personalize approaches for patients diagnosed with breast cancer. Our study presents an innovative approach to the diagnosis and treatment of breast cancer, integrating MRI data with machine learning algorithms. We demonstrate that the developed model exhibits high accuracy in predicting treatment efficacy and differentiating cancer stages. This underscores the importance of utilizing MRI and machine learning algorithms to enhance the diagnosis and individualization of treatment for this disease.",article,0,,,"Wang, Jinhua;Wang, Liang;Yang, Zhongxian;Tan, Wanchang;Liu, Yubao",,,,,,,European Journal of Cancer Prevention,65,,SCOPUS,"Wang Jinhua, 2024, European Journal of Cancer Prevention",,"Wang Jinhua, 2024, European Journal of Cancer Prevention"
+2024,32,https://app.dimensions.ai/details/publication/pub.1171658697,Personalized prediction of diabetic foot ulcer recurrence in elderly individuals using machine learning paradigms,265,1_suppl,,Technology and Health Care,10.3233/thc-248023,2024-05-31,"Hong, Shichai;Chen, Yihui;Lin, Yue;Xie, Xinsheng;Chen, Gang;Xie, Hefu;Lu, Weifeng","BACKGROUND: This study utilizes machine learning to analyze the recurrence risk of diabetic foot ulcers (DFUs) in elderly diabetic patients, aiming to enhance prevention and intervention efforts.
+OBJECTIVE: The goal is to construct accurate predictive models for assessing the recurrence risk of DFUs based on high-risk factors, such as age, blood sugar control, alcohol consumption, and smoking, in elderly diabetic patients.
+METHODS: Data from 138 elderly diabetic patients were collected, and after data cleaning, outlier screening, and feature integration, machine learning models were constructed. Support Vector Machine (SVM) was employed, achieving an accuracy rate of 93%.
+RESULTS: Experimental results demonstrate the effectiveness of SVM in predicting the recurrence risk of DFUs in elderly diabetic patients, providing clinicians with a more accurate tool for assessment.
+CONCLUSIONS: The study highlights the significance of machine learning in managing foot ulcers in elderly diabetic patients, particularly in predicting recurrence risk. This approach facilitates timely intervention, reducing the likelihood of patient recurrence, and introduces computer-assisted medical strategies in elderly diabetes management.",article,0,,,"Hong, Shichai;Chen, Yihui;Lin, Yue;Xie, Xinsheng;Chen, Gang;Xie, Hefu;Lu, Weifeng",,,,,,,Technology and Health Care,276,,SCOPUS,"Hong Shichai, 2024, Technology and Health Care",,"Hong Shichai, 2024, Technology and Health Care"
+2024,29,https://app.dimensions.ai/details/publication/pub.1171742941,Prediction of Individual Gas Yields of Supercritical Water Gasification of Lignocellulosic Biomass by Machine Learning Models,2337,10,,Molecules,10.3390/molecules29102337,2024-05-16,"Khandelwal, Kapil;Dalai, Ajay K","Supercritical water gasification (SCWG) of lignocellulosic biomass is a promising pathway for the production of hydrogen. However, SCWG is a complex thermochemical process, the modeling of which is challenging via conventional methodologies. Therefore, eight machine learning models (linear regression (LR), Gaussian process regression (GPR), artificial neural network (ANN), support vector machine (SVM), decision tree (DT), random forest (RF), extreme gradient boosting (XGB), and categorical boosting regressor (CatBoost)) with particle swarm optimization (PSO) and a genetic algorithm (GA) optimizer were developed and evaluated for prediction of H2, CO, CO2, and CH4 gas yields from SCWG of lignocellulosic biomass. A total of 12 input features of SCWG process conditions (temperature, time, concentration, pressure) and biomass properties (C, H, N, S, VM, moisture, ash, real feed) were utilized for the prediction of gas yields using 166 data points. Among machine learning models, boosting ensemble tree models such as XGB and CatBoost demonstrated the highest power for the prediction of gas yields. PSO-optimized XGB was the best performing model for H2 yield with a test R2 of 0.84 and PSO-optimized CatBoost was best for prediction of yields of CH4, CO, and CO2, with test R2 values of 0.83, 0.94, and 0.92, respectively. The effectiveness of the PSO optimizer in improving the prediction ability of the unoptimized machine learning model was higher compared to the GA optimizer for all gas yields. Feature analysis using Shapley additive explanation (SHAP) based on best performing models showed that (21.93%) temperature, (24.85%) C, (16.93%) ash, and (29.73%) C were the most dominant features for the prediction of H2, CH4, CO, and CO2 gas yields, respectively. Even though temperature was the most dominant feature, the cumulative feature importance of biomass characteristics variables (C, H, N, S, VM, moisture, ash, real feed) as a group was higher than that of the SCWG process condition variables (temperature, time, concentration, pressure) for the prediction of all gas yields. SHAP two-way analysis confirmed the strong interactive behavior of input features on the prediction of gas yields.",article,0,,,"Khandelwal, Kapil;Dalai, Ajay K",,,,,,,Molecules,,,SCOPUS,"Khandelwal Kapil, 2024, Molecules",,"Khandelwal Kapil, 2024, Molecules"
+2024,10,https://app.dimensions.ai/details/publication/pub.1171748016,Systematic literature review on the application of machine learning for the prediction of properties of different types of concrete,e1853,,,PeerJ Computer Science,10.7717/peerj-cs.1853,2024-05-16,"Hassan, Syeda Iqra;Syed, Sidra Abid;Ali, Syed Waqad;Zahid, Hira;Tariq, Samia;Su, Mazliham Mohd;Alam, Muhammad Mansoor","Background: Concrete, a fundamental construction material, stands as a significant consumer of virgin resources, including sand, gravel, crushed stone, and fresh water. It exerts an immense demand, accounting for approximately 1.6 billion metric tons of Portland and modified Portland cement annually. Moreover, addressing extreme conditions with exceptionally nonlinear behavior necessitates a laborious calibration procedure in structural analysis and design methodologies. These methods are also difficult to execute in practice. To reduce time and effort, ML might be a viable option.
+Material and Methods: A set of keywords are designed to perform the search PubMed search engine with filters to not search the studies below the year 2015. Furthermore, using PRISMA guidelines, studies were selected and after screening, a total of 42 studies were summarized. The PRISMA guidelines provide a structured framework to ensure transparency, accuracy, and completeness in reporting the methods and results of systematic reviews and meta-analyses. The ability to methodically and accurately connect disparate parts of the literature is often lacking in review research. Some of the trickiest parts of original research include knowledge mapping, co-citation, and co-occurrence. Using this data, we were able to determine which locations were most active in researching machine learning applications for concrete, where the most influential authors were in terms of both output and citations and which articles garnered the most citations overall.
+Conclusion: ML has become a viable prediction method for a wide variety of structural industrial applications, and hence it may serve as a potential successor for routinely used empirical model in the design of concrete structures. The non-ML structural engineering community may use this overview of ML methods, fundamental principles, access codes, ML libraries, and gathered datasets to construct their own ML models for useful uses. Structural engineering practitioners and researchers may benefit from this article's incorporation of concrete ML studies as well as structural engineering datasets. The construction industry stands to benefit from the use of machine learning in terms of cost savings, time savings, and labor intensity. The statistical and graphical representation of contributing authors and participants in this work might facilitate future collaborations and the sharing of novel ideas and approaches among researchers and industry professionals. The limitation of this systematic review is that it is only PubMed based which means it includes studies included in the PubMed database.",article,0,,,"Hassan, Syeda Iqra;Syed, Sidra Abid;Ali, Syed Waqad;Zahid, Hira;Tariq, Samia;Su, Mazliham Mohd;Alam, Muhammad Mansoor",,,,,,,PeerJ Computer Science,,,SCOPUS,"Hassan Syeda Iqra, 2024, PeerJ Computer Science",,"Hassan Syeda Iqra, 2024, PeerJ Computer Science"
+2024,10,https://app.dimensions.ai/details/publication/pub.1171758550,Predicting deep well pump performance with machine learning methods during hydraulic head changes,e31505,11,,Heliyon,10.1016/j.heliyon.2024.e31505,2024-05-17,"Orhan, Nuri","In this study, machine learning techniques were employed to estimate and predict the system efficiency of a pumping plant at various hydraulic head levels. The measured parameters, including flow rate, outlet pressure, drawdown, and power, were used for estimating the system efficiency. Two approaches, Approach-I and Approach-II, were utilized. Approach-I incorporated additional parameters such as hydraulic head, drawdown, flow, power, and outlet pressure, while Approach-II focused solely on hydraulic head, outlet pressure, and power. Seven machine learning algorithms were employed to model and predict the efficiency of the pumping plant. The decrease in the hydraulic head by 125 cm resulted in a reduction in the pump system efficiency by 6.45 %, 8.94 %, and 13.8 % at flow rates of 40, 50, and 60 m3 h-1, respectively. Among the algorithms used in Approach-I, the artificial neural network, support vector machine regression, and lasso regression exhibited the highest performance, with R2 values of 0.995, 0.987, and 0.985, respectively. The corresponding RMSE values for these algorithms were 0.13 %, 0.23 %, and 0.22 %, while the MAE values were 0.11 %, 0.2 %, and 0.32 %, and the MAPE values were 0.22 %, 0.5 %, and 0.46.% In Approach-II, the artificial neural network model once again demonstrated the best performance with an R2 value of 0.996, followed by the support vector machine regression (R2 = 0.988) and the decision tree regression (R2 = 0.981). Overall, the artificial neural network model proved to be the most effective in both approaches. These findings highlight the potential of machine learning techniques in predicting the efficiency of pumping plant systems.",article,0,,,"Orhan, Nuri",,,,,,,Heliyon,,,SCOPUS,"Orhan Nuri, 2024, Heliyon",,"Orhan Nuri, 2024, Heliyon"
+2024,24,https://app.dimensions.ai/details/publication/pub.1171773582,Explainable AI: Machine Learning Interpretation in Blackcurrant Powders,3198,10,,Sensors,10.3390/s24103198,2024-05-17,"Przybył, Krzysztof","Recently, explainability in machine and deep learning has become an important area in the field of research as well as interest, both due to the increasing use of artificial intelligence (AI) methods and understanding of the decisions made by models. The explainability of artificial intelligence (XAI) is due to the increasing consciousness in, among other things, data mining, error elimination, and learning performance by various AI algorithms. Moreover, XAI will allow the decisions made by models in problems to be more transparent as well as effective. In this study, models from the 'glass box' group of Decision Tree, among others, and the 'black box' group of Random Forest, among others, were proposed to understand the identification of selected types of currant powders. The learning process of these models was carried out to determine accuracy indicators such as accuracy, precision, recall, and F1-score. It was visualized using Local Interpretable Model Agnostic Explanations (LIMEs) to predict the effectiveness of identifying specific types of blackcurrant powders based on texture descriptors such as entropy, contrast, correlation, dissimilarity, and homogeneity. Bagging (Bagging_100), Decision Tree (DT0), and Random Forest (RF7_gini) proved to be the most effective models in the framework of currant powder interpretability. The measures of classifier performance in terms of accuracy, precision, recall, and F1-score for Bagging_100, respectively, reached values of approximately 0.979. In comparison, DT0 reached values of 0.968, 0.972, 0.968, and 0.969, and RF7_gini reached values of 0.963, 0.964, 0.963, and 0.963. These models achieved classifier performance measures of greater than 96%. In the future, XAI using agnostic models can be an additional important tool to help analyze data, including food products, even online.",article,0,,,"Przybył, Krzysztof",,,,,,,Sensors,,,SCOPUS,"Przybył Krzysztof, 2024, Sensors",,"Przybył Krzysztof, 2024, Sensors"
+2024,20,https://app.dimensions.ai/details/publication/pub.1171876281,"Machine learning and artificial intelligence within pediatric autoimmune diseases: applications, challenges, future perspective",1219,10,,Expert Review of Clinical Immunology,10.1080/1744666x.2024.2359019,2024-06-14,"Sadeghi, Parniyan;Karimi, Hanie;Lavafian, Atiye;Rashedi, Ronak;Samieefar, Noosha;Shafiekhani, Sajad;Rezaei, Nima","INTRODUCTION: Autoimmune disorders affect 4.5% to 9.4% of children, significantly reducing their quality of life. The diagnosis and prognosis of autoimmune diseases are uncertain because of the variety of onset and development. Machine learning can identify clinically relevant patterns from vast amounts of data. Hence, its introduction has been beneficial in the diagnosis and management of patients.
+AREAS COVERED: This narrative review was conducted through searching various electronic databases, including PubMed, Scopus, and Web of Science. This study thoroughly explores the current knowledge and identifies the remaining gaps in the applications of machine learning specifically in the context of pediatric autoimmune and related diseases.
+EXPERT OPINION: Machine learning algorithms have the potential to completely change how pediatric autoimmune disorders are identified, treated, and managed. Machine learning can assist physicians in making more precise and fast judgments, identifying new biomarkers and therapeutic targets, and personalizing treatment strategies for each patient by utilizing massive datasets and powerful analytics.",article,0,,,"Sadeghi, Parniyan;Karimi, Hanie;Lavafian, Atiye;Rashedi, Ronak;Samieefar, Noosha;Shafiekhani, Sajad;Rezaei, Nima",,,,,,,Expert Review of Clinical Immunology,1236,,SCOPUS,"Sadeghi Parniyan, 2024, Expert Review of Clinical Immunology",,"Sadeghi Parniyan, 2024, Expert Review of Clinical Immunology"
+2024,84,https://app.dimensions.ai/details/publication/pub.1171921263,The AI Future of Emergency Medicine,139,2,,Annals of Emergency Medicine,10.1016/j.annemergmed.2024.01.031,2024-05-22,"Petrella, Robert J","In the coming years, artificial intelligence (AI) and machine learning will likely give rise to profound changes in the field of emergency medicine, and medicine more broadly. This article discusses these anticipated changes in terms of 3 overlapping yet distinct stages of AI development. It reviews some fundamental concepts in AI and explores their relation to clinical practice, with a focus on emergency medicine. In addition, it describes some of the applications of AI in disease diagnosis, prognosis, and treatment, as well as some of the practical issues that they raise, the barriers to their implementation, and some of the legal and regulatory challenges they create.",article,0,,,"Petrella, Robert J",,,,,,,Annals of Emergency Medicine,153,,SCOPUS,"Petrella Robert J, 2024, Annals of Emergency Medicine",,"Petrella Robert J, 2024, Annals of Emergency Medicine"
+2024,16,https://app.dimensions.ai/details/publication/pub.1172038023,CASCADE: Context-Aware Data-Driven AI for Streamlined Multidisciplinary Tumor Board Recommendations in Oncology,1975,11,,Cancers,10.3390/cancers16111975,2024-05-23,"Daye, Dania;Parker, Regina;Tripathi, Satvik;Cox, Meredith;Orama, Sebastian Brito;Valentin, Leonardo;Bridge, Christopher P.;Uppot, Raul N.","This study addresses the potential of machine learning in predicting treatment recommendations for patients with hepatocellular carcinoma (HCC). Using an IRB-approved retrospective study of patients discussed at a multidisciplinary tumor board, clinical and imaging variables were extracted and used in a gradient-boosting machine learning algorithm, XGBoost. The algorithm's performance was assessed using confusion matrix metrics and the area under the Receiver Operating Characteristics (ROC) curve. The study included 140 patients (mean age 67.7 ± 8.9 years), and the algorithm was found to be predictive of all eight treatment recommendations made by the board. The model's predictions were more accurate than those based on published therapeutic guidelines by ESMO and NCCN. The study concludes that a machine learning model incorporating clinical and imaging variables can predict treatment recommendations made by an expert multidisciplinary tumor board, potentially aiding clinical decision-making in settings lacking subspecialty expertise.",article,0,,,"Daye, Dania;Parker, Regina;Tripathi, Satvik;Cox, Meredith;Orama, Sebastian Brito;Valentin, Leonardo;Bridge, Christopher P.;Uppot, Raul N.",,,,,,,Cancers,,,SCOPUS,"Daye Dania, 2024, Cancers",,"Daye Dania, 2024, Cancers"
+2024,65,https://app.dimensions.ai/details/publication/pub.1172095166,Applications of artificial intelligence for machine- and patient-specific quality assurance in radiation therapy: current status and future directions,421,4,,Journal of Radiation Research,10.1093/jrr/rrae033,2024-05-27,"Ono, Tomohiro;Iramina, Hiraku;Hirashima, Hideaki;Adachi, Takanori;Nakamura, Mitsuhiro;Mizowaki, Takashi","Machine- and patient-specific quality assurance (QA) is essential to ensure the safety and accuracy of radiotherapy. QA methods have become complex, especially in high-precision radiotherapy such as intensity-modulated radiation therapy (IMRT) and volumetric modulated arc therapy (VMAT), and various recommendations have been reported by AAPM Task Groups. With the widespread use of IMRT and VMAT, there is an emerging demand for increased operational efficiency. Artificial intelligence (AI) technology is quickly growing in various fields owing to advancements in computers and technology. In the radiotherapy treatment process, AI has led to the development of various techniques for automated segmentation and planning, thereby significantly enhancing treatment efficiency. Many new applications using AI have been reported for machine- and patient-specific QA, such as predicting machine beam data or gamma passing rates for IMRT or VMAT plans. Additionally, these applied technologies are being developed for multicenter studies. In the current review article, AI application techniques in machine- and patient-specific QA have been organized and future directions are discussed. This review presents the learning process and the latest knowledge on machine- and patient-specific QA. Moreover, it contributes to the understanding of the current status and discusses the future directions of machine- and patient-specific QA.",article,0,,,"Ono, Tomohiro;Iramina, Hiraku;Hirashima, Hideaki;Adachi, Takanori;Nakamura, Mitsuhiro;Mizowaki, Takashi",,,,,,,Journal of Radiation Research,432,,SCOPUS,"Ono Tomohiro, 2024, Journal of Radiation Research",,"Ono Tomohiro, 2024, Journal of Radiation Research"
+2024,19,https://app.dimensions.ai/details/publication/pub.1172184209,Machine learning model based on radiomics features for AO/OTA classification of pelvic fractures on pelvic radiographs,e0304350,5,,PLOS ONE,10.1371/journal.pone.0304350,2024-05-30,"Park, Jun Young;Lee, Seung Hwan;Kim, Young Jae;Kim, Kwang Gi;Lee, Gil Jae","Depending on the degree of fracture, pelvic fracture can be accompanied by vascular damage, and in severe cases, it may progress to hemorrhagic shock. Pelvic radiography can quickly diagnose pelvic fractures, and the Association for Osteosynthesis Foundation and Orthopedic Trauma Association (AO/OTA) classification system is useful for evaluating pelvic fracture instability. This study aimed to develop a radiomics-based machine-learning algorithm to quickly diagnose fractures on pelvic X-ray and classify their instability. data used were pelvic anteroposterior radiographs of 990 adults over 18 years of age diagnosed with pelvic fractures, and 200 normal subjects. A total of 93 features were extracted based on radiomics:18 first-order, 24 GLCM, 16 GLRLM, 16 GLSZM, 5 NGTDM, and 14 GLDM features. To improve the performance of machine learning, the feature selection methods RFE, SFS, LASSO, and Ridge were used, and the machine learning models used LR, SVM, RF, XGB, MLP, KNN, and LGBM. Performance measurement was evaluated by area under the curve (AUC) by analyzing the receiver operating characteristic curve. The machine learning model was trained based on the selected features using four feature-selection methods. When the RFE feature selection method was used, the average AUC was higher than that of the other methods. Among them, the combination with the machine learning model SVM showed the best performance, with an average AUC of 0.75±0.06. By obtaining a feature-importance graph for the combination of RFE and SVM, it is possible to identify features with high importance. The AO/OTA classification of normal pelvic rings and pelvic fractures on pelvic AP radiographs using a radiomics-based machine learning model showed the highest AUC when using the SVM classification combination. Further research on the radiomic features of each part of the pelvic bone constituting the pelvic ring is needed.",article,0,,,"Park, Jun Young;Lee, Seung Hwan;Kim, Young Jae;Kim, Kwang Gi;Lee, Gil Jae",,,,,,,PLOS ONE,,,SCOPUS,"Park Jun Young, 2024, PLOS ONE",,"Park Jun Young, 2024, PLOS ONE"
+2024,34,https://app.dimensions.ai/details/publication/pub.1172213544,Does machine learning have a high performance to predict obesity among adults and older adults? A systematic review and meta-analysis,2034,9,,"Nutrition, Metabolism and Cardiovascular Diseases",10.1016/j.numecd.2024.05.020,2024-05-29,"Delpino, Felipe Mendes;Costa, Ândria Krolow;César do Nascimento, Murilo;Dias Moura, Heriederson Sávio;Geremias Dos Santos, Hellen;Wichmann, Roberta Moreira;Porto Chiavegatto Filho, Alexandre Dias;Arcêncio, Ricardo Alexandre;Nunes, Bruno Pereira","AIM: Machine learning may be a tool with the potential for obesity prediction. This study aims to review the literature on the performance of machine learning models in predicting obesity and to quantify the pooled results through a meta-analysis.
+DATA SYNTHESIS: A systematic review and meta-analysis were conducted, including studies that used machine learning to predict obesity. Searches were conducted in October 2023 across databases including LILACS, Web of Science, Scopus, Embase, and CINAHL. We included studies that utilized classification models and reported results in the Area Under the ROC Curve (AUC) (PROSPERO registration: CRD42022306940), without imposing restrictions on the year of publication. The risk of bias was assessed using an adapted version of the Transparent Reporting of a multivariable prediction model for individual Prognosis or Diagnosis (TRIPOD). Meta-analysis was conducted using MedCalc software. A total of 14 studies were included, with the majority demonstrating satisfactory performance for obesity prediction, with AUCs exceeding 0.70. The random forest algorithm emerged as the top performer in obesity prediction, achieving an AUC of 0.86 (95%CI: 0.76-0.96; I2: 99.8%), closely followed by logistic regression with an AUC of 0.85 (95%CI: 0.75-0.95; I2: 99.6%). The least effective model was gradient boosting, with an AUC of 0.77 (95%CI: 0.71-0.82; I2: 98.1%).
+CONCLUSION: Machine learning models demonstrated satisfactory predictive performance for obesity. However, future research should utilize more comparable data, larger databases, and a broader range of machine learning models.",article,0,,,"Delpino, Felipe Mendes;Costa, Ândria Krolow;César do Nascimento, Murilo;Dias Moura, Heriederson Sávio;Geremias Dos Santos, Hellen;Wichmann, Roberta Moreira;Porto Chiavegatto Filho, Alexandre Dias;Arcêncio, Ricardo Alexandre;Nunes, Bruno Pereira",,,,,,,"Nutrition, Metabolism and Cardiovascular Diseases",2045,,SCOPUS,"Delpino Felipe Mendes, 2024, Nutrition, Metabolism and Cardiovascular Diseases",,"Delpino Felipe Mendes, 2024, Nutrition, Metabolism and Cardiovascular Diseases"
+2024,24,https://app.dimensions.ai/details/publication/pub.1172287811,Encrypted Network Traffic Analysis and Classification Utilizing Machine Learning,3509,11,,Sensors,10.3390/s24113509,2024-05-29,"Alwhbi, Ibrahim A;Zou, Cliff C;Alharbi, Reem N","Encryption is a fundamental security measure to safeguard data during transmission to ensure confidentiality while at the same time posing a great challenge for traditional packet and traffic inspection. In response to the proliferation of diverse network traffic patterns from Internet-of-Things devices, websites, and mobile applications, understanding and classifying encrypted traffic are crucial for network administrators, cybersecurity professionals, and policy enforcement entities. This paper presents a comprehensive survey of recent advancements in machine-learning-driven encrypted traffic analysis and classification. The primary goals of our survey are two-fold: First, we present the overall procedure and provide a detailed explanation of utilizing machine learning in analyzing and classifying encrypted network traffic. Second, we review state-of-the-art techniques and methodologies in traffic analysis. Our aim is to provide insights into current practices and future directions in encrypted traffic analysis and classification, especially machine-learning-based analysis.",article,0,,,"Alwhbi, Ibrahim A;Zou, Cliff C;Alharbi, Reem N",,,,,,,Sensors,,,SCOPUS,"Alwhbi Ibrahim A, 2024, Sensors",,"Alwhbi Ibrahim A, 2024, Sensors"
+2024,46,https://app.dimensions.ai/details/publication/pub.1172299798,Predicting Chronic Pain and Treatment Outcomes Using Machine Learning Models Based on High-dimensional Clinical Data From a Large Retrospective Cohort,490,6,,Clinical Therapeutics,10.1016/j.clinthera.2024.04.012,2024-05-31,"Wu, Han;Chen, Zhaoyuan;Gu, Jiahui;Jiang, Yi;Gao, Shenjia;Chen, Wankun;Miao, Changhong","PURPOSE: To identify factors and indicators that affect chronic pain and pain relief, and to develop predictive models using machine learning.
+METHODS: We analyzed the data of 67,028 outpatient cases and 11,310 valid samples with pain from a large retrospective cohort. We used decision tree, random forest, AdaBoost, neural network, and logistic regression to discover significant indicators and to predict pain and treatment relief.
+FINDINGS: The random forest model had the highest accuracy, F1 value, precision, and recall rates for predicting pain relief. The main factors affecting pain and treatment relief included body mass index, blood pressure, age, body temperature, heart rate, pulse, and neutrophil/lymphocyte × platelet ratio. The logistic regression model had high sensitivity and specificity for predicting pain occurrence.
+IMPLICATIONS: Machine learning models can be used to analyze the risk factors and predictors of chronic pain and pain relief, and to provide personalized and evidence-based pain management.",article,0,,,"Wu, Han;Chen, Zhaoyuan;Gu, Jiahui;Jiang, Yi;Gao, Shenjia;Chen, Wankun;Miao, Changhong",,,,,,,Clinical Therapeutics,498,,SCOPUS,"Wu Han, 2024, Clinical Therapeutics",,"Wu Han, 2024, Clinical Therapeutics"
+2024,36,https://app.dimensions.ai/details/publication/pub.1172310934,Estimating Classification Consistency of Machine Learning Models for Screening Measures,395,6-7,,Psychological Assessment,10.1037/pas0001313,2024-06,"Gonzalez, Oscar;Georgeson, A. R.;Pelham, William E.","This article illustrates novel quantitative methods to estimate classification consistency in machine learning models used for screening measures. Screening measures are used in psychology and medicine to classify individuals into diagnostic classifications. In addition to achieving high accuracy, it is ideal for the screening process to have high classification consistency, which means that respondents would be classified into the same group every time if the assessment was repeated. Although machine learning models are increasingly being used to predict a screening classification based on individual item responses, methods to describe the classification consistency of machine learning models have not yet been developed. This article addresses this gap by describing methods to estimate classification inconsistency in machine learning models arising from two different sources: sampling error during model fitting and measurement error in the item responses. These methods use data resampling techniques such as the bootstrap and Monte Carlo sampling. These methods are illustrated using three empirical examples predicting a health condition/diagnosis from item responses. R code is provided to facilitate the implementation of the methods. This article highlights the importance of considering classification consistency alongside accuracy when studying screening measures and provides the tools and guidance necessary for applied researchers to obtain classification consistency indices in their machine learning research on diagnostic assessments. (PsycInfo Database Record (c) 2024 APA, all rights reserved).",article,0,,,"Gonzalez, Oscar;Georgeson, A. R.;Pelham, William E.",,,,,,,Psychological Assessment,406,,SCOPUS,"Gonzalez Oscar, 2024, Psychological Assessment",,"Gonzalez Oscar, 2024, Psychological Assessment"
+2024,32,https://app.dimensions.ai/details/publication/pub.1172312937,Machine learning-driven predictions and interventions for cardiovascular occlusions,3535,5,,Technology and Health Care,10.3233/thc-240582,2024,"Thomas, Anvin;Jose, Rejath;Syed, Faiz;Wei, Ong Chi;Toma, Milan","BACKGROUND: Cardiovascular diseases remain a leading cause of global morbidity and mortality, with heart attacks and strokes representing significant health challenges. The accurate, early diagnosis and management of these conditions are paramount in improving patient outcomes. The specific disease, cardiovascular occlusions, has been chosen for the study due to the significant impact it has on public health. Cardiovascular diseases are a leading cause of mortality globally, and occlusions, which are blockages in the blood vessels, are a critical factor contributing to these conditions.
+OBJECTIVE: By focusing on cardiovascular occlusions, the study aims to leverage machine learning to improve the prediction and management of these events, potentially helping to reduce the incidence of heart attacks, strokes, and other related health issues. The use of machine learning in this context offers the promise of developing more accurate and timely interventions, thus improving patient outcomes.
+METHODS: We analyze diverse datasets to assess the efficacy of various machine learning algorithms in predicting heart attacks and strokes, comparing their performance to pinpoint the most accurate and reliable models. Additionally, we classify individuals by their predicted risk levels and examine key features that correlate with the incidence of cardiovascular events. The PyCaret machine learning library's Classification Module was key in developing predictive models which were evaluated with stratified cross-validation for reliable performance estimates.
+RESULTS: Our findings suggest that machine learning can significantly improve the prediction accuracy for heart attacks and strokes, facilitating earlier and more precise interventions. We also discuss the integration of machine learning models into clinical practice, addressing potential challenges and the need for healthcare professionals to interpret and apply these predictions effectively.
+CONCLUSIONS: The use of machine learning for risk stratification and the identification of modifiable factors may empower preemptive approaches to cardiovascular care, ultimately aiming to reduce the occurrence of life-threatening events and improve long-term patient health trajectories.",article,0,,,"Thomas, Anvin;Jose, Rejath;Syed, Faiz;Wei, Ong Chi;Toma, Milan",,,,,,,Technology and Health Care,3556,,SCOPUS,"Thomas Anvin, 2024, Technology and Health Care",,"Thomas Anvin, 2024, Technology and Health Care"
+2024,37,https://app.dimensions.ai/details/publication/pub.1172312960,Navigating the future: machine learning's role in revolutionizing antimicrobial stewardship and infection prevention and control,290,4,,Current Opinion in Infectious Diseases,10.1097/qco.0000000000001028,2024-05-31,"Hanna, John J.;Medford, Richard J.","PURPOSE OF REVIEW: This review examines the current state and future prospects of machine learning (ML) in infection prevention and control (IPC) and antimicrobial stewardship (ASP), highlighting its potential to transform healthcare practices by enhancing the precision, efficiency, and effectiveness of interventions against infections and antimicrobial resistance.
+RECENT FINDINGS: ML has shown promise in improving surveillance and detection of infections, predicting infection risk, and optimizing antimicrobial use through the development of predictive analytics, natural language processing, and personalized medicine approaches. However, challenges remain, including issues related to data quality, model interpretability, ethical considerations, and integration into clinical workflows.
+SUMMARY: Despite these challenges, the future of ML in IPC and ASP is promising, with interdisciplinary collaboration identified as a key factor in overcoming existing barriers. ML's role in advancing personalized medicine, real-time disease monitoring, and effective IPC and ASP strategies signifies a pivotal shift towards safer, more efficient healthcare environments and improved patient care in the face of global antimicrobial resistance challenges.",article,0,,,"Hanna, John J.;Medford, Richard J.",,,,,,,Current Opinion in Infectious Diseases,295,,SCOPUS,"Hanna John J., 2024, Current Opinion in Infectious Diseases",,"Hanna John J., 2024, Current Opinion in Infectious Diseases"
+2024,16,https://app.dimensions.ai/details/publication/pub.1172366782,The Role of ArtificiaI Intelligence in Brain Tumor Diagnosis: An Evaluation of a Machine Learning Model,e61483,6,,Cureus,10.7759/cureus.61483,2024-06-01,"Abraham, Adriel;Jose, Rejath;Farooqui, Nabeel;Mayer, Jonathan;Ahmad, Jawad;Satti, Zain;Jacob, Thomas J;Syed, Faiz;Toma, Milan","This research study explores of the effectiveness of a machine learning image classification model in the accurate identification of various types of brain tumors. The types of tumors under consideration in this study are gliomas, meningiomas, and pituitary tumors. These are some of the most common types of brain tumors and pose significant challenges in terms of accurate diagnosis and treatment. The machine learning model that is the focus of this study is built on the Google Teachable Machine platform (Alphabet Inc., Mountain View, CA). The Google Teachable Machine is a machine learning image classification platform that is built from Tensorflow, a popular open-source platform for machine learning. The Google Teachable Machine model was specifically evaluated for its ability to differentiate between normal brains and the aforementioned types of tumors in MRI images. MRI images are a common tool in the diagnosis of brain tumors, but the challenge lies in the accurate classification of the tumors. This is where the machine learning model comes into play. The model is trained to recognize patterns in the MRI images that correspond to the different types of tumors. The performance of the machine learning model was assessed using several metrics. These include precision, recall, and F1 score. These metrics were generated from a confusion matrix analysis and performance graphs. A confusion matrix is a table that is often used to describe the performance of a classification model. Precision is a measure of the model's ability to correctly identify positive instances among all instances it identified as positive. Recall, on the other hand, measures the model's ability to correctly identify positive instances among all actual positive instances. The F1 score is a measure that combines precision and recall providing a single metric for model performance. The results of the study were promising. The Google Teachable Machine model demonstrated high performance, with accuracy, precision, recall, and F1 scores ranging between 0.84 and 1.00. This suggests that the model is highly effective in accurately classifying the different types of brain tumors. This study provides insights into the potential of machine learning models in the accurate classification of brain tumors. The findings of this study lay the groundwork for further research in this area and have implications for the diagnosis and treatment of brain tumors. The study also highlights the potential of machine learning in enhancing the field of medical imaging and diagnosis. With the increasing complexity and volume of medical data, machine learning models like the one evaluated in this study could play a crucial role in improving the accuracy and efficiency of diagnoses. Furthermore, the study underscores the importance of continued research and development in this field to further refine these models and overcome any potential limitations or challenges. Overall, the study contributes to the field of medical imaging and machine learning and sets the stage for future research and advancements in this area.",article,0,,,"Abraham, Adriel;Jose, Rejath;Farooqui, Nabeel;Mayer, Jonathan;Ahmad, Jawad;Satti, Zain;Jacob, Thomas J;Syed, Faiz;Toma, Milan",,,,,,,Cureus,,,SCOPUS,"Abraham Adriel, 2024, Cureus",,"Abraham Adriel, 2024, Cureus"
+2024,16,https://app.dimensions.ai/details/publication/pub.1172420857,Optimizing clinico-genomic disease prediction across ancestries: a machine learning strategy with Pareto improvement,76,1,,Genome Medicine,10.1186/s13073-024-01345-0,2024-06-04,"Gao, Yan;Cui, Yan","BackgroundAccurate prediction of an individual’s predisposition to diseases is vital for preventive medicine and early intervention. Various statistical and machine learning models have been developed for disease prediction using clinico-genomic data. However, the accuracy of clinico-genomic prediction of diseases may vary significantly across ancestry groups due to their unequal representation in clinical genomic datasets.MethodsWe introduced a deep transfer learning approach to improve the performance of clinico-genomic prediction models for data-disadvantaged ancestry groups. We conducted machine learning experiments on multi-ancestral genomic datasets of lung cancer, prostate cancer, and Alzheimer’s disease, as well as on synthetic datasets with built-in data inequality and distribution shifts across ancestry groups.ResultsDeep transfer learning significantly improved disease prediction accuracy for data-disadvantaged populations in our multi-ancestral machine learning experiments. In contrast, transfer learning based on linear frameworks did not achieve comparable improvements for these data-disadvantaged populations.ConclusionsThis study shows that deep transfer learning can enhance fairness in multi-ancestral machine learning by improving prediction accuracy for data-disadvantaged populations without compromising prediction accuracy for other populations, thus providing a Pareto improvement towards equitable clinico-genomic prediction of diseases.",article,0,,,"Gao, Yan;Cui, Yan",,,,,,,Genome Medicine,,,SCOPUS,"Gao Yan, 2024, Genome Medicine",,"Gao Yan, 2024, Genome Medicine"
+2024,43,https://app.dimensions.ai/details/publication/pub.1172432352,Applications of machine learning in urodynamics: A narrative review,1617,7,,Neurourology and Urodynamics,10.1002/nau.25490,2024-06-04,"Liu, Xin;Zhong, Ping;Gao, Yi;Liao, Limin","BACKGROUND: Machine learning algorithms as a research tool, including traditional machine learning and deep learning, are increasingly applied to the field of urodynamics. However, no studies have evaluated how to select appropriate algorithm models for different urodynamic research tasks.
+METHODS: We undertook a narrative review evaluating how the published literature reports the applications of machine learning in urodynamics. We searched PubMed up to December 2023, limited to the English language. We selected the following search terms: artificial intelligence, machine learning, deep learning, urodynamics, and lower urinary tract symptoms. We identified three domains for assessment in advance of commencing the review. These were the applications of urodynamic studies examination, applications of diagnoses of dysfunction related to urodynamics, and applications of prognosis prediction.
+RESULTS: The machine learning algorithm applied in the field of urodynamics can be mainly divided into three aspects, which are urodynamic examination, diagnosis of urinary tract dysfunction and prediction of the efficacy of various treatment methods. Most of these studies were single-center retrospective studies, lacking external validation, requiring further validation of model generalization ability, and insufficient sample size. The relevant research in this field is still in the preliminary exploration stage; there are few high-quality multi-center clinical studies, and the performance of various models still needs to be further optimized, and there is still a distance from clinical application.
+CONCLUSIONS: At present, there is no research to summarize and analyze the machine learning algorithms applied in the field of urodynamics. The purpose of this review is to summarize and classify the machine learning algorithms applied in this field and to guide researchers to select the appropriate algorithm model for different task requirements to achieve the best results.",article,0,,,"Liu, Xin;Zhong, Ping;Gao, Yi;Liao, Limin",,,,,,,Neurourology and Urodynamics,1625,,SCOPUS,"Liu Xin, 2024, Neurourology and Urodynamics",,"Liu Xin, 2024, Neurourology and Urodynamics"
+2024,362,https://app.dimensions.ai/details/publication/pub.1172439620,Environmental impact assessment of ocean energy converters using quantum machine learning,121275,,,Journal of Environmental Management,10.1016/j.jenvman.2024.121275,2024-06-04,"Rezaei, Taha;Javadi, Akbar","The depletion of fossil energy reserves and the environmental pollution caused by these sources highlight the need to harness renewable energy sources from the oceans, such as waves and tides, due to their high potential. On the other hand, the large-scale deployment of ocean energy converters to meet future energy needs requires the use of large farms of these converters, which may have negative environmental impacts on the ocean ecosystem. In the meantime, a very important point is the volume of data produced by different methods of collecting data from the ocean for their analysis, which makes the use of advanced tools such as different machine learning algorithms even more colorful. In this article, some environmental impacts of ocean energy devices have been analyzed using machine learning and quantum machine learning. The results show that quantum machine learning performs better than its classical counterpart in terms of calculation accuracy. This approach offers a promising new method for environmental impact assessment, especially in a complex environment such as the ocean.",article,0,,,"Rezaei, Taha;Javadi, Akbar",,,,,,,Journal of Environmental Management,,,SCOPUS,"Rezaei Taha, 2024, Journal of Environmental Management",,"Rezaei Taha, 2024, Journal of Environmental Management"
+2024,21,https://app.dimensions.ai/details/publication/pub.1172472878,"Predicting the transmission trends of COVID-19: an interpretable machine learning approach based on daily, death, and imported cases",6150,5,,Mathematical Biosciences and Engineering,10.3934/mbe.2024270,2024,"Ahn, Hyeonjeong;Lee, Hyojung","COVID-19 is caused by the SARS-CoV-2 virus, which has produced variants and increasing concerns about a potential resurgence since the pandemic outbreak in 2019. Predicting infectious disease outbreaks is crucial for effective prevention and control. This study aims to predict the transmission patterns of COVID-19 using machine learning, such as support vector machine, random forest, and XGBoost, using confirmed cases, death cases, and imported cases, respectively. The study categorizes the transmission trends into the three groups: L0 (decrease), L1 (maintain), and L2 (increase). We develop the risk index function to quantify changes in the transmission trends, which is applied to the classification of machine learning. A high accuracy is achieved when estimating the transmission trends for the confirmed cases (91.5-95.5%), death cases (85.6-91.8%), and imported cases (77.7-89.4%). Notably, the confirmed cases exhibit a higher level of accuracy compared to the data on the deaths and imported cases. L2 predictions outperformed L0 and L1 in all cases. Predicting L2 is important because it can lead to new outbreaks. Thus, this robust L2 prediction is crucial for the timely implementation of control policies for the management of transmission dynamics.",article,0,,,"Ahn, Hyeonjeong;Lee, Hyojung",,,,,,,Mathematical Biosciences and Engineering,6166,,SCOPUS,"Ahn Hyeonjeong, 2024, Mathematical Biosciences and Engineering",,"Ahn Hyeonjeong, 2024, Mathematical Biosciences and Engineering"
+2024,37,https://app.dimensions.ai/details/publication/pub.1172532292,First experiences with machine learning predictions of accelerated declining eGFR slope of living kidney donors 3 years after donation,1631,6,,Journal of Nephrology,10.1007/s40620-024-01967-y,2024-06-05,"Lukomski, Leandra;Pisula, Juan;Wagner, Tristan;Sabov, Andrii;Große Hokamp, Nils;Bozek, Katarzyna;Popp, Felix;Kann, Martin;Kurschat, Christine;Becker, Jan Ulrich;Bruns, Christiane;Thomas, Michael;Stippel, Dirk","BackgroundLiving kidney donors are screened pre-donation to estimate the risk of end-stage kidney disease (ESKD). We evaluate Machine Learning (ML) to predict the progression of kidney function deterioration over time using the estimated GFR (eGFR) slope as the target variable.MethodsWe included 238 living kidney donors who underwent donor nephrectomy. We divided the dataset based on the eGFR slope in the third follow-up year, resulting in 185 donors with an average eGFR slope and 53 donors with an accelerated declining eGFR-slope. We trained three Machine Learning-models (Random Forest [RF], Extreme Gradient Boosting [XG], Support Vector Machine [SVM]) and Logistic Regression (LR) for predictions. Predefined data subsets served for training to explore whether parameters of an ESKD risk score alone suffice or additional clinical and time-zero biopsy parameters enhance predictions. Machine learning-driven feature selection identified the best predictive parameters.ResultsNone of the four models classified the eGFR slope with an AUC greater than 0.6 or an F1 score surpassing 0.41 despite training on different data subsets. Following machine learning-driven feature selection and subsequent retraining on these selected features, random forest and extreme gradient boosting outperformed other models, achieving an AUC of 0.66 and an F1 score of 0.44. After feature selection, two predictive donor attributes consistently appeared in all models: smoking-related features and glomerulitis of the Banff Lesion Score.ConclusionsTraining machine learning-models with distinct predefined data subsets yielded unsatisfactory results. However, the efficacy of random forest and extreme gradient boosting improved when trained exclusively with machine learning-driven selected features, suggesting that the quality, rather than the quantity, of features is crucial for machine learning-model performance. This study offers insights into the application of emerging machine learning-techniques for the screening of living kidney donors.Graphical abstract",article,0,,,"Lukomski, Leandra;Pisula, Juan;Wagner, Tristan;Sabov, Andrii;Große Hokamp, Nils;Bozek, Katarzyna;Popp, Felix;Kann, Martin;Kurschat, Christine;Becker, Jan Ulrich;Bruns, Christiane;Thomas, Michael;Stippel, Dirk",,,,,,,Journal of Nephrology,1642,,SCOPUS,"Lukomski Leandra, 2024, Journal of Nephrology",,"Lukomski Leandra, 2024, Journal of Nephrology"
+2024,18,https://app.dimensions.ai/details/publication/pub.1172548384,Artificial intelligence in pediatric airway – A scoping review,410,3,,Saudi Journal of Anaesthesia,10.4103/sja.sja_110_24,2024-06-04,"Nemani, Sugandhi;Goyal, Shilpa;Sharma, Ankur;Kothari, Nikhil","Artificial intelligence is an ever-growing modality revolutionizing the field of medical science. It utilizes various computational models and algorithms and helps out in different sectors of healthcare. Here, in this scoping review, we are trying to evaluate the use of Artificial intelligence (AI) in the field of pediatric anesthesia, specifically in the more challenging domain, the pediatric airway. Different components within the domain of AI include machine learning, neural networks, deep learning, robotics, and computer vision. Electronic databases like Google Scholar, Cochrane databases, and Pubmed were searched. Different studies had heterogeneity of age groups, so all studies with children under 18 years of age were included and assessed. The use of AI was reviewed in the preoperative, intraoperative, and postoperative domains of pediatric anesthesia. The applicability of AI needs to be supplemented by clinical judgment for the final anticipation in various fields of medicine.",article,0,,,"Nemani, Sugandhi;Goyal, Shilpa;Sharma, Ankur;Kothari, Nikhil",,,,,,,Saudi Journal of Anaesthesia,416,,SCOPUS,"Nemani Sugandhi, 2024, Saudi Journal of Anaesthesia",,"Nemani Sugandhi, 2024, Saudi Journal of Anaesthesia"
+2024,36,https://app.dimensions.ai/details/publication/pub.1172686719,Predicting disease recurrence in breast cancer patients using machine learning models with clinical and radiomic characteristics: a retrospective study,20,1,,Journal of the Egyptian National Cancer Institute,10.1186/s43046-024-00222-6,2024-06-10,"Azeroual, Saadia;Ben-Bouazza, Fatima-ezzahraa;Naqi, Amine;Sebihi, Rajaa","BackgroundThe goal is to use three different machine learning models to predict the recurrence of breast cancer across a very heterogeneous sample of patients with varying disease kinds and stages.MethodsA heterogeneous group of patients with varying cancer kinds and stages, including both triple-negative breast cancer (TNBC) and non-triple-negative breast cancer (non-TNBC), was examined. Three distinct models were created using the following five machine learning techniques: Adaptive Boosting (AdaBoost), Random Under-sampling Boosting (RUSBoost), Extreme Gradient Boosting (XGBoost), support vector machines (SVM), and Logistic Regression. The clinical model used both clinical and pathology data in conjunction with the machine learning algorithms. The machine learning algorithms were combined with dynamic contrast-enhanced magnetic resonance imaging (DCE-MRI) imaging characteristics in the radiomic model, and the merged model combined the two types of data. Each technique was evaluated using several criteria, including the receiver operating characteristic (ROC) curve, precision, recall, and F1 score.ResultsThe results suggest that the integration of clinical and radiomic data improves the predictive accuracy in identifying instances of breast cancer recurrence. The XGBoost algorithm is widely recognized as the most effective algorithm in terms of performance.ConclusionThe findings presented in this study offer significant contributions to the field of breast cancer research, particularly in relation to the prediction of cancer recurrence. These insights hold great potential for informing future investigations and clinical interventions that seek to enhance the accuracy and effectiveness of recurrence prediction in breast cancer patients.",article,0,,,"Azeroual, Saadia;Ben-Bouazza, Fatima-ezzahraa;Naqi, Amine;Sebihi, Rajaa",,,,,,,Journal of the Egyptian National Cancer Institute,,,SCOPUS,"Azeroual Saadia, 2024, Journal of the Egyptian National Cancer Institute",,"Azeroual Saadia, 2024, Journal of the Egyptian National Cancer Institute"
+2024,62,https://app.dimensions.ai/details/publication/pub.1172744610,Intelligent alert system for predicting invasive mechanical ventilation needs via noninvasive parameters: employing an integrated machine learning method with integration of multicenter databases,3445,11,,Medical & Biological Engineering & Computing,10.1007/s11517-024-03143-7,2024-06-11,"Zhang, Guang;Xie, Qingyan;Wang, Chengyi;Xu, Jiameng;Liu, Guanjun;Su, Chen","The use of invasive mechanical ventilation (IMV) is crucial in rescuing patients with respiratory dysfunction. Accurately predicting the demand for IMV is vital for clinical decision-making. However, current techniques are invasive and challenging to implement in pre-hospital and emergency rescue settings. To address this issue, a real-time prediction method utilizing only non-invasive parameters was developed to forecast IMV demand in this study. The model introduced the concept of real-time warning and leveraged the advantages of machine learning and integrated methods, achieving an AUC value of 0.935 (95% CI 0.933–0.937). The AUC value for the multi-center validation using the AmsterdamUMCdb database was 0.727, surpassing the performance of traditional risk adjustment algorithms (OSI(oxygenation saturation index): 0.608, P/F(oxygenation index): 0.558). Feature weight analysis demonstrated that BMI, Gcsverbal, and age significantly contributed to the model’s decision-making. These findings highlight the substantial potential of a machine learning real-time dynamic warning model that solely relies on non-invasive parameters to predict IMV demand. Such a model can provide technical support for predicting the need for IMV in pre-hospital and disaster scenarios.Graphical Abstract",article,0,,,"Zhang, Guang;Xie, Qingyan;Wang, Chengyi;Xu, Jiameng;Liu, Guanjun;Su, Chen",,,,,,,Medical & Biological Engineering & Computing,3458,,SCOPUS,"Zhang Guang, 2024, Medical & Biological Engineering & Computing",,"Zhang Guang, 2024, Medical & Biological Engineering & Computing"
+2025,28,https://app.dimensions.ai/details/publication/pub.1172821205,Machine Learning in Enhancing Protein Binding Sites Predictions - What Has Changed Since Then?,1640,10,,Combinatorial Chemistry & High Throughput Screening,10.2174/0113862073305298240524050145,2025-01-01,"Ibitoye, Oluwayimika E.;Soliman, Mahmoud E.","Accurate identification of protein binding sites is pivotal for understanding molecular interactions and facilitating drug discovery efforts. However, the dynamic nature of proteinligand interactions presents a formidable challenge, necessitating innovative approaches to bridge the gap between theoretical predictions and experimental realities. This review explores the challenges and recent advancements in protein binding site prediction. Specifically, we highlight the integration of molecular dynamics simulations, machine learning, and deep learning techniques to capture the dynamic and complex nature of protein-ligand interactions. Additionally, we discuss the importance of integrating experimental data, such as structural information and biochemical assays, to enhance prediction accuracy and reliability. By navigating the intersection of classical and the onset of machine learning and deep learning approaches, we aim to provide insights into current state-of-the-art techniques and chart a course for future protein binding site prediction advancements. Ultimately, these efforts could unravel the mysteries of protein-ligand interactions and accelerate drug discovery endeavors.",article,0,,,"Ibitoye, Oluwayimika E.;Soliman, Mahmoud E.",,,,,,,Combinatorial Chemistry & High Throughput Screening,1653,,SCOPUS,"Ibitoye Oluwayimika E., 2025, Combinatorial Chemistry & High Throughput Screening",,"Ibitoye Oluwayimika E., 2025, Combinatorial Chemistry & High Throughput Screening"
+2024,11,https://app.dimensions.ai/details/publication/pub.1172830634,Precision Non-Alcoholic Fatty Liver Disease (NAFLD) Diagnosis: Leveraging Ensemble Machine Learning and Gender Insights for Cost-Effective Detection,600,6,,Bioengineering,10.3390/bioengineering11060600,2024-06-12,"Alizargar, Azadeh;Chang, Yang-Lang;Alkhaleefah, Mohammad;Tan, Tan-Hsu","Non-Alcoholic Fatty Liver Disease (NAFLD) is characterized by the accumulation of excess fat in the liver. If left undiagnosed and untreated during the early stages, NAFLD can progress to more severe conditions such as inflammation, liver fibrosis, cirrhosis, and even liver failure. In this study, machine learning techniques were employed to predict NAFLD using affordable and accessible laboratory test data, while the conventional technique hepatic steatosis index (HSI)was calculated for comparison. Six algorithms (random forest, K-nearest Neighbors, Logistic Regression, Support Vector Machine, extreme gradient boosting, decision tree), along with an ensemble model, were utilized for dataset analysis. The objective was to develop a cost-effective tool for enabling early diagnosis, leading to better management of the condition. The issue of imbalanced data was addressed using the Synthetic Minority Oversampling Technique Edited Nearest Neighbors (SMOTEENN). Various evaluation metrics including the F1 score, precision, accuracy, recall, confusion matrix, the mean absolute error (MAE), receiver operating characteristics (ROC), and area under the curve (AUC) were employed to assess the suitability of each technique for disease prediction. Experimental results using the National Health and Nutrition Examination Survey (NHANES) dataset demonstrated that the ensemble model achieved the highest accuracy (0.99) and AUC (1.00) compared to the machine learning techniques that we used and HSI. These findings indicate that the ensemble model holds potential as a beneficial tool for healthcare professionals to predict NAFLD, leveraging accessible and cost-effective laboratory test data.",article,0,,,"Alizargar, Azadeh;Chang, Yang-Lang;Alkhaleefah, Mohammad;Tan, Tan-Hsu",,,,,,,Bioengineering,,,SCOPUS,"Alizargar Azadeh, 2024, Bioengineering",,"Alizargar Azadeh, 2024, Bioengineering"
+2024,37,https://app.dimensions.ai/details/publication/pub.1172852741,"Machine learning, advanced data analysis, and a role in pregnancy care? How can we help improve preeclampsia outcomes?",101137,,,Pregnancy Hypertension,10.1016/j.preghy.2024.101137,2024-06-13,"Hennessy, Annemarie;Tran, Tu Hao;Sasikumar, Suraj Narayanan;Al-Falahi, Zaidon","The value of machine learning capacity in maternal health, and in particular prediction of preeclampsia will only be realised when there are high quality clinical data provided, representative populations included, different health systems and models of care compared, and a culture of rapid use and application of real-time data and outcomes. This review has been undertaken to provide an overview of the language, and early results of machine learning in a pregnancy and preeclampsia context. Clinicians of all backgrounds are encouraged to learn the language of Machine Learning (ML) and Artificial intelligence (AI) to better understand their potential and utility to improve outcomes for women and their families. This review will outline some definitions and features of ML that will benefit clinician's knowledge in the preeclampsia discipline, and also outline some of the future possibilities for preeclampsia-focussed clinicians via understanding AI. It will further explore the criticality of defining the risk, and outcome being determined.",article,0,,,"Hennessy, Annemarie;Tran, Tu Hao;Sasikumar, Suraj Narayanan;Al-Falahi, Zaidon",,,,,,,Pregnancy Hypertension,,,SCOPUS,"Hennessy Annemarie, 2024, Pregnancy Hypertension",,"Hennessy Annemarie, 2024, Pregnancy Hypertension"
+2024,95,https://app.dimensions.ai/details/publication/pub.1172887004,A Data-Driven Approach to Predicting Recreational Activity Participation Using Machine Learning,873,4,,Research Quarterly for Exercise and Sport,10.1080/02701367.2024.2343815,2024-06-14,"Lee, Seungbak;Kang, Minsoo","Purpose: With the popularity of recreational activities, the study aimed to develop prediction models for recreational activity participation and explore the key factors affecting participation in recreational activities. Methods: A total of 12,712 participants, excluding individuals under 20, were selected from the National Health and Nutrition Examination Survey (NHANES) from 2011 to 2018. The mean age of the sample was 46.86 years (±16.97), with a gender distribution of 6,721 males and 5,991 females. The variables included demographic, physical-related variables, and lifestyle variables. This study developed 42 prediction models using six machine learning methods, including logistic regression, Support Vector Machine (SVM), decision tree, random forest, eXtreme Gradient Boosting (XGBoost), and Light Gradient Boosting Machine (LightGBM). The relative importance of each variable was evaluated by permutation feature importance. Results: The results illustrated that the LightGBM was the most effective algorithm for predicting recreational activity participation (accuracy: .838, precision: .783, recall: .967, F1-score: .865, AUC: .826). In particular, prediction performance increased when the demographic and lifestyle datasets were used together. Next, as the result of the permutation feature importance based on the top models, education level and moderate-vigorous physical activity (MVPA) were found to be essential variables. Conclusion: These findings demonstrated the potential of a data-driven approach utilizing machine learning in a recreational discipline. Furthermore, this study interpreted the prediction model through feature importance analysis to overcome the limitation of machine learning interpretability.",article,0,,,"Lee, Seungbak;Kang, Minsoo",,,,,,,Research Quarterly for Exercise and Sport,885,,SCOPUS,"Lee Seungbak, 2024, Research Quarterly for Exercise and Sport",,"Lee Seungbak, 2024, Research Quarterly for Exercise and Sport"
+2024,14,https://app.dimensions.ai/details/publication/pub.1172903543,Machine Learning and Deep Learning Methods for Fast and Accurate Assessment of Transthoracic Echocardiogram Image Quality,761,6,,Life,10.3390/life14060761,2024-06-13,"Nazar, Wojciech;Nazar, Krzysztof;Daniłowicz-Szymanowicz, Ludmiła","High-quality echocardiogram images are the cornerstone of accurate and reliable measurements of the heart. Therefore, this study aimed to develop, validate and compare machine learning and deep learning algorithms for accurate and automated assessment of transthoracic echocardiogram image quality. In total, 4090 single-frame two-dimensional transthoracic echocardiogram images were used from apical 4-chamber, apical 2-chamber and parasternal long-axis views sampled from 3530 adult patients. The data were extracted from CAMUS and Unity Imaging open-source datasets. For every raw image, additional grayscale block histograms were developed. For block histogram datasets, six classic machine learning algorithms were tested. Moreover, convolutional neural networks based on the pre-trained EfficientNetB4 architecture were developed for raw image datasets. Classic machine learning algorithms predicted image quality with 0.74 to 0.92 accuracy (AUC 0.81 to 0.96), whereas convolutional neural networks achieved between 0.74 and 0.89 prediction accuracy (AUC 0.79 to 0.95). Both approaches are accurate methods of echocardiogram image quality assessment. Moreover, this study is a proof of concept of a novel method of training classic machine learning algorithms on block histograms calculated from raw images. Automated echocardiogram image quality assessment methods may provide additional relevant information to the echocardiographer in daily clinical practice and improve reliability in clinical decision making.",article,0,,,"Nazar, Wojciech;Nazar, Krzysztof;Daniłowicz-Szymanowicz, Ludmiła",,,,,,,Life,,,SCOPUS,"Nazar Wojciech, 2024, Life",,"Nazar Wojciech, 2024, Life"
+2024,24,https://app.dimensions.ai/details/publication/pub.1172903848,Strategies to Enrich Electrochemical Sensing Data with Analytical Relevance for Machine Learning Applications: A Focused Review,3855,12,,Sensors,10.3390/s24123855,2024-06-14,"Kang, Mijeong;Kim, Donghyeon;Kim, Jihee;Kim, Nakyung;Lee, Seunghun","In this review, recent advances regarding the integration of machine learning into electrochemical analysis are overviewed, focusing on the strategies to increase the analytical context of electrochemical data for enhanced machine learning applications. While information-rich electrochemical data offer great potential for machine learning applications, limitations arise when sensors struggle to identify or quantitatively detect target substances in a complex matrix of non-target substances. Advanced machine learning techniques are crucial, but equally important is the development of methods to ensure that electrochemical systems can generate data with reasonable variations across different targets or the different concentrations of a single target. We discuss five strategies developed for building such electrochemical systems, employed in the steps of preparing sensing electrodes, recording signals, and analyzing data. In addition, we explore approaches for acquiring and augmenting the datasets used to train and validate machine learning models. Through these insights, we aim to inspire researchers to fully leverage the potential of machine learning in electroanalytical science.",article,0,,,"Kang, Mijeong;Kim, Donghyeon;Kim, Jihee;Kim, Nakyung;Lee, Seunghun",,,,,,,Sensors,,,SCOPUS,"Kang Mijeong, 2024, Sensors",,"Kang Mijeong, 2024, Sensors"
+2024,45,https://app.dimensions.ai/details/publication/pub.1173034778,SAnDReS 2.0: Development of machine‐learning models to explore the scoring function space,2333,27,,Journal of Computational Chemistry,10.1002/jcc.27449,2024-06-20,"de Azevedo, Walter Filgueira;Quiroga, Rodrigo;Villarreal, Marcos Ariel;da Silveira, Nelson José Freitas;Bitencourt‐Ferreira, Gabriela;da Silva, Amauri Duarte;Veit‐Acosta, Martina;Oliveira, Patricia Rufino;Tutone, Marco;Biziukova, Nadezhda;Poroikov, Vladimir;Tarasova, Olga;Baud, Stéphaine","Classical scoring functions may exhibit low accuracy in determining ligand binding affinity for proteins. The availability of both protein-ligand structures and affinity data make it possible to develop machine-learning models focused on specific protein systems with superior predictive performance. Here, we report a new methodology named SAnDReS that combines AutoDock Vina 1.2 with 54 regression methods available in Scikit-Learn to calculate binding affinity based on protein-ligand structures. This approach allows exploration of the scoring function space. SAnDReS generates machine-learning models based on crystal, docked, and AlphaFold-generated structures. As a proof of concept, we examine the performance of SAnDReS-generated models in three case studies. For all three cases, our models outperformed classical scoring functions. Also, SAnDReS-generated models showed predictive performance close to or better than other machine-learning models such as KDEEP, CSM-lig, and ΔVinaRF20. SAnDReS 2.0 is available to download at https://github.com/azevedolab/sandres.",article,0,,,"de Azevedo, Walter Filgueira;Quiroga, Rodrigo;Villarreal, Marcos Ariel;da Silveira, Nelson José Freitas;Bitencourt‐Ferreira, Gabriela;da Silva, Amauri Duarte;Veit‐Acosta, Martina;Oliveira, Patricia Rufino;Tutone, Marco;Biziukova, Nadezhda;Poroikov, Vladimir;Tarasova, Olga;Baud, Stéphaine",,,,,,,Journal of Computational Chemistry,2346,,SCOPUS,"de Azevedo Walter Filgueira, 2024, Journal of Computational Chemistry",,"de Azevedo Walter Filgueira, 2024, Journal of Computational Chemistry"
+2024,10,https://app.dimensions.ai/details/publication/pub.1173157329,The role of machine learning algorithms in detection of gestational diabetes; a narrative review of current evidence,18,1,,Clinical Diabetes and Endocrinology,10.1186/s40842-024-00176-7,2024-06-25,"Kokori, Emmanuel;Olatunji, Gbolahan;Aderinto, Nicholas;Muogbo, Ifeanyichukwu;Ogieuhi, Ikponmwosa Jude;Isarinade, David;Ukoaka, Bonaventure;Akinmeji, Ayodeji;Ajayi, Irene;Chidiogo, Ezenwoba;Samuel, Owolabi;Nurudeen-Busari, Habeebat;Muili, Abdulbasit Opeyemi;Olawade, David B.","Gestational Diabetes Mellitus (GDM) poses significant health risks to mothers and infants. Early prediction and effective management are crucial to improving outcomes. Machine learning techniques have emerged as powerful tools for GDM prediction. This review compiles and analyses the available studies to highlight key findings and trends in the application of machine learning for GDM prediction. A comprehensive search of relevant studies published between 2000 and September 2023 was conducted. Fourteen studies were selected based on their focus on machine learning for GDM prediction. These studies were subjected to rigorous analysis to identify common themes and trends. The review revealed several key themes. Models capable of predicting GDM risk during the early stages of pregnancy were identified from the studies reviewed. Several studies underscored the necessity of tailoring predictive models to specific populations and demographic groups. These findings highlighted the limitations of uniform guidelines for diverse populations. Moreover, studies emphasised the value of integrating clinical data into GDM prediction models. This integration improved the treatment and care delivery for individuals diagnosed with GDM. While different machine learning models showed promise, selecting and weighing variables remains complex. The reviewed studies offer valuable insights into the complexities and potential solutions in GDM prediction using machine learning. The pursuit of accurate, early prediction models, the consideration of diverse populations, clinical data, and emerging data sources underscore the commitment of researchers to improve healthcare outcomes for pregnant individuals at risk of GDM.",article,0,,,"Kokori, Emmanuel;Olatunji, Gbolahan;Aderinto, Nicholas;Muogbo, Ifeanyichukwu;Ogieuhi, Ikponmwosa Jude;Isarinade, David;Ukoaka, Bonaventure;Akinmeji, Ayodeji;Ajayi, Irene;Chidiogo, Ezenwoba;Samuel, Owolabi;Nurudeen-Busari, Habeebat;Muili, Abdulbasit Opeyemi;Olawade, David B.",,,,,,,Clinical Diabetes and Endocrinology,,,SCOPUS,"Kokori Emmanuel, 2024, Clinical Diabetes and Endocrinology",,"Kokori Emmanuel, 2024, Clinical Diabetes and Endocrinology"
+2024,99,https://app.dimensions.ai/details/publication/pub.1173226789,Machine learning risk stratification for high-risk infant follow-up of term and late preterm infants,1827,5,,Pediatric Research,10.1038/s41390-024-03338-6,2024-06-26,"Carlton, Katherine;Zhang, Jian;Cabacungan, Erwin;Herrera, Sofia;Koop, Jennifer;Yan, Ke;Cohen, Susan","BackgroundTerm and late preterm infants are not routinely referred to high-risk infant follow-up programs at neonatal intensive care unit (NICU) discharge. We aimed to identify NICU factors associated with abnormal developmental screening and develop a risk-stratification model using machine learning for high-risk infant follow-up enrollment.MethodsWe performed a retrospective cohort study identifying abnormal developmental screening prior to 6 years of age in infants born ≥34 weeks gestation admitted to a level IV NICU. Five machine learning models using NICU predictors were developed by classification and regression tree (CART), random forest, gradient boosting TreeNet, multivariate adaptive regression splines (MARS), and regularized logistic regression analysis. Performance metrics included sensitivity, specificity, accuracy, precision, and area under the receiver operating curve (AUC).ResultsWithin this cohort, 87% (1183/1355) received developmental screening, and 47% had abnormal results. Common NICU predictors across all models were oral (PO) feeding, follow-up appointments, and medications prescribed at NICU discharge. Each model resulted in an AUC > 0.7, specificity >70%, and sensitivity >60%.ConclusionStratification of developmental risk in term and late preterm infants is possible utilizing machine learning. Applying machine learning algorithms allows for targeted expansion of high-risk infant follow-up criteria.ImpactThis study addresses the gap in knowledge of developmental outcomes of infants ≥34 weeks gestation requiring neonatal intensive care.Machine learning methodology can be used to stratify early childhood developmental risk for these term and late preterm infants.Applying the classification and regression tree (CART) algorithm described in the study allows for targeted expansion of high-risk infant follow-up enrollment to include those term and late preterm infants who may benefit most.",article,0,,,"Carlton, Katherine;Zhang, Jian;Cabacungan, Erwin;Herrera, Sofia;Koop, Jennifer;Yan, Ke;Cohen, Susan",,,,,,,Pediatric Research,1835,,SCOPUS,"Carlton Katherine, 2024, Pediatric Research",,"Carlton Katherine, 2024, Pediatric Research"
+2024,4,https://app.dimensions.ai/details/publication/pub.1173244576,Application of Directed Evolution and Machine Learning to Enhance the Diastereoselectivity of Ketoreductase for Dihydrotetrabenazine Synthesis,2547,7,,JACS Au,10.1021/jacsau.4c00284,2024-06-26,"Huang, Chenming;Zhang, Li;Tang, Tong;Wang, Haijiao;Jiang, Yingqian;Ren, Hanwen;Zhang, Yitian;Fang, Jiali;Zhang, Wenhe;Jia, Xian;You, Song;Qin, Bin","Biocatalysis is an effective approach for producing chiral drug intermediates that are often difficult to synthesize using traditional chemical methods. A time-efficient strategy is required to accelerate the directed evolution process to achieve the desired enzyme function. In this research, we evaluated machine learning-assisted directed evolution as a potential approach for enzyme engineering, using a moderately diastereoselective ketoreductase library as a model system. Machine learning-assisted directed evolution and traditional directed evolution methods were compared for reducing (±)-tetrabenazine to dihydrotetrabenazine via kinetic resolution facilitated by BsSDR10, a short-chain dehydrogenase/reductase from Bacillus subtilis. Both methods successfully identified variants with significantly improved diastereoselectivity for each isomer of dihydrotetrabenazine. Furthermore, the preparation of (2S,3S,11bS)-dihydrotetrabenazine has been successfully scaled up, with an isolated yield of 40.7% and a diastereoselectivity of 91.3%.",article,0,,,"Huang, Chenming;Zhang, Li;Tang, Tong;Wang, Haijiao;Jiang, Yingqian;Ren, Hanwen;Zhang, Yitian;Fang, Jiali;Zhang, Wenhe;Jia, Xian;You, Song;Qin, Bin",,,,,,,JACS Au,2556,,SCOPUS,"Huang Chenming, 2024, JACS Au",,"Huang Chenming, 2024, JACS Au"
+2024,64,https://app.dimensions.ai/details/publication/pub.1173306403,Prediction of Vacuum Ultraviolet/Ultraviolet Gas-Phase Absorption Spectra Using Molecular Feature Representations and Machine Learning,5547,14,,Journal of Chemical Information and Modeling,10.1021/acs.jcim.4c00676,2024-06-28,"Manh, Linh Ho;Chen, Victoria C. P.;Rosenberger, Jay;Wang, Shouyi;Yang, Yujing;Schug, Kevin A.","Ultraviolet (UV) absorption spectroscopy is a widely used tool for quantitative and qualitative analyses of chemical compounds. In the gas phase, vacuum UV (VUV) and UV absorption spectra are specific and diagnostic for many small molecules. An accurate prediction of VUV/UV absorption spectra can aid the characterization of new or unknown molecules in areas such as fuels, forensics, and pharmaceutical research. An alternative to quantum chemical spectral prediction is the use of artificial intelligence. Here, different molecular feature representation techniques were used and developed to encode chemical structures for testing three machine learning models to predict gas-phase VUV/UV absorption spectra. Structure data files (.sdf) and VUV/UV absorption spectra for 1397 volatile and semivolatile chemical compounds were used to train and test the models. New molecular features (termed ABOCH) were introduced to better capture pi-bonding, aromaticity, and halogenation. The incorporation of these new features benefited spectral prediction and demonstrated superior performance compared to computationally intensive molecular-based deep learning methods. Of the machine learning methods, the use of a Random Forest regressor returned the best accuracy score with the shortest training time. The developed machine learning prediction model also outperformed spectral predictions based on the time-dependent density functional theory.",article,0,,,"Manh, Linh Ho;Chen, Victoria C. P.;Rosenberger, Jay;Wang, Shouyi;Yang, Yujing;Schug, Kevin A.",,,,,,,Journal of Chemical Information and Modeling,5556,,SCOPUS,"Manh Linh Ho, 2024, Journal of Chemical Information and Modeling",,"Manh Linh Ho, 2024, Journal of Chemical Information and Modeling"
+2024,14,https://app.dimensions.ai/details/publication/pub.1173352020,Generating Complex Explanations for Artificial Intelligence Models: An Application to Clinical Data on Severe Mental Illness,807,7,,Life,10.3390/life14070807,2024-06-26,"Banerjee, Soumya","We present an explainable artificial intelligence methodology for predicting mortality in patients. We combine clinical data from an electronic patient healthcare record system with factors relevant for severe mental illness and then apply machine learning. The machine learning model is used to predict mortality in patients with severe mental illness. Our methodology uses class-contrastive reasoning. We show how machine learning scientists can use class-contrastive reasoning to generate complex explanations that explain machine model predictions and data. An example of a complex class-contrastive explanation is the following: ""The patient is predicted to have a low probability of death because the patient has self-harmed before, and was at some point on medications such as first-generation and second-generation antipsychotics. There are 11 other patients with these characteristics. If the patient did not have these characteristics, the prediction would be different"". This can be used to generate new hypotheses, which can be tested in follow-up studies. Diuretics seemed to be associated with a lower probability of mortality (as predicted by the machine learning model) in a group of patients with cardiovascular disease. The combination of delirium and dementia in Alzheimer's disease may also predispose some patients towards a higher probability of predicted mortality. Our technique can be employed to create intricate explanations from healthcare data and possibly other areas where explainability is important. We hope this will be a step towards explainable AI in personalized medicine.",article,0,,,"Banerjee, Soumya",,,,,,,Life,,,SCOPUS,"Banerjee Soumya, 2024, Life",,"Banerjee Soumya, 2024, Life"
+2024,19,https://app.dimensions.ai/details/publication/pub.1173402228,Applying Machine Learning for Antibiotic Development and Prediction of Microbial Resistance,e202400102,18,,Chemistry – An Asian Journal,10.1002/asia.202400102,2024-08-23,"Panjla, Apurva;Joshi, Saurabh;Singh, Geetanjali;Bamford, Sarah E.;Mechler, Adam;Verma, Sandeep","Antimicrobial resistance (AMR) poses a serious threat to human health worldwide. It is now more challenging than ever to introduce a potent antibiotic to the market considering rapid emergence of antimicrobial resistance, surpassing the rate of antibiotic drug discovery. Hence, new approaches need to be developed to accelerate the rate of drug discovery process and meet the demands for new antibiotics, while reducing the cost of their development. Machine learning holds immense promise of becoming a useful tool, especially since in the last two decades, exponential growth has occurred in computational power and biological big data analytics. Recent advancements in machine learning algorithms for drug discovery have provided significant clues for potential antibiotic classes. Apart from discovery of new scaffolds, the machine learning protocols will significantly impact prediction of AMR patterns and drug metabolism. In this review, we outline power of machine learning in antibiotic drug discovery, metabolic fate, and AMR prediction to support researchers engaged and interested in this field.",article,0,,,"Panjla, Apurva;Joshi, Saurabh;Singh, Geetanjali;Bamford, Sarah E.;Mechler, Adam;Verma, Sandeep",,,,,,,Chemistry – An Asian Journal,,,SCOPUS,"Panjla Apurva, 2024, Chemistry – An Asian Journal",,"Panjla Apurva, 2024, Chemistry – An Asian Journal"
+2024,19,https://app.dimensions.ai/details/publication/pub.1173411733,Comparison of model feature importance statistics to identify covariates that contribute most to model accuracy in prediction of insomnia,e0306359,7,,PLOS ONE,10.1371/journal.pone.0306359,2024-07-02,"Huang, Alexander A.;Huang, Samuel Y.","IMPORTANCE: Sleep is critical to a person's physical and mental health and there is a need to create high performing machine learning models and critically understand how models rank covariates.
+OBJECTIVE: The study aimed to compare how different model metrics rank the importance of various covariates.
+DESIGN, SETTING, AND PARTICIPANTS: A cross-sectional cohort study was conducted retrospectively using the National Health and Nutrition Examination Survey (NHANES), which is publicly available.
+METHODS: This study employed univariate logistic models to filter out strong, independent covariates associated with sleep disorder outcome, which were then used in machine-learning models, of which, the most optimal was chosen. The machine-learning model was used to rank model covariates based on gain, cover, and frequency to identify risk factors for sleep disorder and feature importance was evaluated using both univariable and multivariable t-statistics. A correlation matrix was created to determine the similarity of the importance of variables ranked by different model metrics.
+RESULTS: The XGBoost model had the highest mean AUROC of 0.865 (SD = 0.010) with Accuracy of 0.762 (SD = 0.019), F1 of 0.875 (SD = 0.766), Sensitivity of 0.768 (SD = 0.023), Specificity of 0.782 (SD = 0.025), Positive Predictive Value of 0.806 (SD = 0.025), and Negative Predictive Value of 0.737 (SD = 0.034). The model metrics from the machine learning of gain and cover were strongly positively correlated with one another (r > 0.70). Model metrics from the multivariable model and univariable model were weakly negatively correlated with machine learning model metrics (R between -0.3 and 0).
+CONCLUSION: The ranking of important variables associated with sleep disorder in this cohort from the machine learning models were not related to those from regression models.",article,0,,,"Huang, Alexander A.;Huang, Samuel Y.",,,,,,,PLOS ONE,,,SCOPUS,"Huang Alexander A., 2024, PLOS ONE",,"Huang Alexander A., 2024, PLOS ONE"
+2024,167,https://app.dimensions.ai/details/publication/pub.1173556632,Validation of an Electronic Health Record–Based Machine Learning Model Compared With Clinical Risk Scores for Gastrointestinal Bleeding,1198,6,,Gastroenterology,10.1053/j.gastro.2024.06.030,2024-07-05,"Shung, Dennis L.;Chan, Colleen E.;You, Kisung;Nakamura, Shinpei;Saarinen, Theo;Zheng, Neil S.;Simonov, Michael;Li, Darrick K.;Tsay, Cynthia;Kawamura, Yuki;Shen, Matthew;Hsiao, Allen;Sekhon, Jasjeet;Laine, Loren","BACKGROUND & AIMS: Guidelines recommend use of risk stratification scores for patients presenting with gastrointestinal bleeding (GIB) to identify very-low-risk patients eligible for discharge from emergency departments. Machine learning models may outperform existing scores and can be integrated within the electronic health record (EHR) to provide real-time risk assessment without manual data entry. We present the first EHR-based machine learning model for GIB.
+METHODS: The training cohort comprised 2546 patients and internal validation of 850 patients presenting with overt GIB (ie, hematemesis, melena, and hematochezia) to emergency departments of 2 hospitals from 2014 to 2019. External validation was performed on 926 patients presenting to a different hospital with the same EHR from 2014 to 2019. The primary outcome was a composite of red blood cell transfusion, hemostatic intervention (ie, endoscopic, interventional radiologic, or surgical), and 30-day all-cause mortality. We used structured data fields in the EHR, available within 4 hours of presentation, and compared the performance of machine learning models with current guideline-recommended risk scores, Glasgow-Blatchford Score, and Oakland Score. Primary analysis was area under the receiver operating characteristic curve. Secondary analysis was specificity at 99% sensitivity to assess the proportion of patients correctly identified as very low risk.
+RESULTS: The machine learning model outperformed the Glasgow-Blatchford Score (area under the receiver operating characteristic curve, 0.92 vs 0.89; P < .001) and Oakland Score (area under the receiver operating characteristic curve, 0.92 vs 0.89; P < .001). At the very-low-risk threshold of 99% sensitivity, the machine learning model identified more very-low-risk patients: 37.9% vs 18.5% for Glasgow-Blatchford Score and 11.7% for Oakland Score (P < .001 for both comparisons).
+CONCLUSIONS: An EHR-based machine learning model performs better than currently recommended clinical risk scores and identifies more very-low-risk patients eligible for discharge from the emergency department.",article,0,,,"Shung, Dennis L.;Chan, Colleen E.;You, Kisung;Nakamura, Shinpei;Saarinen, Theo;Zheng, Neil S.;Simonov, Michael;Li, Darrick K.;Tsay, Cynthia;Kawamura, Yuki;Shen, Matthew;Hsiao, Allen;Sekhon, Jasjeet;Laine, Loren",,,,,,,Gastroenterology,1212,,SCOPUS,"Shung Dennis L., 2024, Gastroenterology",,"Shung Dennis L., 2024, Gastroenterology"
+2024,32,https://app.dimensions.ai/details/publication/pub.1173583021,Experience in psychological counseling supported by artificial intelligence technology,3871,6,,Technology and Health Care,10.3233/thc-230809,2024,"Ping, Yuxia","BACKGROUND: In recent years, artificial intelligence (AI) technology has been continuously advancing and finding extensive applications, with one of its core technologies, machine learning, being increasingly utilized in the field of healthcare.
+OBJECTIVE: This research aims to explore the role of Artificial Intelligence (AI) technology in psychological counseling and utilize machine learning algorithms to predict counseling outcomes.
+METHODS: Firstly, by employing natural language processing techniques to analyze user conversations with AI chatbots, researchers can gain insights into the psychological states and needs of users during the counseling process. This involves detailed analysis using text analysis, sentiment analysis, and other relevant techniques. Subsequently, machine learning algorithms are used to establish predictive models that forecast counseling outcomes and user satisfaction based on data such as user language, emotions, and behavior. These predictive results can assist counselors or AI chatbots in adjusting counseling strategies, thereby enhancing counseling effectiveness and user experience. Additionally, this study explores the potential and prospects of AI technology in the field of psychological counseling.
+RESULTS: The research findings indicate that the designed machine learning models achieve an accuracy rate of approximately 89% in analyzing psychological conditions. This demonstrates significant innovation and breakthroughs in AI technology. Consequently, AI technology will gradually become a highly important tool and method in the field of psychological counseling.
+CONCLUSION: In the future, AI chatbots will become more intelligent and personalized, providing users with precise, efficient, and convenient psychological counseling services. The results of this research provide valuable technical insights for further improving AI-supported psychological counseling, contributing positively to the application and development of AI technology.",article,0,,,"Ping, Yuxia",,,,,,,Technology and Health Care,3888,,SCOPUS,"Ping Yuxia, 2024, Technology and Health Care",,"Ping Yuxia, 2024, Technology and Health Care"
+2024,20,https://app.dimensions.ai/details/publication/pub.1173583039,Machine learning and deep learning approaches for enhanced prediction of hERG blockade: a comprehensive QSAR modeling study,665,7,,Expert Opinion on Drug Metabolism & Toxicology,10.1080/17425255.2024.2377593,2024-07-02,"Liu, Jie;Khan, Kamrul Hasan;Guo, Wenjing;Dong, Fan;Ge, Weigong;Zhang, Chaoyang;Gong, Ping;Patterson, Tucker A.;Hong, Huixiao","BACKGROUND: Cardiotoxicity is a major cause of drug withdrawal. The hERG channel, regulating ion flow, is pivotal for heart and nervous system function. Its blockade is a concern in drug development. Predicting hERG blockade is essential for identifying cardiac safety issues. Various QSAR models exist, but their performance varies. Ongoing improvements show promise, necessitating continued efforts to enhance accuracy using emerging deep learning algorithms in predicting potential hERG blockade.
+STUDY DESIGN AND METHOD: Using a large training dataset, six individual QSAR models were developed. Additionally, three ensemble models were constructed. All models were evaluated using 10-fold cross-validations and two external datasets.
+RESULTS: The 10-fold cross-validations resulted in Mathews correlation coefficient (MCC) values from 0.682 to 0.730, surpassing the best-reported model on the same dataset (0.689). External validations yielded MCC values from 0.520 to 0.715 for the first dataset, exceeding those of previously reported models (0-0.599). For the second dataset, MCC values fell between 0.025 and 0.215, aligning with those of reported models (0.112-0.220).
+CONCLUSIONS: The developed models can assist the pharmaceutical industry and regulatory agencies in predicting hERG blockage activity, thereby enhancing safety assessments and reducing the risk of adverse cardiac events associated with new drug candidates.",article,0,,,"Liu, Jie;Khan, Kamrul Hasan;Guo, Wenjing;Dong, Fan;Ge, Weigong;Zhang, Chaoyang;Gong, Ping;Patterson, Tucker A.;Hong, Huixiao",,,,,,,Expert Opinion on Drug Metabolism & Toxicology,684,,SCOPUS,"Liu Jie, 2024, Expert Opinion on Drug Metabolism & Toxicology",,"Liu Jie, 2024, Expert Opinion on Drug Metabolism & Toxicology"
+2024,14,https://app.dimensions.ai/details/publication/pub.1173619463,Enhancing construction safety: predicting worker sleep deprivation using machine learning algorithms,15716,1,,Scientific Reports,10.1038/s41598-024-65568-2,2024-07-08,"Sathvik, S.;Alsharef, Abdullah;Singh, Atul Kumar;Shah, Mohd Asif;ShivaKumar, G.","Sleep deprivation is a critical issue that affects workers in numerous industries, including construction. It adversely affects workers and can lead to significant concerns regarding their health, safety, and overall job performance. Several studies have investigated the effects of sleep deprivation on safety and productivity. Although the impact of sleep deprivation on safety and productivity through cognitive impairment has been investigated, research on the association of sleep deprivation and contributing factors that lead to workplace hazards and injuries remains limited. To fill this gap in the literature, this study utilized machine learning algorithms to predict hazardous situations. Furthermore, this study demonstrates the applicability of machine learning algorithms, including support vector machine and random forest, by predicting sleep deprivation in construction workers based on responses from 240 construction workers, identifying seven primary indices as predictive factors. The findings indicate that the support vector machine algorithm produced superior sleep deprivation prediction outcomes during the validation process. The study findings offer significant benefits to stakeholders in the construction industry, particularly project and safety managers. By enabling the implementation of targeted interventions, these insights can help reduce accidents and improve workplace safety through the timely and accurate prediction of sleep deprivation.",article,0,,,"Sathvik, S.;Alsharef, Abdullah;Singh, Atul Kumar;Shah, Mohd Asif;ShivaKumar, G.",,,,,,,Scientific Reports,,,SCOPUS,"Sathvik S., 2024, Scientific Reports",,"Sathvik S., 2024, Scientific Reports"
+2024,37,https://app.dimensions.ai/details/publication/pub.1173639450,Machine learning: implications and applications for ambulatory anesthesia,619,6,,Current Opinion in Anaesthesiology,10.1097/aco.0000000000001410,2024-07-08,"Anand, Karisa;Hong, Suk;Anand, Kapil;Hendrix, Joseph","PURPOSE OF REVIEW: This review explores the timely and relevant applications of machine learning in ambulatory anesthesia, focusing on its potential to optimize operational efficiency, personalize risk assessment, and enhance patient care.
+RECENT FINDINGS: Machine learning models have demonstrated the ability to accurately forecast case durations, Post-Anesthesia Care Unit (PACU) lengths of stay, and risk of hospital transfers based on preoperative patient and procedural factors. These models can inform case scheduling, resource allocation, and preoperative evaluation. Additionally, machine learning can standardize assessments, predict outcomes, improve handoff communication, and enrich patient education.
+SUMMARY: Machine learning has the potential to revolutionize ambulatory anesthesia practice by optimizing efficiency, personalizing care, and improving quality and safety. However, limitations such as algorithmic opacity, data biases, reproducibility issues, and adoption barriers must be addressed through transparent, participatory design principles and ongoing validation to ensure responsible innovation and incremental adoption.",article,0,,,"Anand, Karisa;Hong, Suk;Anand, Kapil;Hendrix, Joseph",,,,,,,Current Opinion in Anaesthesiology,623,,SCOPUS,"Anand Karisa, 2024, Current Opinion in Anaesthesiology",,"Anand Karisa, 2024, Current Opinion in Anaesthesiology"
+2024,115,https://app.dimensions.ai/details/publication/pub.1173736391,Uveal melanoma distant metastasis prediction system: A retrospective observational study based on machine learning,3107,9,,Cancer Science,10.1111/cas.16276,2024-07-11,"Wu, Shi‐Nan;Qin, Dan‐Yi;Zhu, Linfangzi;Guo, Shu‐Jia;Li, Xiang;Huang, Cai‐Hong;Hu, Jiaoyue;Liu, Zuguo","Uveal melanoma (UM) patients face a significant risk of distant metastasis, closely tied to a poor prognosis. Despite this, there is a dearth of research utilizing big data to predict UM distant metastasis. This study leveraged machine learning methods on the Surveillance, Epidemiology, and End Results (SEER) database to forecast the risk probability of distant metastasis. Therefore, the information on UM patients from the SEER database (2000-2020) was split into a 7:3 ratio training set and an internal test set based on distant metastasis presence. Univariate and multivariate logistic regression analyses assessed distant metastasis risk factors. Six machine learning methods constructed a predictive model post-feature variable selection. The model evaluation identified the multilayer perceptron (MLP) as optimal. Shapley additive explanations (SHAP) interpreted the chosen model. A web-based calculator personalized risk probabilities for UM patients. The results show that nine feature variables contributed to the machine learning model. The MLP model demonstrated superior predictive accuracy (Precision = 0.788; ROC AUC = 0.876; PR AUC = 0.788). Grade recode, age, primary site, time from diagnosis to treatment initiation, and total number of malignant tumors were identified as distant metastasis risk factors. Diagnostic method, laterality, rural-urban continuum code, and radiation recode emerged as protective factors. The developed web calculator utilizes the MLP model for personalized risk assessments. In conclusion, the MLP machine learning model emerges as the optimal tool for predicting distant metastasis in UM patients. This model facilitates personalized risk assessments, empowering early and tailored treatment strategies.",article,0,,,"Wu, Shi‐Nan;Qin, Dan‐Yi;Zhu, Linfangzi;Guo, Shu‐Jia;Li, Xiang;Huang, Cai‐Hong;Hu, Jiaoyue;Liu, Zuguo",,,,,,,Cancer Science,3126,,SCOPUS,"Wu Shi‐Nan, 2024, Cancer Science",,"Wu Shi‐Nan, 2024, Cancer Science"
+2024,33,https://app.dimensions.ai/details/publication/pub.1173738900,The impact of machine learning on the prediction of diabetic foot ulcers – A systematic review,853,4,,Journal of Tissue Viability,10.1016/j.jtv.2024.07.004,2024-07-11,"Weatherall, Teagan;Avsar, Pinar;Nugent, Linda;Moore, Zena;McDermott, John H;Sreenan, Seamus;Wilson, Hannah;McEvoy, Natalie L;Derwin, Rosemarie;Chadwick, Paul;Patton, Declan","INTRODUCTION: Globally, diabetes mellitus poses a significant health challenge as well as the associated complications of diabetes, such as diabetic foot ulcers (DFUs). The early detection of DFUs is important in the healing process and machine learning may be able to help inform clinical staff during the treatment process.
+METHODS: A PRISMA-informed search of the literature was completed via the Cochrane Library and MEDLINE (OVID), EMBASE, CINAHL Plus and Scopus databases for reports published in English and in the last ten years. The primary outcome of interest was the impact of machine learning on the prediction of DFUs. The secondary outcome was the statistical performance measures reported. Data were extracted using a predesigned data extraction tool. Quality appraisal was undertaken using the evidence-based librarianship critical appraisal tool.
+RESULTS: A total of 18 reports met the inclusion criteria. Nine reports proposed models to identify two classes, either healthy skin or a DFU. Nine reports proposed models to predict the progress of DFUs, for example, classing infection versus non-infection, or using wound characteristics to predict healing. A variety of machine learning techniques were proposed. Where reported, sensitivity = 74.53-98 %, accuracy = 64.6-99.32 %, precision = 62.9-99 %, and the F-measure = 52.05-99.0 %.
+CONCLUSIONS: A variety of machine learning models were suggested to successfully classify DFUs from healthy skin, or to inform the prediction of DFUs. The proposed machine learning models may have the potential to inform the clinical practice of managing DFUs and may help to improve outcomes for individuals with DFUs. Future research may benefit from the development of a standard device and algorithm that detects, diagnoses and predicts the progress of DFUs.",article,0,,,"Weatherall, Teagan;Avsar, Pinar;Nugent, Linda;Moore, Zena;McDermott, John H;Sreenan, Seamus;Wilson, Hannah;McEvoy, Natalie L;Derwin, Rosemarie;Chadwick, Paul;Patton, Declan",,,,,,,Journal of Tissue Viability,863,,SCOPUS,"Weatherall Teagan, 2024, Journal of Tissue Viability",,"Weatherall Teagan, 2024, Journal of Tissue Viability"
+2024,190,https://app.dimensions.ai/details/publication/pub.1173742883,Evaluation of risk factors and survival rates of patients with early-stage breast cancer with machine learning and traditional methods,105548,,,International Journal of Medical Informatics,10.1016/j.ijmedinf.2024.105548,2024-07-11,"Özgür, Emrah Gökay;Ulgen, Ayse;Uzun, Sinan;Bekiroğlu, Gülnaz Nural","BACKGROUND: This article is aimed to make predictions in terms of prognostic factors and compare prediction methods by using Cox proportional hazards regression analysis (CPH), some machine learning techniques and Accelerated Failure Time (AFT) model for post-treatment survival probabilities according to clinical presentations and pathological information of early-stage breast cancer patients.
+MATERIAL AND METHODS: The study was carried out in three stages. In the first stage, the CPH method was applied. In the second stage, the AFT model and in the last stage, machine learning methods were applied. The data set consists of 697 breast cancer patients who applied to Marmara University Hospital oncology clinic between 01.01.1994 and 31.12.2009. The models obtained by using various parameters of the patients were compared according to the C index, 5-year survival rate and 10-year survival rate.
+RESULTS AND CONCLUSION: According to the models obtained as a result of the analyses applied, MetLN and age were obtained as a significant risk factor as a result of CPH method and AFT methods, while MetLN, age, tumor size, LV1 and extracapsular involvement were obtained as risk factors in machine learning methods. In addition, when the c-index values of the handheld models are examined, it is obtained as 69.8 for the CPH model, 70.36 for the AFT model, 72.1 for the random survival forest and 72.8 for the gradient boosting machine. In conclusion, the study highlights the potential of comparing conventional statistical methods and machine-learning algorithms to improve the precision of risk factor determination in early-stage breast cancer prognosis. Additionally, efforts should be made to enhance the interpretability of machine-learning models, ensuring that the results obtained can be effectively communicated and utilized by clinical practitioners. This would enable more informed decision-making and personalized care in the treatment and follow-up processes for early-stage breast cancer patients.",article,0,,,"Özgür, Emrah Gökay;Ulgen, Ayse;Uzun, Sinan;Bekiroğlu, Gülnaz Nural",,,,,,,International Journal of Medical Informatics,,,SCOPUS,"Özgür Emrah Gökay, 2024, International Journal of Medical Informatics",,"Özgür Emrah Gökay, 2024, International Journal of Medical Informatics"
+2024,25,https://app.dimensions.ai/details/publication/pub.1173811928,A novel deep machine learning algorithm with dimensionality and size reduction approaches for feature elimination: thyroid cancer diagnoses with randomly missing data,bbae344,4,,Briefings in Bioinformatics,10.1093/bib/bbae344,2024-05-23,"Tutsoy, Onder;Sumbul, Hilmi Erdem","Thyroid cancer incidences endure to increase even though a large number of inspection tools have been developed recently. Since there is no standard and certain procedure to follow for the thyroid cancer diagnoses, clinicians require conducting various tests. This scrutiny process yields multi-dimensional big data and lack of a common approach leads to randomly distributed missing (sparse) data, which are both formidable challenges for the machine learning algorithms. This paper aims to develop an accurate and computationally efficient deep learning algorithm to diagnose the thyroid cancer. In this respect, randomly distributed missing data stemmed singularity in learning problems is treated and dimensionality reduction with inner and target similarity approaches are developed to select the most informative input datasets. In addition, size reduction with the hierarchical clustering algorithm is performed to eliminate the considerably similar data samples. Four machine learning algorithms are trained and also tested with the unseen data to validate their generalization and robustness abilities. The results yield 100% training and 83% testing preciseness for the unseen data. Computational time efficiencies of the algorithms are also examined under the equal conditions.",article,0,,,"Tutsoy, Onder;Sumbul, Hilmi Erdem",,,,,,,Briefings in Bioinformatics,,,SCOPUS,"Tutsoy Onder, 2024, Briefings in Bioinformatics",,"Tutsoy Onder, 2024, Briefings in Bioinformatics"
+2024,54,https://app.dimensions.ai/details/publication/pub.1173944082,Radiomics based on multiple machine learning methods for diagnosing early bone metastases not visible on CT images,335,2,,Skeletal Radiology,10.1007/s00256-024-04752-x,2024-07-19,"Wang, Huili;Qiu, Jianfeng;Lu, Weizhao;Xie, Jindong;Ma, Junchi","ObjectivesThis study utilizes [99mTc]-methylene diphosphate (MDP) single photon emission computed tomography (SPECT) images as a reference standard to evaluate whether the integration of radiomics features from computed tomography (CT) and machine learning algorithms can identify microscopic early bone metastases. Additionally, we also determine the optimal machine learning approach.Materials and methodsWe retrospectively studied 63 patients with early bone metastasis from July 2020 to March 2023. The ITK-SNAP software was used to delineate early bone metastases and normal bone tissue in SPECT images of each patient, which were then registered onto CT images to outline the volume of interest (VOI). The VOI includes 63 early bone metastasis volumes and 63 normal bone tissue volumes. 126 VOIs were randomly distributed in a 7:3 ratio between the training and testing groups, and 944 radiomics features were extracted from every VOI. We established 20 machine learning models using 5 feature selection algorithms and 4 classification methods. Evaluate the performance of the model using the area under the receiver operating characteristic curve (AUC).ResultsMost machine learning models demonstrated outstanding discriminative capacity, with AUCs higher than 0.70. Notably, the K-Nearest Neighbors (KNN) classifier exhibited significant performance improvement compared to the other four classifiers. Specifically, the model constructed utilizing eXtreme Gradient Boosting (XGBoost) feature selection method integrated with KNN classifier achieved the maximum AUC, which is 0.989 in the training set and 0.975 in the testing set.ConclusionsRadiomics features integrated with machine learning methods can identify early bone metastases that are not visible on CT images. In our analysis, KNN is considered the optimal classification method.",article,0,,,"Wang, Huili;Qiu, Jianfeng;Lu, Weizhao;Xie, Jindong;Ma, Junchi",,,,,,,Skeletal Radiology,343,,SCOPUS,"Wang Huili, 2024, Skeletal Radiology",,"Wang Huili, 2024, Skeletal Radiology"
+2024,10,https://app.dimensions.ai/details/publication/pub.1174102127,Automated machine learning for fabric quality prediction: a comparative analysis,e2188,,,PeerJ Computer Science,10.7717/peerj-cs.2188,2024-07-23,"Metin, Ahmet;Bilgin, Turgay Tugay","The enhancement of fabric quality prediction in the textile manufacturing sector is achieved by utilizing information derived from sensors within the Internet of Things (IoT) and Enterprise Resource Planning (ERP) systems linked to sensors embedded in textile machinery. The integration of Industry 4.0 concepts is instrumental in harnessing IoT sensor data, which, in turn, leads to improvements in productivity and reduced lead times in textile manufacturing processes. This study addresses the issue of imbalanced data pertaining to fabric quality within the textile manufacturing industry. It encompasses an evaluation of seven open-source automated machine learning (AutoML) technologies, namely FLAML (Fast Lightweight AutoML), AutoViML (Automatically Build Variant Interpretable ML models), EvalML (Evaluation Machine Learning), AutoGluon, H2OAutoML, PyCaret, and TPOT (Tree-based Pipeline Optimization Tool). The most suitable solutions are chosen for certain circumstances by employing an innovative approach that finds a compromise among computational efficiency and forecast accuracy. The results reveal that EvalML emerges as the top-performing AutoML model for a predetermined objective function, particularly excelling in terms of mean absolute error (MAE). On the other hand, even with longer inference periods, AutoGluon performs better than other methods in measures like mean absolute percentage error (MAPE), root mean squared error (RMSE), and r-squared. Additionally, the study explores the feature importance rankings provided by each AutoML model, shedding light on the attributes that significantly influence predictive outcomes. Notably, sin/cos encoding is found to be particularly effective in characterizing categorical variables with a large number of unique values. This study includes useful information about the application of AutoML in the textile industry and provides a roadmap for employing Industry 4.0 technologies to enhance fabric quality prediction. The research highlights the importance of striking a balance between predictive accuracy and computational efficiency, emphasizes the significance of feature importance for model interpretability, and lays the groundwork for future investigations in this field.",article,0,,,"Metin, Ahmet;Bilgin, Turgay Tugay",,,,,,,PeerJ Computer Science,,,SCOPUS,"Metin Ahmet, 2024, PeerJ Computer Science",,"Metin Ahmet, 2024, PeerJ Computer Science"
+2024,4,https://app.dimensions.ai/details/publication/pub.1174128723,Moving Beyond Medical Statistics: A Systematic Review on Missing Data Handling in Electronic Health Records,0176,,,Health Data Science,10.34133/hds.0176,2024-01,"Ren, Wenhui;Liu, Zheng;Wu, Yanqiu;Zhang, Zhilong;Hong, Shenda;Liu, Huixin;Group, on behalf of the Missing Data in Electronic health Records","Background: Missing data in electronic health records (EHRs) presents significant challenges in medical studies. Many methods have been proposed, but uncertainty exists regarding the current state of missing data addressing methods applied for EHR and which strategy performs better within specific contexts. Methods: All studies referencing EHR and missing data methods published from their inception until 2024 March 30 were searched via the MEDLINE, EMBASE, and Digital Bibliography and Library Project databases. The characteristics of the included studies were extracted. We also compared the performance of various methods under different missingness scenarios. Results: After screening, 46 studies published between 2010 and 2024 were included. Three missingness mechanisms were simulated when evaluating the missing data methods: missing completely at random (29/46), missing at random (20/46), and missing not at random (21/46). Multiple imputation by chained equations (MICE) was the most popular statistical method, whereas generative adversarial network-based methods and the k nearest neighbor (KNN) classification were the common deep-learning-based or traditional machine-learning-based methods, respectively. Among the 26 articles comparing the performance among medical statistical and machine learning approaches, traditional machine learning or deep learning methods generally outperformed statistical methods. Med.KNN and context-aware time-series imputation performed better for longitudinal datasets, whereas probabilistic principal component analysis and MICE-based methods were optimal for cross-sectional datasets. Conclusions: Machine learning methods show significant promise for addressing missing data in EHRs. However, no single approach provides a universally generalizable solution. Standardized benchmarking analyses are essential to evaluate these methods across different missingness scenarios.",article,0,,,"Ren, Wenhui;Liu, Zheng;Wu, Yanqiu;Zhang, Zhilong;Hong, Shenda;Liu, Huixin;Group, on behalf of the Missing Data in Electronic health Records",,,,,,,Health Data Science,,,SCOPUS,"Ren Wenhui, 2024, Health Data Science",,"Ren Wenhui, 2024, Health Data Science"
+2024,49,https://app.dimensions.ai/details/publication/pub.1174200576,Bibliometric Analysis of Machine Learning Applications in Ischemia Research,102754,10,,Current Problems in Cardiology,10.1016/j.cpcardiol.2024.102754,2024-07-28,"Abdelwahab, Siddig Ibrahim;Taha, Manal Mohamed Elhassan;Alfaifi, Hassan Ahmad;Farasani, Abdullah;Hassan, Waseem","OBJECTIVE: The objective of this study is to conduct a comprehensive bibliometric analysis to elucidate the landscape of machine learning applications in ischemia research.
+METHODS: The analysis can be divided in three sections: part 1 scrutinizes articles and reviews with ""ischemia"" in their titles, while part 2 further narrows the focus to publications containing both ""ischemia"" and ""machine learning"" in their titles. Additionally, part 3 delves into the examination of the top 50 most cited papers, exploring their thematic focus and co-word dynamics.
+RESULTS: The findings reveal a significant increase in publications over the years, with notable trends identified through detailed analysis. The growth in publication counts over time, the leading contributors, institutions, geographical distribution of research output and journals are numerically presented for part 1 and part 2. For the top 50 most cited papers the dynamics of co-words, which offer a nuanced understanding of thematic trends and emerging concepts, are presented. Based on the number of citations the top 10 authors were selected, and later for each, total number of publications, h-index, g-index and m-index are provided. Additionally, figures depicting the co-authorship network among authors, departments, and countries involved in the top 50 cited papers may enrich our comprehension of collaborative networks in ischemia research.
+CONCLUSION: This comprehensive bibliometric analysis provides valuable insights into the evolving landscape of machine learning applications in ischemia research.",article,0,,,"Abdelwahab, Siddig Ibrahim;Taha, Manal Mohamed Elhassan;Alfaifi, Hassan Ahmad;Farasani, Abdullah;Hassan, Waseem",,,,,,,Current Problems in Cardiology,,,SCOPUS,"Abdelwahab Siddig Ibrahim, 2024, Current Problems in Cardiology",,"Abdelwahab Siddig Ibrahim, 2024, Current Problems in Cardiology"
+2024,110,https://app.dimensions.ai/details/publication/pub.1174252381,Modelling the rapid detection of Carbapenemase-resistant Klebsiella pneumoniae based on machine learning and matrix-assisted laser desorption/ionization time-of-flight mass spectrometry,116467,2,,Diagnostic Microbiology and Infectious Disease,10.1016/j.diagmicrobio.2024.116467,2024-07-30,"Xu, Xiaobo","In this study, 80 carbapenem-resistant Klebsiella pneumoniae (CR-KP) and 160 carbapenem-susceptible Klebsiella pneumoniae (CS-KP) strains detected in the clinic were selected and their matrix-assisted laser desorption/ionization time-of-flight mass spectrometry (MALDI-TOF MS) peaks were collected. K-means clustering was performed on the MS peak data to obtain the best ""feature peaks"", and four different machine learning models were built to compare the area under the ROC curve, specificity, sensitivity, test set score, and ten-fold cross-validation score of the models. By adjusting the model parameters, the test efficacy of the model is increased on the basis of reducing model overfitting. The area under the ROC curve of the Random Forest, Support Vector Machine, Logistic Regression, and Xgboost models used in this study are 0.99, 0.97, 0.96, and 0.97, respectively; the model scores on the test set are 0.94, 0.91, 0.90, and 0.93, respectively; and the results of the ten-fold cross-validation are 0.84, 0.81, 0.81, and 0.85, respectively. Based on the machine learning algorithms and MALDI-TOF MS assay data can realize rapid detection of CR-KP, shorten the in-laboratory reporting time, and provide fast and reliable identification results of CR-KP and CS-KP.",article,0,,,"Xu, Xiaobo",,,,,,,Diagnostic Microbiology and Infectious Disease,,,SCOPUS,"Xu Xiaobo, 2024, Diagnostic Microbiology and Infectious Disease",,"Xu Xiaobo, 2024, Diagnostic Microbiology and Infectious Disease"
+2024,20,https://app.dimensions.ai/details/publication/pub.1174312608,Machine Learning Techniques to Predict Mental Health Diagnoses: A Systematic Literature Review,e17450179315688,1,,Clinical Practice and Epidemiology in Mental Health : CP & EMH,10.2174/0117450179315688240607052117,2024-07-26,"Madububambachu, Ujunwa;Ukpebor, Augustine;Ihezue, Urenna","Introduction: This study aims to investigate the potential of machine learning in predicting mental health conditions among college students by analyzing existing literature on mental health diagnoses using various machine learning algorithms.
+Methods: The research employed a systematic literature review methodology to investigate the application of deep learning techniques in predicting mental health diagnoses among students from 2011 to 2024. The search strategy involved key terms, such as ""deep learning,"" ""mental health,"" and related terms, conducted on reputable repositories like IEEE, Xplore, ScienceDirect, SpringerLink, PLOS, and Elsevier. Papers published between January, 2011, and May, 2024, specifically focusing on deep learning models for mental health diagnoses, were considered. The selection process adhered to PRISMA guidelines and resulted in 30 relevant studies.
+Results: The study highlights Convolutional Neural Networks (CNN), Random Forest (RF), Support Vector Machine (SVM), Deep Neural Networks, and Extreme Learning Machine (ELM) as prominent models for predicting mental health conditions. Among these, CNN demonstrated exceptional accuracy compared to other models in diagnosing bipolar disorder. However, challenges persist, including the need for more extensive and diverse datasets, consideration of heterogeneity in mental health condition, and inclusion of longitudinal data to capture temporal dynamics.
+Conclusion: This study offers valuable insights into the potential and challenges of machine learning in predicting mental health conditions among college students. While deep learning models like CNN show promise, addressing data limitations and incorporating temporal dynamics are crucial for further advancements.",article,0,,,"Madububambachu, Ujunwa;Ukpebor, Augustine;Ihezue, Urenna",,,,,,,Clinical Practice and Epidemiology in Mental Health : CP & EMH,,,SCOPUS,"Madububambachu Ujunwa, 2024, Clinical Practice and Epidemiology in Mental Health : CP & EMH",,"Madububambachu Ujunwa, 2024, Clinical Practice and Epidemiology in Mental Health : CP & EMH"
+2024,10,https://app.dimensions.ai/details/publication/pub.1174518764,Big data analytics and artificial intelligence aspects for privacy and security concerns for demand response modelling in smart grid: A futuristic approach,e35683,15,,Heliyon,10.1016/j.heliyon.2024.e35683,2024-08-05,"Reka, S. Sofana;Dragicevic, Tomislav;Venugopal, Prakash;Ravi, V.;Rajagopal, Manoj Kumar","Next generation electrical grid considered as Smart Grid has completely embarked a journey in the present electricity era. This creates a dominant need of machine learning approaches for security aspects at the larger scale for the electrical grid. The need of connectivity and complete communication in the system uses a large amount of data where the involvement of machine learning models with proper frameworks are required. This massive amount of data can be handled by various process of machine learning models by selecting appropriate set of consumers to respond in accordance with demand response modelling, learning the different attributes of the consumers, dynamic pricing schemes, various load forecasting and also data acquisition process with more cost effectiveness. In connected to this process, considering complex smart grid security and privacy based methods becomes a major aspect and there can be potential cyber threats for the consumers and also utility data. The security concerns related to machine learning model exhibits a key factor based on different machine learning algorithms used and needed for the energy application at a future perspective. This work exhibits as a detailed analysis with machine learning models which are considered as cyber physical system model with smart grid. This work also gives a clear understanding towards the potential advantages, limitations of the algorithms in a security aspect and outlines future direction in this very important area and fast-growing approach.",article,0,,,"Reka, S. Sofana;Dragicevic, Tomislav;Venugopal, Prakash;Ravi, V.;Rajagopal, Manoj Kumar",,,,,,,Heliyon,,,SCOPUS,"Reka S. Sofana, 2024, Heliyon",,"Reka S. Sofana, 2024, Heliyon"
+2024,262,https://app.dimensions.ai/details/publication/pub.1174548505,Do machine learning methods improve prediction of ambient air pollutants with high spatial contrast? A systematic review,119751,Pt 2,,Environmental Research,10.1016/j.envres.2024.119751,2024-08-06,"Vachon, Julien;Kerckhoffs, Jules;Buteau, Stéphane;Smargiassi, Audrey","BACKGROUND & OBJECTIVE: The use of machine learning for air pollution modelling is rapidly increasing. We conducted a systematic review of studies comparing statistical and machine learning models predicting the spatiotemporal variation of ambient nitrogen dioxide (NO2), ultrafine particles (UFPs) and black carbon (BC) to determine whether and in which scenarios machine learning generates more accurate predictions.
+METHODS: Web of Science and Scopus were searched up to June 13, 2024. All records were screened by two independent reviewers. Differences in the coefficient of determination (R2) and Root Mean Square Error (RMSE) between best statistical and machine learning methods were compared across categories of methodological elements.
+RESULTS: A total of 38 studies with 46 model comparisons (30 for NO2, 8 for UFPs and 8 for BC) were included. Linear non-regularized methods and Random Forest were most frequently used. Machine learning outperformed statistical models in 34 comparisons. Mean differences (95% confidence intervals) in R2 and RMSE between best machine learning and statistical models were 0.12 (0.08, 0.17) and 20% (11%, 29%) respectively. Tree-based methods performed best in 12 of 17 multi-model comparisons. Nonlinear or regularization regression methods were used in only 12 comparisons and provided similar performance to machine learning methods.
+CONCLUSION: This systematic review suggests that machine learning methods, especially tree-based methods, may be superior to linear non-regularized methods for predicting ambient concentrations of NO2, UFPs and BC. Additional comparison studies using nonlinear, regularized and a wider array of machine learning methods are needed to confirm their relative performance. Future air pollution studies would also benefit from more explicit and standardized reporting of methodologies and results.",article,0,,,"Vachon, Julien;Kerckhoffs, Jules;Buteau, Stéphane;Smargiassi, Audrey",,,,,,,Environmental Research,,,SCOPUS,"Vachon Julien, 2024, Environmental Research",,"Vachon Julien, 2024, Environmental Research"
+2024,30,https://app.dimensions.ai/details/publication/pub.1174590007,Machine learning model for osteoporosis diagnosis based on bone turnover markers,14604582241270778,3,,Health Informatics Journal,10.1177/14604582241270778,2024-07,"Baik, Seung Min;Kwon, Hi Jeong;Kim, Yeongsic;Lee, Jehoon;Park, Young Hoon;Park, Dong Jin","To assess the diagnostic utility of bone turnover markers (BTMs) and demographic variables for identifying individuals with osteoporosis. A cross-sectional study involving 280 participants was conducted. Serum BTM values were obtained from 88 patients with osteoporosis and 192 controls without osteoporosis. Six machine learning models, including extreme gradient boosting (XGBoost), light gradient boosting machine (LGBM), CatBoost, random forest, support vector machine, and k-nearest neighbors, were employed to evaluate osteoporosis diagnosis. The performance measures included the area under the receiver operating characteristic curve (AUROC), F1-score, and accuracy. After AUROC optimization, LGBM exhibited the highest AUROC of 0.706. Post F1-score optimization, LGBM's F1-score was improved from 0.50 to 0.65. Combining the top three optimized models (LGBM, XGBoost, and CatBoost) resulted in an AUROC of 0.706, an F1-score of 0.65, and an accuracy of 0.73. BTMs, along with age and sex, were found to contribute significantly to osteoporosis diagnosis. This study demonstrates the potential of machine learning models utilizing BTMs and demographic variables for diagnosing preexisting osteoporosis. The findings highlight the clinical relevance of accessible clinical data in osteoporosis assessment, providing a promising tool for early diagnosis and management.",article,0,,,"Baik, Seung Min;Kwon, Hi Jeong;Kim, Yeongsic;Lee, Jehoon;Park, Young Hoon;Park, Dong Jin",,,,,,,Health Informatics Journal,,,SCOPUS,"Baik Seung Min, 2024, Health Informatics Journal",,"Baik Seung Min, 2024, Health Informatics Journal"
+2024,10,https://app.dimensions.ai/details/publication/pub.1174606097,"Forecasting CO2 emissions of fuel vehicles for an ecological world using ensemble learning, machine learning, and deep learning models",e2234,,,PeerJ Computer Science,10.7717/peerj-cs.2234,2024-08-07,"Gurcan, Fatih","Background: The continuous increase in carbon dioxide (CO2) emissions from fuel vehicles generates a greenhouse effect in the atmosphere, which has a negative impact on global warming and climate change and raises serious concerns about environmental sustainability. Therefore, research on estimating and reducing vehicle CO2 emissions is crucial in promoting environmental sustainability and reducing greenhouse gas emissions in the atmosphere.
+Methods: This study performed a comparative regression analysis using 18 different regression algorithms based on machine learning, ensemble learning, and deep learning paradigms to evaluate and predict CO2 emissions from fuel vehicles. The performance of each algorithm was evaluated using metrics including R2, Adjusted R2, root mean square error (RMSE), and runtime.
+Results: The findings revealed that ensemble learning methods have higher prediction accuracy and lower error rates. Ensemble learning algorithms that included Extreme Gradient Boosting (XGB), Random Forest, and Light Gradient-Boosting Machine (LGBM) demonstrated high R2 and low RMSE values. As a result, these ensemble learning-based algorithms were discovered to be the most effective methods of predicting CO2 emissions. Although deep learning models with complex structures, such as the convolutional neural network (CNN), deep neural network (DNN) and gated recurrent unit (GRU), achieved high R2 values, it was discovered that they take longer to train and require more computational resources. The methodology and findings of our research provide a number of important implications for the different stakeholders striving for environmental sustainability and an ecological world.",article,0,,,"Gurcan, Fatih",,,,,,,PeerJ Computer Science,,,SCOPUS,"Gurcan Fatih, 2024, PeerJ Computer Science",,"Gurcan Fatih, 2024, PeerJ Computer Science"
+2024,15,https://app.dimensions.ai/details/publication/pub.1174681037,Harnessing the power of machine learning for crop improvement and sustainable production,1417912,,,Frontiers in Plant Science,10.3389/fpls.2024.1417912,2024-08-12,"Khatibi, Seyed Mahdi Hosseiniyan;Ali, Jauhar","Crop improvement and production domains encounter large amounts of expanding data with multi-layer complexity that forces researchers to use machine-learning approaches to establish predictive and informative models to understand the sophisticated mechanisms underlying these processes. All machine-learning approaches aim to fit models to target data; nevertheless, it should be noted that a wide range of specialized methods might initially appear confusing. The principal objective of this study is to offer researchers an explicit introduction to some of the essential machine-learning approaches and their applications, comprising the most modern and utilized methods that have gained widespread adoption in crop improvement or similar domains. This article explicitly explains how different machine-learning methods could be applied for given agricultural data, highlights newly emerging techniques for machine-learning users, and lays out technical strategies for agri/crop research practitioners and researchers.",article,0,,,"Khatibi, Seyed Mahdi Hosseiniyan;Ali, Jauhar",,,,,,,Frontiers in Plant Science,,,SCOPUS,"Khatibi Seyed Mahdi Hosseiniyan, 2024, Frontiers in Plant Science",,"Khatibi Seyed Mahdi Hosseiniyan, 2024, Frontiers in Plant Science"
+2024,38,https://app.dimensions.ai/details/publication/pub.1174683721,From bytes to nephrons: AI’s journey in diabetic kidney disease,25,1,,Journal of Nephrology,10.1007/s40620-024-02050-2,2024-08-12,"Basuli, Debargha;Kavcar, Akil;Roy, Sasmit","Diabetic kidney disease (DKD) is a significant complication of type 2 diabetes, posing a global health risk. Detecting and predicting diabetic kidney disease at an early stage is crucial for timely interventions and improved patient outcomes. Artificial intelligence (AI) has demonstrated promise in healthcare, and several tools have recently been developed that utilize Machine Learning with clinical data to detect and predict DKD. This review aims to explore the current landscape of AI and machine learning applications in DKD, specifically examining existing literature on risk scores and machine learning approaches for predicting DKD development. A literature search was conducted using Medline (PubMed), Google Scholar, and Scopus databases until July 2023. Relevant keywords were used to extract studies that described the role of AI in DKD. The review revealed that AI and machine learning have been successfully used to predict DKD progression, outperforming traditional risk score models. Artificial intelligence-driven research for DKD extends beyond prediction models, offering opportunities for integrating genetic and epigenetic data, advancing understanding of the disease’s molecular basis, personalizing treatment strategies, and fostering the development of novel drugs. However, challenges remain, including the requirement for large datasets and the lack of standardization in AI-driven tools for DKD. Artificial intelligence and machine learning have the potential to revolutionize the management and care of DKD patients, surpassing the limitations of traditional methods reliant on existing knowledge. Future research should address the challenges associated with AI and machine learning in DKD and focus on developing AI-driven tools for clinical practice.Graphical abstract",article,0,,,"Basuli, Debargha;Kavcar, Akil;Roy, Sasmit",,,,,,,Journal of Nephrology,35,,SCOPUS,"Basuli Debargha, 2024, Journal of Nephrology",,"Basuli Debargha, 2024, Journal of Nephrology"
+2024,30,https://app.dimensions.ai/details/publication/pub.1174694273,Mapping Biomaterial Complexity by Machine Learning,662,19-20,,Tissue Engineering Part A,10.1089/ten.tea.2024.0067,2024-10-11,"Ahmed, Eman;Mulay, Prajakatta;Ramirez, Cesar;Tirado-Mansilla, Gabriela;Cheong, Eugene;Gormley, Adam J.","Biomaterials often have subtle properties that ultimately drive their bespoke performance. Given this nuanced structure-function behavior, the standard scientific approach of one experiment at a time or design of experiment methods is largely inefficient for the discovery of complex biomaterials. More recently, high-throughput experimentation coupled with machine learning methods has matured beyond expert users allowing scientists and engineers from diverse backgrounds to access these powerful data science tools. As a result, we now have the opportunity to strategically utilize all available data from high-throughput experiments to train efficacious models and map the structure-function behavior of biomaterials for their discovery. Herein, we discuss this necessary shift to data-driven determination of structure-function properties of biomaterials as we highlight how machine learning is leveraged in identifying physicochemical cues for biomaterials in tissue engineering, gene delivery, drug delivery, protein stabilization, and antifouling materials. We also discuss data-mining approaches that are coupled with machine learning to map biomaterial functions that reduce the load on experimental approaches for faster biomaterial discovery. Ultimately, harnessing the prowess of machine learning will lead to accelerated discovery and development of optimal biomaterial designs.",article,0,,,"Ahmed, Eman;Mulay, Prajakatta;Ramirez, Cesar;Tirado-Mansilla, Gabriela;Cheong, Eugene;Gormley, Adam J.",,,,,,,Tissue Engineering Part A,680,,SCOPUS,"Ahmed Eman, 2024, Tissue Engineering Part A",,"Ahmed Eman, 2024, Tissue Engineering Part A"
+2024,64,https://app.dimensions.ai/details/publication/pub.1174701861,NJmat: Data-Driven Machine Learning Interface to Accelerate Material Design,6477,16,,Journal of Chemical Information and Modeling,10.1021/acs.jcim.4c00493,2024-08-12,"Huang, Yiru;Zhang, Lei;Deng, Hangyuan;Mao, Junfei","Machine learning techniques have significantly transformed the way materials scientists conduct research. However, the widespread deployment of machine learning software in daily experimental and simulation research for materials and chemical design has been limited. This is partly due to the substantial time investment and learning curve associated with mastering the necessary codes and computational environments. In this paper, we introduce a user-friendly, data-driven machine learning interface featuring multiple ""button-clicking"" functionalities to streamline the design of materials and chemicals. This interface automates the processes of transforming materials and molecules, performing feature selection, constructing machine learning models, making virtual predictions, and visualizing results. Such automation accelerates materials prediction and analysis in the inverse design process, aligning with the time criteria outlined by the Materials Genome Initiative. With simple button clicks, researchers can build machine learning models and predict new materials once they have gathered experimental or simulation data. Beyond the ease of use, NJmat offers three additional features for data-driven materials design: (1) automatic feature generation for both inorganic materials (from chemical formulas) and organic molecules (from SMILES), (2) automatic generation of Shapley plots, and (3) automatic construction of ""white-box"" genetic models and decision trees to provide scientific insights. We present case studies on surface design for halide perovskite materials encompassing both inorganic and organic species. These case studies illustrate general machine learning models for virtual predictions as well as the automatic featurization and Shapley/genetic model construction capabilities. We anticipate that this software tool will expedite materials and molecular design within the scope of the Materials Genome Initiative, particularly benefiting experimentalists.",article,0,,,"Huang, Yiru;Zhang, Lei;Deng, Hangyuan;Mao, Junfei",,,,,,,Journal of Chemical Information and Modeling,6491,,SCOPUS,"Huang Yiru, 2024, Journal of Chemical Information and Modeling",,"Huang Yiru, 2024, Journal of Chemical Information and Modeling"
+2024,12,https://app.dimensions.ai/details/publication/pub.1174902928,Classification of Latilactobacillus sakei subspecies based on MALDI-TOF MS protein profiles using machine learning models,e03668,10,,Microbiology Spectrum,10.1128/spectrum.03668-23,2024-08-20,"Kim, Eiseul;Yang, Seung-Min;Lee, So-Yun;Jung, Dae-Hyun;Kim, Hae-Yeong","Latilactobacillus sakei is an important bacterial species used as a starter culture for fermented foods; however, two subspecies within this species exhibit different properties in the foods. Matrix-assisted laser desorption/ionization-time of flight mass spectrometer (MALDI-TOF MS) is the gold standard for microbial fingerprinting. However, the resolution power is down to the species level. This study was to combine MALDI-TOF mass spectra and machine learning to develop a new method to identify two L. sakei subspecies (L. sakei subsp. sakei and L. sakei subsp. carnosus) and non-L. sakei species. Totally, 227 strains were collected, with 908 spectra obtained via on- and off-plate protein extraction. Only 68.7% of strains were correctly identified at the subspecies level in the Biotyper database; however, a high level of performance was observed from the machine learning models. Partial least squares-discriminant analysis (PLS-DA), principal component analysis-K-nearest neighbor (PCA-KNN), and support vector machine (SVM) demonstrated 0.823, 0.914, and 0.903 accuracies, respectively, whereas the random forest (RF) achieved an accuracy of 0.954, with an area under the receiver operating characteristic (AUROC) curve of 0.99, outperforming the other algorithms in distinguishing the subspecies. The machine learning proved to be a promising technique for the rapid and high-resolution classification of L. sakei subspecies using MALDI-TOF MS.
+IMPORTANCE: Latilactobacillus sakei plays a significant role in the realm of food bacteria. One particular subspecies of L. sakei is employed as a protective agent during food fermentation, whereas another strain is responsible for food spoilage. Hence, it is crucial to precisely differentiate between the two subspecies of L. sakei. In this study, machine learning models based on protein mass peaks were developed for the first time to distinguish L. sakei subspecies. Furthermore, the efficacy of three commonly used machine learning algorithms for microbial classification was evaluated. Our results provide the foundation for future research on developing machine learning models for the classification of microbial species or subspecies. In addition, the developed model can be used in the food industry to monitor L. sakei subspecies in fermented foods in a time- and cost-effective method for food quality and safety.",article,0,,,"Kim, Eiseul;Yang, Seung-Min;Lee, So-Yun;Jung, Dae-Hyun;Kim, Hae-Yeong",,,,,,,Microbiology Spectrum,23,,SCOPUS,"Kim Eiseul, 2024, Microbiology Spectrum",,"Kim Eiseul, 2024, Microbiology Spectrum"
+2024,12,https://app.dimensions.ai/details/publication/pub.1174904716,Artificial Intelligence Models Are Limited in Predicting Clinical Outcomes Following Hip Arthroscopy,e24.00087,8,,JBJS Reviews,10.2106/jbjs.rvw.24.00087,2024-08-22,"Mehta, Apoorva;El-Najjar, Dany;Howell, Harrison;Gupta, Puneet;Arciero, Emily;Marigi, Erick M.;Parisien, Robert L.;Trofa, David P.","BACKGROUND: Hip arthroscopy has seen a significant surge in utilization, but complications remain, and optimal functional outcomes are not guaranteed. Artificial intelligence (AI) has emerged as an effective supportive decision-making tool for surgeons. The purpose of this systematic review was to characterize the outcomes, performance, and validity (generalizability) of AI-based prediction models for hip arthroscopy in current literature.
+METHODS: Two reviewers independently completed structured searches using PubMed/MEDLINE and Embase databases on August 10, 2022. The search query used the terms as follows: (artificial intelligence OR machine learning OR deep learning) AND (hip arthroscopy). Studies that investigated AI-based risk prediction models in hip arthroscopy were included. The primary outcomes of interest were the variable(s) predicted by the models, best model performance achieved (primarily based on area under the curve, but also accuracy, etc), and whether the model(s) had been externally validated (generalizable).
+RESULTS: Seventy-seven studies were identified from the primary search. Thirteen studies were included in the final analysis. Six studies (n = 6,568) applied AI for predicting the achievement of minimal clinically important difference for various patient-reported outcome measures such as the visual analog scale and the International Hip Outcome Tool 12-Item Questionnaire, with area under a receiver-operating characteristic curve (AUC) values ranging from 0.572 to 0.94. Three studies used AI for predicting repeat hip surgery with AUC values between 0.67 and 0.848. Four studies focused on predicting other risks, such as prolonged postoperative opioid use, with AUC values ranging from 0.71 to 0.76. None of the 13 studies assessed the generalizability of their models through external validation.
+CONCLUSION: AI is being investigated for predicting clinical outcomes after hip arthroscopy. However, the performance of AI models varies widely, with AUC values ranging from 0.572 to 0.94. Critically, none of the models have undergone external validation, limiting their clinical applicability. Further research is needed to improve model performance and ensure generalizability before these tools can be reliably integrated into patient care.
+LEVEL OF EVIDENCE: Level IV. See Instructions for Authors for a complete description of levels of evidence.",article,0,,,"Mehta, Apoorva;El-Najjar, Dany;Howell, Harrison;Gupta, Puneet;Arciero, Emily;Marigi, Erick M.;Parisien, Robert L.;Trofa, David P.",,,,,,,JBJS Reviews,,,SCOPUS,"Mehta Apoorva, 2024, JBJS Reviews",,"Mehta Apoorva, 2024, JBJS Reviews"
+2024,10,https://app.dimensions.ai/details/publication/pub.1175026704,Emerging research trends in artificial intelligence for cancer diagnostic systems: A comprehensive review,e36743,17,,Heliyon,10.1016/j.heliyon.2024.e36743,2024-08-23,"Abbas, Sagheer;Asif, Muhammad;Rehman, Abdur;Alharbi, Meshal;Khan, Muhammad Adnan;Elmitwally, Nouh","This review article offers a comprehensive analysis of current developments in the application of machine learning for cancer diagnostic systems. The effectiveness of machine learning approaches has become evident in improving the accuracy and speed of cancer detection, addressing the complexities of large and intricate medical datasets. This review aims to evaluate modern machine learning techniques employed in cancer diagnostics, covering various algorithms, including supervised and unsupervised learning, as well as deep learning and federated learning methodologies. Data acquisition and preprocessing methods for different types of data, such as imaging, genomics, and clinical records, are discussed. The paper also examines feature extraction and selection techniques specific to cancer diagnosis. Model training, evaluation metrics, and performance comparison methods are explored. Additionally, the review provides insights into the applications of machine learning in various cancer types and discusses challenges related to dataset limitations, model interpretability, multi-omics integration, and ethical considerations. The emerging field of explainable artificial intelligence (XAI) in cancer diagnosis is highlighted, emphasizing specific XAI techniques proposed to improve cancer diagnostics. These techniques include interactive visualization of model decisions and feature importance analysis tailored for enhanced clinical interpretation, aiming to enhance both diagnostic accuracy and transparency in medical decision-making. The paper concludes by outlining future directions, including personalized medicine, federated learning, deep learning advancements, and ethical considerations. This review aims to guide researchers, clinicians, and policymakers in the development of efficient and interpretable machine learning-based cancer diagnostic systems.",article,0,,,"Abbas, Sagheer;Asif, Muhammad;Rehman, Abdur;Alharbi, Meshal;Khan, Muhammad Adnan;Elmitwally, Nouh",,,,,,,Heliyon,,,SCOPUS,"Abbas Sagheer, 2024, Heliyon",,"Abbas Sagheer, 2024, Heliyon"
+2024,11,https://app.dimensions.ai/details/publication/pub.1175082195,Assessing the precision of machine learning for diagnosing pulmonary arterial hypertension: a systematic review and meta-analysis of diagnostic accuracy studies,1422327,,,Frontiers in Cardiovascular Medicine,10.3389/fcvm.2024.1422327,2024-08-27,"Fadilah, Akbar;Putri, Valerinna Yogibuana Swastika;Del Rosario Puling, Imke Maria;Willyanto, Sebastian Emmanuel","Introduction: Pulmonary arterial hypertension (PAH) is a severe cardiovascular condition characterized by pulmonary vascular remodeling, increased resistance to blood flow, and eventual right heart failure. Right heart catheterization (RHC) is the gold standard diagnostic technique, but due to its invasiveness, it poses risks such as vessel and valve injury. In recent years, machine learning (ML) technologies have offered non-invasive alternatives combined with ML for improving the diagnosis of PAH.
+Objectives: The study aimed to evaluate the diagnostic performance of various methods, such as electrocardiography (ECG), echocardiography, blood biomarkers, microRNA, chest x-ray, clinical codes, computed tomography (CT) scan, and magnetic resonance imaging (MRI), combined with ML in diagnosing PAH.
+Methods: The outcomes of interest included sensitivity, specificity, area under the curve (AUC), positive likelihood ratio (PLR), negative likelihood ratio (NLR), and diagnostic odds ratio (DOR). This study employed the Quality Assessment of Diagnostic Accuracy Studies-2 (QUADAS-2) tool for quality appraisal and STATA V.12.0 for the meta-analysis.
+Results: A comprehensive search across six databases resulted in 26 articles for examination. Twelve articles were categorized as low-risk, nine as moderate-risk, and five as high-risk. The overall diagnostic performance analysis demonstrated significant findings, with sensitivity at 81% (95% CI = 0.76-0.85, p < 0.001), specificity at 84% (95% CI = 0.77-0.88, p < 0.001), and an AUC of 89% (95% CI = 0.85-0.91). In the subgroup analysis, echocardiography displayed outstanding results, with a sensitivity value of 83% (95% CI = 0.72-0.91), specificity value of 93% (95% CI = 0.89-0.96), PLR value of 12.4 (95% CI = 6.8-22.9), and DOR value of 70 (95% CI = 23-231). ECG demonstrated excellent accuracy performance, with a sensitivity of 82% (95% CI = 0.80-0.84) and a specificity of 82% (95% CI = 0.78-0.84). Moreover, blood biomarkers exhibited the highest NLR value of 0.50 (95% CI = 0.42-0.59).
+Conclusion: The implementation of echocardiography and ECG with ML for diagnosing PAH presents a promising alternative to RHC. This approach shows potential, as it achieves excellent diagnostic parameters, offering hope for more accessible and less invasive diagnostic methods.
+Systematic Review Registration: PROSPERO (CRD42024496569).",article,0,,,"Fadilah, Akbar;Putri, Valerinna Yogibuana Swastika;Del Rosario Puling, Imke Maria;Willyanto, Sebastian Emmanuel",,,,,,,Frontiers in Cardiovascular Medicine,,,SCOPUS,"Fadilah Akbar, 2024, Frontiers in Cardiovascular Medicine",,"Fadilah Akbar, 2024, Frontiers in Cardiovascular Medicine"
+2024,19,https://app.dimensions.ai/details/publication/pub.1175116643,Comparison of machine learning methods for genomic prediction of selected Arabidopsis thaliana traits,e0308962,8,,PLOS ONE,10.1371/journal.pone.0308962,2024-08-28,"Kelly, Ciaran Michael;McLaughlin, Russell Lewis","We present a comparison of machine learning methods for the prediction of four quantitative traits in Arabidopsis thaliana. High prediction accuracies were achieved on individuals grown under standardized laboratory conditions from the 1001 Arabidopsis Genomes Project. An existing body of evidence suggests that linear models may be impeded by their inability to make use of non-additive effects to explain phenotypic variation at the population level. The results presented here use a nested cross-validation approach to confirm that some machine learning methods have the ability to statistically outperform linear prediction models, with the optimal model dependent on availability of training data and genetic architecture of the trait in question. Linear models were competitive in their performance as per previous work, though the neural network class of predictors was observed to be the most accurate and robust for traits with high heritability. The extent to which non-linear models exploit interaction effects will require further investigation of the causal pathways that lay behind their predictions. Future work utilizing more traits and larger sample sizes, combined with an improved understanding of their respective genetic architectures, may lead to improvements in prediction accuracy.",article,0,,,"Kelly, Ciaran Michael;McLaughlin, Russell Lewis",,,,,,,PLOS ONE,,,SCOPUS,"Kelly Ciaran Michael, 2024, PLOS ONE",,"Kelly Ciaran Michael, 2024, PLOS ONE"
+2024,172,https://app.dimensions.ai/details/publication/pub.1175124306,Applications of Machine Learning in Meniere's Disease Assessment Based on Pure‐Tone Audiometry,233,1,,Otolaryngology–Head and Neck Surgery,10.1002/ohn.956,2024-08-28,"Liu, Xu;Guo, Ping;Wang, Dan;Hsieh, Yue‐Lin;Shi, Suming;Dai, Zhijian;Wang, Deping;Li, Hongzhe;Wang, Wuqing","OBJECTIVE: To apply machine learning models based on air conduction thresholds of pure-tone audiometry for automatic diagnosis of Meniere's disease (MD) and prediction of endolymphatic hydrops (EH).
+STUDY DESIGN: Retrospective study.
+SETTING: Tertiary medical center.
+METHODS: Gadolinium-enhanced magnetic resonance imaging sequences and pure-tone audiometry data were collected. Subsequently, basic and multiple analytical features were engineered based on the air conduction thresholds of pure-tone audiometry. Later, 5 classical machine learning models were trained to diagnose MD using the engineered features. The models demonstrating excellent performance were also selected to predict EH. The model's effectiveness in MD diagnosis was compared with experienced otolaryngologists.
+RESULTS: First, the winning light gradient boosting (LGB) machine learning model trained by multiple features demonstrates a remarkable performance on the diagnosis of MD, achieving an accuracy rate of 87%, sensitivity of 83%, specificity of 90%, and a robust area under the receiver operating characteristic curve of 0.95, which compares favorably with experienced clinicians. Second, the LGB model, with an accuracy of 78% on EH prediction, outperformed the other 3 machine learning models. Finally, a feature importance analysis reveals a pivotal role of the specific pure-tone audiometry features that are essential for both MD diagnosis and EH prediction. Highlighted features include standard deviation and mean of the whole-frequency hearing, the peak of the audiogram, and hearing at low frequencies, notably at 250 Hz.
+CONCLUSION: An efficient machine learning model based on pure-tone audiometry features was produced to diagnose MD, which also showed the potential to predict the subtypes of EH. The innovative approach demonstrated a game-changing strategy for MD screening and promising cost-effective benefits for the health care enterprise.",article,0,,,"Liu, Xu;Guo, Ping;Wang, Dan;Hsieh, Yue‐Lin;Shi, Suming;Dai, Zhijian;Wang, Deping;Li, Hongzhe;Wang, Wuqing",,,,,,,Otolaryngology–Head and Neck Surgery,242,,SCOPUS,"Liu Xu, 2024, Otolaryngology–Head and Neck Surgery",,"Liu Xu, 2024, Otolaryngology–Head and Neck Surgery"
+2024,14,https://app.dimensions.ai/details/publication/pub.1175175212,RETRACTED ARTICLE: Unveiling the potential of machine learning approaches in predicting the emergence of stroke at its onset: a predicting framework,20053,1,,Scientific Reports,10.1038/s41598-024-70354-1,2024-08-29,"J M, Sheela Lavanya;P, Subbulakshmi","A stroke is a dangerous, life-threatening disease that mostly affects people over 65, but an unhealthy diet is also contributing to the development of strokes at younger ages. Strokes can be treated successfully if they are identified early enough, and suitable therapies are available. The purpose of this study is to develop a stroke prediction model that will improve stroke prediction effectiveness as well as accuracy. Predicting whether someone is suffering from a stroke or not can be accomplished with this proposed machine learning algorithm. In this research, various machine learning techniques are evaluated for predicting stroke on the healthcare stroke dataset. The feature selection algorithms used here are gradient boosting and random forest, and classifiers include the decision tree classifier, Support Vector Machine (SVM) classifier, logistic regression classifier, gradient boosting classifier, random forest classifier, K neighbors classifier, and Xtreme gradient boosting classifier. In this process, different machine-learning approaches are employed to test predictive methods on different data samples. As a result obtained from the different methods applied, and the comparison of different classification models, the random forest model offers an accuracy rate of 98%.",article,0,,,"J M, Sheela Lavanya;P, Subbulakshmi",,,,,,,Scientific Reports,,,SCOPUS,"J M Sheela Lavanya, 2024, Scientific Reports",,"J M Sheela Lavanya, 2024, Scientific Reports"
+2024,14,https://app.dimensions.ai/details/publication/pub.1175210745,A novel classification algorithm for customer churn prediction based on hybrid Ensemble-Fusion model,20179,1,,Scientific Reports,10.1038/s41598-024-71168-x,2024-08-30,"He, Chenggang;Ding, Chris H. Q.","Nowadays, customer churn issues are becoming more and more important, which is one of the most important metrics for evaluating the health of a business it is difficult to measure success without measuring customer churn metrics. However, it has become a challenge for the industry to predict when customers are churning or preparing to churn and to take the necessary action at the critical time before they do. At the same time, how to keep the place of deep research on the 17 machine learning algorithms in 9 major classes of machine learning classics production is the first problem we are facing. Through customer churn deep research, we mentioned the Ensemble-Fusion model based on machine learning and introduced a smart intelligent system to help reduce the actual customer churn about the production. Comparing with most popular predictive models, such as the Support vector machine algorithm, Random Forest algorithm, K-Nearest-Neighbor algorithm, Gradient boosting algorithm, Logistic regression algorithm, Bayesian algorithm, Decision tree algorithm, and Neural network algorithm are applied to check the effect on accuracy, AUC, and F1-score. By comparing with 17 algorithms in 9 categories of machine learning classics, the data prediction accuracy of the Ensemble-Fusion model reaches 95.35%, AUC score reaches 91% and F1-Score reaches 96.96%. The experimental results show that the data prediction accuracy of the Ensemble-Fusion model outperforms that of other benchmark algorithms.",article,0,,,"He, Chenggang;Ding, Chris H. Q.",,,,,,,Scientific Reports,,,SCOPUS,"He Chenggang, 2024, Scientific Reports",,"He Chenggang, 2024, Scientific Reports"
+2024,10,https://app.dimensions.ai/details/publication/pub.1175473152,Integrating machine learning for sustaining cybersecurity in digital banks,e37571,17,,Heliyon,10.1016/j.heliyon.2024.e37571,2024-09-06,"Asmar, Muath;Tuqan, Alia","Cybersecurity continues to be an important concern for financial institutions given the technology's rapid development and increasing adoption of digital services. Effective safety measures must be adopted to safeguard sensitive financial data and protect clients from potential harm due to the rise in cyber threats that target digital organizations. The aim of this study is to investigates how machine learning algorithms are integrated into cyber security measures in the context of digital banking and its benefits and drawbacks. We initially provide a general overview of digital banks and the particular security concerns that differentiate them from conventional banks. Then, we explore the value of machine learning in strengthening cybersecurity defenses. We revealed that insider threats, distributed denial of service (DDoS) assaults, ransomware, phishing attacks, and social engineering are main cyberthreats that are digital banks exposed. We identify the appropriate machine learning algorithms such as support vector machines (SVM), recurrent neural networks (RNN), hidden markov models (HMM), and local outlier factor (LOF) that are used for detection and prevention cyberthreats. In addition, we provide a model that considers ethical concerns while constructing a cybersecurity framework to address potential vulnerabilities in digital banking systems. The advantages and disadvantages of incorporating machine learning into the cybersecurity strategy of digital banks are outlined using strengths, weaknesses, opportunities, threats (SWOT) analysis. This study seeks to provide a thorough knowledge of how machine learning may strengthen cybersecurity procedures, protect digital banks, and maintain customer trust in the ecosystem of digital banking.",article,0,,,"Asmar, Muath;Tuqan, Alia",,,,,,,Heliyon,,,SCOPUS,"Asmar Muath, 2024, Heliyon",,"Asmar Muath, 2024, Heliyon"
+2024,12,https://app.dimensions.ai/details/publication/pub.1175538515,A machine learning model based on CHAT-23 for early screening of autism in Chinese children,1400110,,,Frontiers in Pediatrics,10.3389/fped.2024.1400110,2024-09-10,"Lu, Hengyang;Zhang, Heng;Zhong, Yi;Meng, Xiang-Yu;Zhang, Meng-Fei;Qiu, Ting","Introduction: Autism spectrum disorder (ASD) is a neurodevelopmental condition that significantly impacts the mental, emotional, and social development of children. Early screening for ASD typically involves the use of a series of questionnaires. With answers to these questionnaires, healthcare professionals can identify whether a child is at risk for developing ASD and refer them for further evaluation and diagnosis. CHAT-23 is an effective and widely used screening test in China for the early screening of ASD, which contains 23 different kinds of questions.
+Methods: We have collected clinical data from Wuxi, China. All the questions of CHAT-23 are regarded as different kinds of features for building machine learning models. We introduce machine learning methods into ASD screening, using the Max-Relevance and Min-Redundancy (mRMR) feature selection method to analyze the most important questions among all 23 from the collected CHAT-23 questionnaires. Seven mainstream supervised machine learning models were built and experiments were conducted.
+Results: Among the seven supervised machine learning models evaluated, the best-performing model achieved a sensitivity of 0.909 and a specificity of 0.922 when the number of features was reduced to 9. This demonstrates the model's ability to accurately identify children for ASD with high precision, even with a more concise set of features.
+Discussion: Our study focuses on the health of Chinese children, introducing machine learning methods to provide more accurate and effective early screening tests for autism. This approach not only enhances the early detection of ASD but also helps in refining the CHAT-23 questionnaire by identifying the most relevant questions for the diagnosis process.",article,0,,,"Lu, Hengyang;Zhang, Heng;Zhong, Yi;Meng, Xiang-Yu;Zhang, Meng-Fei;Qiu, Ting",,,,,,,Frontiers in Pediatrics,,,SCOPUS,"Lu Hengyang, 2024, Frontiers in Pediatrics",,"Lu Hengyang, 2024, Frontiers in Pediatrics"
+2024,29,https://app.dimensions.ai/details/publication/pub.1175606717,Cardiovascular disease diagnosis: a holistic approach using the integration of machine learning and deep learning models,455,1,,European Journal of Medical Research,10.1186/s40001-024-02044-7,2024-09-11,"Sadr, Hossein;Salari, Arsalan;Ashoobi, Mohammad Taghi;Nazari, Mojdeh","BackgroundThe incidence and mortality rates of cardiovascular disease worldwide are a major concern in the healthcare industry. Precise prediction of cardiovascular disease is essential, and the use of machine learning and deep learning can aid in decision-making and enhance predictive abilities.ObjectiveThe goal of this paper is to introduce a model for precise cardiovascular disease prediction by combining machine learning and deep learning.MethodTwo public heart disease classification datasets with 70,000 and 1190 records besides a locally collected dataset with 600 records were used in our experiments. Then, a model which makes use of both machine learning and deep learning was proposed in this paper. The proposed model employed CNN and LSTM, as the representatives of deep learning models, besides KNN and XGB, as the representatives of machine learning models. As each classifier defined the output classes, majority voting was then used as an ensemble learner to predict the final output class.ResultThe proposed model obtained the highest classification performance based on all evaluation metrics on all datasets, demonstrating its suitability and reliability in forecasting the probability of cardiovascular disease.",article,0,,,"Sadr, Hossein;Salari, Arsalan;Ashoobi, Mohammad Taghi;Nazari, Mojdeh",,,,,,,European Journal of Medical Research,,,SCOPUS,"Sadr Hossein, 2024, European Journal of Medical Research",,"Sadr Hossein, 2024, European Journal of Medical Research"
+2024,32,https://app.dimensions.ai/details/publication/pub.1175614556,Diagnostic Value of Magnetic Resonance Imaging Radiomics and Machine-learning in Grading Soft Tissue Sarcoma: A Mini-review on the Current State,311,1,,Academic Radiology,10.1016/j.acra.2024.08.035,2024-09-10,"Schmitz, Fabian;Sedaghat, Sam","Soft tissue sarcomas (STS) are a heterogeneous group of rare malignant tumors. Tumor grade might be underestimated in biopsy due to intratumoral heterogeneity. This mini-review aims to present the current state of predicting malignancy grades of STS through radiomics, machine learning, and deep learning on magnetic resonance imaging (MRI). Several studies investigated various machine-learning and deep-learning approaches in T2-weighted (w) images, contrast-enhanced (CE) T1w images, and DWI/ADC maps with promising results. Combining semantic imaging features, radiomics features, and deep-learning signatures in machine-learning models has demonstrated superior predictive performances compared to individual feature sources. Furthermore, incorporating features from both tumor volume and peritumor region is beneficial. Especially random forest and support vector machine classifiers, often combined with the least absolute shrinkage and selection operator (LASSO) and/or synthetic minority oversampling technique (SMOTE), did show high area under the curve (AUC) values and accuracies in existing studies.",article,0,,,"Schmitz, Fabian;Sedaghat, Sam",,,,,,,Academic Radiology,315,,SCOPUS,"Schmitz Fabian, 2024, Academic Radiology",,"Schmitz Fabian, 2024, Academic Radiology"
+2024,74,https://app.dimensions.ai/details/publication/pub.1175765224,Applying a community‐engaged participatory machine learning model,262,3-4,,American Journal of Community Psychology,10.1002/ajcp.12765,2024-09-15,"Asabor, Emmanuella Ngozi;Aneni, Kammarauche;Weerakoon, Sitara;Opara, Ijeoma","Although predictive algorithms have been described as the definitive solution to bias in health care, machine learning techniques may also propagate existing health inequities within the community context. However, there may be ways in which machine learning techniques can help community psychologists, public health researchers and practitioners identify patterns in data in a way that empowers improved outcomes. Incorporating community insight in all stages of machine learning research mitigates bias by positioning members of underrepresented communities as the experts of their lived experiences. As community psychologists already prioritize community-based participatory practices, we propose three core guiding principles for a community-engaged participatory model for research using machine learning techniques: shared decision-making, reflexivity and structural humility, and flexibility and adaptability. Guided by these three principles, we emphasize grounding priority setting, problem formation, model assumptions, and interpretation of the resulting algorithmic patterns in the truths born from the lived experiences of people closest to the problem. We also suggest opportunities for bidirectional and mutually empowering partnerships between algorithmic scientists and the communities to which their algorithms will be applied. Inclusion of community stakeholders in all stages of machine learning for health research provides an opportunity to develop algorithms that are both highly effective and ethically grounded in the lived experiences of target populations.",article,0,,,"Asabor, Emmanuella Ngozi;Aneni, Kammarauche;Weerakoon, Sitara;Opara, Ijeoma",,,,,,,American Journal of Community Psychology,268,,SCOPUS,"Asabor Emmanuella Ngozi, 2024, American Journal of Community Psychology",,"Asabor Emmanuella Ngozi, 2024, American Journal of Community Psychology"
+2024,24,https://app.dimensions.ai/details/publication/pub.1175773881,The BCPM method: decoding breast cancer with machine learning,248,1,,BMC Medical Imaging,10.1186/s12880-024-01402-5,2024-09-17,"Almarri, Badar;Gupta, Gaurav;Kumar, Ravinder;Vandana, Vandana;Asiri, Fatima;Khan, Surbhi Bhatia","Breast cancer prediction and diagnosis are critical for timely and effective treatment, significantly impacting patient outcomes. Machine learning algorithms have become powerful tools for improving the prediction and diagnosis of breast cancer. The Breast Cancer Prediction and Diagnosis Model (BCPM), which utilises machine learning techniques to improve the precision and efficiency of breast cancer diagnosis and prediction, is presented in this paper. BCPM collects comprehensive and high-quality data from diverse sources, including electronic medical records, clinical trials, and public datasets. Through rigorous pre-processing, the data is cleaned, inconsistencies are addressed, and missing values are handled. Feature scaling techniques are applied to normalize the data, ensuring fair comparison and equal importance among different features. Furthermore, feature-selection algorithms are utilized to identify the most relevant features that contribute to breast cancer projection and diagnosis, optimizing the model’s efficiency. The BCPM employs numerous machine learning methods, such as logistic regression, random forests, decision trees, support vector machines, and neural networks, to generate accurate models. Area under the curve (AUC), sensitivity, specificity, and accuracy are only some of the metrics used to assess a model’s performance once it has been trained on a subset of data. The BCPM holds promise in improving breast cancer prediction and diagnosis, aiding in personalized treatment planning, and ultimately taming patient results. By leveraging machine learning algorithms, the BCPM contributes to ongoing efforts in combating breast cancer and saving lives.",article,0,,,"Almarri, Badar;Gupta, Gaurav;Kumar, Ravinder;Vandana, Vandana;Asiri, Fatima;Khan, Surbhi Bhatia",,,,,,,BMC Medical Imaging,,,SCOPUS,"Almarri Badar, 2024, BMC Medical Imaging",,"Almarri Badar, 2024, BMC Medical Imaging"
+2024,3,https://app.dimensions.ai/details/publication/pub.1175831314,Synergizing physics and machine learning for advanced battery management,134,1,,Communications Engineering,10.1038/s44172-024-00273-6,2024-09-17,"Borah, Manashita;Wang, Qiao;Moura, Scott;Sauer, Dirk Uwe;Li, Weihan","Improving battery health and safety motivates the synergy of a powerful duo: physics and machine learning. Through seamless integration of these disciplines, the efficacy of mathematical battery models can be significantly enhanced. This paper delves into the challenges and potentials of managing battery health and safety, highlighting the transformative impact of integrating physics and machine learning to address those challenges. Based on our systematic review in this context, we outline several future directions and perspectives, offering a comprehensive exploration of efficient and reliable approaches. Our analysis emphasizes that the integration of physics and machine learning stands as a disruptive innovation in the development of emerging battery health and safety management technologies.",article,0,,,"Borah, Manashita;Wang, Qiao;Moura, Scott;Sauer, Dirk Uwe;Li, Weihan",,,,,,,Communications Engineering,,,SCOPUS,"Borah Manashita, 2024, Communications Engineering",,"Borah Manashita, 2024, Communications Engineering"
+2024,263,https://app.dimensions.ai/details/publication/pub.1175936837,Machine learning algorithms and biomarkers identification for pancreatic cancer diagnosis using multi-omics data integration,155602,,,Pathology - Research and Practice,10.1016/j.prp.2024.155602,2024-09-26,"Rouzbahani, Arian Karimi;Khalili-Tanha, Ghazaleh;Rajabloo, Yasamin;Khojasteh-Leylakoohi, Fatemeh;Garjan, Hassan Shokri;Nazari, Elham;Avan, Amir","PURPOSE: Pancreatic cancer is a lethal type of cancer with most of the cases being diagnosed in an advanced stage and poor prognosis. Developing new diagnostic and prognostic markers for pancreatic cancer can significantly improve early detection and patient outcomes. These biomarkers can potentially revolutionize medical practice by enabling personalized, more effective, targeted treatments, ultimately improving patient outcomes.
+METHODS: The search strategy was developed following PRISMA guidelines. A comprehensive search was performed across four electronic databases: PubMed, Scopus, EMBASE, and Web of Science, covering all English publications up to September 2022. The Newcastle-Ottawa Scale (NOS) was utilized to assess bias, categorizing studies as ""good,"" ""fair,"" or ""poor"" quality based on their NOS scores. Descriptive statistics for all included studies were compiled and reviewed, along with the NOS scores for each study to indicate their quality assessment.
+RESULTS: Our results showed that SVM and RF are the most widely used algorithms in machine learning and data analysis, particularly for biomarker identification. SVM, a supervised learning algorithm, is employed for both classification and regression by mapping data points in high-dimensional space to identify the optimal separating hyperplane between classes.
+CONCLUSIONS: The application of machine-learning algorithms in the search for novel biomarkers in pancreatic cancer represents a significant advancement in the field. By harnessing the power of artificial intelligence, researchers are poised to make strides towards earlier detection and more effective treatment, ultimately improving patient outcomes in this challenging disease.",article,0,,,"Rouzbahani, Arian Karimi;Khalili-Tanha, Ghazaleh;Rajabloo, Yasamin;Khojasteh-Leylakoohi, Fatemeh;Garjan, Hassan Shokri;Nazari, Elham;Avan, Amir",,,,,,,Pathology - Research and Practice,,,SCOPUS,"Rouzbahani Arian Karimi, 2024, Pathology - Research and Practice",,"Rouzbahani Arian Karimi, 2024, Pathology - Research and Practice"
+2024,43,https://app.dimensions.ai/details/publication/pub.1175975693,Parametric optimization and comparative study of machine learning and deep learning algorithms for breast cancer diagnosis,257,1,,Breast Disease,10.3233/bd-240018,2024-09-18,"Jain, Parul;Aggarwal, Shalini;Adam, Sufiyan;Imam, Mohsin","Breast Cancer is the leading form of cancer found in women and a major cause of increased mortality rates among them. However, manual diagnosis of the disease is time-consuming and often limited by the availability of screening systems. Thus, there is a pressing need for an automatic diagnosis system that can quickly detect cancer in its early stages. Data mining and machine learning techniques have emerged as valuable tools in developing such a system. In this study we investigated the performance of several machine learning models on the Wisconsin Breast Cancer (original) dataset with a particular emphasis on finding which models perform the best for breast cancer diagnosis. The study also explores the contrast between the proposed ANN methodology and conventional machine learning techniques. The comparison between the methods employed in the current study and those utilized in earlier research on the Wisconsin Breast Cancer dataset is also compared. The findings of this study are in line with those of previous studies which also highlighted the efficacy of SVM, Decision Tree, CART, ANN, and ELM ANN for breast cancer detection. Several classifiers achieved high accuracy, precision and F1 scores for benign and malignant tumours, respectively. It is also found that models with hyperparameter adjustment performed better than those without and boosting methods like as XGBoost, Adaboost, and Gradient Boost consistently performed well across benign and malignant tumours. The study emphasizes the significance of hyperparameter tuning and the efficacy of boosting algorithms in addressing the complexity and nonlinearity of data. Using the Wisconsin Breast Cancer (original) dataset, a detailed summary of the current status of research on breast cancer diagnosis is provided.",article,0,,,"Jain, Parul;Aggarwal, Shalini;Adam, Sufiyan;Imam, Mohsin",,,,,,,Breast Disease,270,,SCOPUS,"Jain Parul, 2024, Breast Disease",,"Jain Parul, 2024, Breast Disease"
+2024,13,https://app.dimensions.ai/details/publication/pub.1175977004,Research Progress of Machine Learning in Extending and Regulating the Shelf Life of Fruits and Vegetables,3025,19,,Foods,10.3390/foods13193025,2024-09-24,"Li, Dawei;Bai, Lin;Wang, Rong;Ying, Sun","Fruits and vegetables are valued for their flavor and high nutritional content, but their perishability and seasonality present challenges for storage and marketing. To address these, it is essential to accurately monitor their quality and predict shelf life. Unlike traditional methods, machine learning efficiently handles large datasets, identifies complex patterns, and builds predictive models to estimate food shelf life. These models can be continuously refined with new data, improving accuracy and robustness over time. This article discusses key machine learning methods for predicting shelf life and quality control of fruits and vegetables, with a focus on storage conditions, physicochemical properties, and non-destructive testing. It emphasizes advances such as dataset expansion, model optimization, multi-model fusion, and integration of deep learning and non-destructive testing. These developments aim to reduce resource waste, provide theoretical basis and technical guidance for the formation of modern intelligent agricultural supply chains, promote sustainable green development of the food industry, and foster interdisciplinary integration in the field of artificial intelligence.",article,0,,,"Li, Dawei;Bai, Lin;Wang, Rong;Ying, Sun",,,,,,,Foods,,,SCOPUS,"Li Dawei, 2024, Foods",,"Li Dawei, 2024, Foods"
+2024,17,https://app.dimensions.ai/details/publication/pub.1176087773,Predicting the Compressive Strength of Sustainable Portland Cement–Fly Ash Mortar Using Explainable Boosting Machine Learning Techniques,4744,19,,Materials,10.3390/ma17194744,2024-09-27,"Wang, Hongwei;Ding, Yuanbo;Kong, Yu;Sun, Daoyuan;Shi, Ying;Cai, Xin","Unconfined compressive strength (UCS) is a critical property for assessing the engineering performances of sustainable materials, such as cement-fly ash mortar (CFAM), in the design of construction engineering projects. The experimental determination of UCS is time-consuming and expensive. Therefore, the present study aims to model the UCS of CFAM with boosting machine learning methods. First, an extensive database consisting of 395 experimental data points derived from the literature was developed. Then, three typical boosting machine learning models were employed to model the UCS based on the database, including gradient boosting regressor (GBR), light gradient boosting machine (LGBM), and Ada-Boost regressor (ABR). Additionally, the importance of different input parameters was quantitatively analyzed using the SHapley Additive exPlanations (SHAP) approach. Finally, the best boosting machine learning model's prediction accuracy was compared to ten other commonly used machine learning models. The results indicate that the GBR model outperformed the LGBM and ABR models in predicting the UCS of the CFAM. The GBR model demonstrated significant accuracy, with no significant difference between the measured and predicted UCS values. The SHAP interpretations revealed that the curing time (T) was the most critical feature influencing the UCS values. At the same time, the chemical composition of the fly ash, particularly Al2O3, was more influential than the fly-ash dosage (FAD) or water-to-binder ratio (W/B) in determining the UCS values. Overall, this study demonstrates that SHAP boosting machine learning technology can be a useful tool for modeling and predicting UCS values of CFAM with good accuracy. It could also be helpful for CFAM design by saving time and costs on experimental tests.",article,0,,,"Wang, Hongwei;Ding, Yuanbo;Kong, Yu;Sun, Daoyuan;Shi, Ying;Cai, Xin",,,,,,,Materials,,,SCOPUS,"Wang Hongwei, 2024, Materials",,"Wang Hongwei, 2024, Materials"
+2024,15,https://app.dimensions.ai/details/publication/pub.1176105612,Precision at scale: Machine learning revolutionizing laparoscopic surgery,1256,10,,World Journal of Clinical Oncology,10.5306/wjco.v15.i10.1256,2024-10-24,"Ardila, Carlos M;González-Arroyave, Daniel","In their recent study published in the World Journal of Clinical Cases, the article found that minimally invasive laparoscopic surgery under general anesthesia demonstrates superior efficacy and safety compared to traditional open surgery for early ovarian cancer patients. This editorial discusses the integration of machine learning in laparoscopic surgery, emphasizing its transformative potential in improving patient outcomes and surgical precision. Machine learning algorithms analyze extensive datasets to optimize procedural techniques, enhance decision-making, and personalize treatment plans. Advanced imaging modalities like augmented reality and real-time tissue classification, alongside robotic surgical systems and virtual reality simulations driven by machine learning, enhance imaging and training techniques, offering surgeons clearer visualization and precise tissue manipulation. Despite promising advancements, challenges such as data privacy, algorithm bias, and regulatory hurdles need addressing for the responsible deployment of machine learning technologies. Interdisciplinary collaborations and ongoing technological innovations promise further enhancement in laparoscopic surgery, fostering a future where personalized medicine and precision surgery redefine patient care.",article,0,,,"Ardila, Carlos M;González-Arroyave, Daniel",,,,,,,World Journal of Clinical Oncology,1263,,SCOPUS,"Ardila Carlos M, 2024, World Journal of Clinical Oncology",,"Ardila Carlos M, 2024, World Journal of Clinical Oncology"
+2024,15,https://app.dimensions.ai/details/publication/pub.1176115415,Integrating machine learning to advance epitope mapping,1463931,,,Frontiers in Immunology,10.3389/fimmu.2024.1463931,2024-09-30,"Grewal, Simranjit;Hegde, Nidhi;Yanow, Stephanie K.","Identifying epitopes, or the segments of a protein that bind to antibodies, is critical for the development of a variety of immunotherapeutics and diagnostics. In vaccine design, the intent is to identify the minimal epitope of an antigen that can elicit an immune response and avoid off-target effects. For prognostics and diagnostics, the epitope-antibody interaction is exploited to measure antigens associated with disease outcomes. Experimental methods such as X-ray crystallography, cryo-electron microscopy, and peptide arrays are used widely to map epitopes but vary in accuracy, throughput, cost, and feasibility. By comparing machine learning epitope mapping tools, we discuss the importance of data selection, feature design, and algorithm choice in determining the specificity and prediction accuracy of an algorithm. This review discusses limitations of current methods and the potential for machine learning to deepen interpretation and increase feasibility of these methods. We also propose how machine learning can be employed to refine epitope prediction to address the apparent promiscuity of polyreactive antibodies and the challenge of defining conformational epitopes. We highlight the impact of machine learning on our current understanding of epitopes and its potential to guide the design of therapeutic interventions with more predictable outcomes.",article,0,,,"Grewal, Simranjit;Hegde, Nidhi;Yanow, Stephanie K.",,,,,,,Frontiers in Immunology,,,SCOPUS,"Grewal Simranjit, 2024, Frontiers in Immunology",,"Grewal Simranjit, 2024, Frontiers in Immunology"
+2024,13,https://app.dimensions.ai/details/publication/pub.1176217977,Machine learning‐based classification of varicocoele grading: A promising approach for diagnosis and treatment optimization,1451,6,,Andrology,10.1111/andr.13776,2024-10-03,"Kayra, Mehmet Vehbi;Şahin, Ali;Toksöz, Serdar;Serindere, Mehmet;Altıntaş, Emre;Özer, Halil;Gül, Murat","BACKGROUND: Varicocoele is a correctable cause of male infertility. Although physical examination is still being used in diagnosis and grading, it gives conflicting results when compared to ultrasonography-based varicocoele grading.
+OBJECTIVES: We aimed to develop a multi-class machine learning model for the grading of varicocoeles based on ultrasonographic measurements.
+METHOD: Between January and May 2024, we enrolled unilateral varicocoele patients at an infertility clinic, assessing their varicocoele stages using the Dubin and Amelar system. We measured vascular diameter and reflux time at the testicular apex and the subinguinal region ultrasonography in both the supine and standing positions. Using these measurements, we developed four multi-class machine learning models, evaluating their performance metrics and determining which patient position and projection were most influential in varicocoele grading.
+RESULTS: We included 248 patients with unilateral varicocoele in the study, their average age was 26.61 ± 4.95 years old. Of these, 212 had left-sided and 36 had right-sided varicocoeles. According to the Dubin and Amelar system, there were 66 grade I, 96 grade II, and 86 grade III varicocoeles. Among the models we created, the random forest (RF) model performed best, with an overall accuracy of 0.81 ± 0.06, an F1 score of 0.79 ± 0.02, a sensitivity of 0.69 ± 0.02, and a specificity of 0.8 ± 0.03. Vascular diameter measurement at the testicular apex in the supine position had the most impact on grading across all models. In support vector machine and multi-layer perceptron models, reflux time measurements from the subinguinal projection in the standing position contributed the most, while in RF and k-nearest neighbors models, measurements from the subinguinal projection in the supine position were the most influential.
+CONCLUSIONS: Machine learning methods have demonstrated superior accuracy in predicting disease compared to traditional statistical regressions and nomograms. These advancements hold promise for clinically automated prediction of varicocoele grades in patients. Tailored varicocoele grading for individuals has the potential to enhance treatment effectiveness and overall quality of life.",article,0,,,"Kayra, Mehmet Vehbi;Şahin, Ali;Toksöz, Serdar;Serindere, Mehmet;Altıntaş, Emre;Özer, Halil;Gül, Murat",,,,,,,Andrology,1461,,SCOPUS,"Kayra Mehmet Vehbi, 2024, Andrology",,"Kayra Mehmet Vehbi, 2024, Andrology"
+2024,14,https://app.dimensions.ai/details/publication/pub.1176258557,RETRACTED ARTICLE: An intelligent learning system based on electronic health records for unbiased stroke prediction,23052,1,,Scientific Reports,10.1038/s41598-024-73570-x,2024-10-04,"Saleem, Muhammad Asim;Javeed, Ashir;Akarathanawat, Wasan;Chutinet, Aurauma;Suwanwela, Nijasri Charnnarong;Kaewplung, Pasu;Chaitusaney, Surachai;Deelertpaiboon, Sunchai;Srisiri, Wattanasak;Benjapolakul, Watit","Stroke has a negative impact on people’s lives and is one of the
+leading causes of death and disability worldwide. Early detection of symptoms can
+significantly help predict stroke and promote a healthy lifestyle. Researchers have
+developed several methods to predict strokes using machine learning (ML) techniques.
+However, the proposed systems have suffered from the following two main problems.
+The first problem is that the machine learning models are biased due to the uneven
+distribution of classes in the dataset. Recent research has not adequately addressed
+this problem, and no preventive measures have been taken. Synthetic Minority
+Oversampling (SMOTE) has been used to remove bias and balance the training of the
+proposed ML model. The second problem is to solve the problem of lower
+classification accuracy of machine learning models. We proposed a learning system
+that combines an autoencoder with a linear discriminant analysis (LDA) model to
+increase the accuracy of the proposed ML model for stroke prediction. Relevant
+features are extracted from the feature space using the autoencoder, and the
+extracted subset is then fed into the LDA model for stroke classification. The
+hyperparameters of the LDA model are found using a grid search strategy. However,
+the conventional accuracy metric does not truly reflect the performance of ML
+models. Therefore, we employed several evaluation metrics to validate the efficiency
+of the proposed model. Consequently, we evaluated the proposed model’s
+accuracy, sensitivity, specificity, area under the curve (AUC), and receiver
+operator characteristic (ROC). The experimental results show that the proposed model
+achieves a sensitivity and specificity of 98.51% and 97.56%,
+respectively, with an accuracy of 99.24% and a balanced accuracy of
+98.00%.",article,0,,,"Saleem, Muhammad Asim;Javeed, Ashir;Akarathanawat, Wasan;Chutinet, Aurauma;Suwanwela, Nijasri Charnnarong;Kaewplung, Pasu;Chaitusaney, Surachai;Deelertpaiboon, Sunchai;Srisiri, Wattanasak;Benjapolakul, Watit",,,,,,,Scientific Reports,,,SCOPUS,"Saleem Muhammad Asim, 2024, Scientific Reports",,"Saleem Muhammad Asim, 2024, Scientific Reports"
+2024,64,https://app.dimensions.ai/details/publication/pub.1176274216,Automated wave labelling of the auditory brainstem response using machine learning,766,7,,International Journal of Audiology,10.1080/14992027.2024.2404537,2024-10-03,"McKearney, Richard M.;Simpson, David M.;Bell, Steven L.","OBJECTIVE: To compare the performance of a selection of machine learning algorithms, trained to label peaks I, III, and V of the auditory brainstem response (ABR) waveform. An additional algorithm was trained to provide a confidence measure related to the ABR wave latency estimates.
+DESIGN: Secondary data analysis of a previously published ABR dataset. Five types of machine learning algorithm were compared within a nested k-fold cross-validation procedure.
+STUDY SAMPLE: A set of 482 suprathreshold ABR waveforms were used. These were recorded from 81 participants with audiometric thresholds within normal limits.
+RESULTS: A convolutional recurrent neural network (CRNN) outperformed the other algorithms evaluated. The algorithm labelled 95.9% of ABR waves within ±0.1 ms of the target. The mean absolute error was 0.025 ms, averaged across the outer validation folds of the nested cross-validation procedure. High confidence levels were generally associated with greater wave-labelling accuracy.
+CONCLUSIONS: Machine learning algorithms have the potential to assist clinicians with ABR interpretation. The present work identifies a promising machine learning approach, but any algorithm to be used in clinical practice would need to be trained on a large, accurately labelled, heterogeneous dataset and evaluated in clinical settings in follow-on work.",article,0,,,"McKearney, Richard M.;Simpson, David M.;Bell, Steven L.",,,,,,,International Journal of Audiology,771,,SCOPUS,"McKearney Richard M., 2024, International Journal of Audiology",,"McKearney Richard M., 2024, International Journal of Audiology"
+2024,157,https://app.dimensions.ai/details/publication/pub.1181189470,Analysis of nailfold capillaroscopy images with artificial intelligence: Data from literature and performance of machine learning and deep learning from images acquired in the SCLEROCAP study,104753,,,Microvascular Research,10.1016/j.mvr.2024.104753,2024-10-09,"Ozturk, Lutfi;Laclau, Charlotte;Boulon, Carine;Mangin, Marion;Braz-Ma, Etheve;Constans, Joel;Dari, Loubna;Le Hello, Claire","OBJECTIVE: To evaluate the performance of machine learning and then deep learning to detect a systemic scleroderma (SSc) landscape from the same set of nailfold capillaroscopy (NC) images from the French prospective multicenter observational study SCLEROCAP.
+METHODS: NC images from the first 100 SCLEROCAP patients were analyzed to assess the performance of machine learning and then deep learning in identifying the SSc landscape, the NC images having previously been independently and consensually labeled by expert clinicians. Images were divided into a training set (70 %) and a validation set (30 %). After features extraction from the NC images, we tested six classifiers (random forests (RF), support vector machine (SVM), logistic regression (LR), light gradient boosting (LGB), extreme gradient boosting (XGB), K-nearest neighbors (KNN)) on the training set with five different combinations of the images. The performance of each classifier was evaluated by the F1 score. In the deep learning section, we tested three pre-trained models from the TIMM library (ResNet-18, DenseNet-121 and VGG-16) on raw NC images after applying image augmentation methods.
+RESULTS: With machine learning, performance ranged from 0.60 to 0.73 for each variable, with Hu and Haralick moments being the most discriminating. Performance was highest with the RF, LGB and XGB models (F1 scores: 0.75-0.79). The highest score was obtained by combining all variables and using the LGB model (F1 score: 0.79 ± 0.05, p < 0.01). With deep learning, performance reached a minimum accuracy of 0.87. The best results were obtained with the DenseNet-121 model (accuracy 0.94 ± 0.02, F1 score 0.94 ± 0.02, AUC 0.95 ± 0.03) as compared to ResNet-18 (accuracy 0.87 ± 0.04, F1 score 0.85 ± 0.03, AUC 0.87 ± 0.04) and VGG-16 (accuracy 0.90 ± 0.03, F1 score 0.91 ± 0.02, AUC 0.91 ± 0.04).
+CONCLUSION: By using machine learning and then deep learning on the same set of labeled NC images from the SCLEROCAP study, the highest performances to detect SSc landscape were obtained with deep learning and in particular DenseNet-121. This pre-trained model could therefore be used to automatically interpret NC images in case of suspected SSc. This result nevertheless needs to be confirmed on a larger number of NC images.",article,0,,,"Ozturk, Lutfi;Laclau, Charlotte;Boulon, Carine;Mangin, Marion;Braz-Ma, Etheve;Constans, Joel;Dari, Loubna;Le Hello, Claire",,,,,,,Microvascular Research,,,SCOPUS,"Ozturk Lutfi, 2024, Microvascular Research",,"Ozturk Lutfi, 2024, Microvascular Research"
+2024,37,https://app.dimensions.ai/details/publication/pub.1181207164,Artificial intelligence and machine learning in disorders of consciousness,614,6,,Current Opinion in Neurology,10.1097/wco.0000000000001322,2024-10-09,"Lee, Minji;Laureys, Steven","PURPOSE OF REVIEW: As artificial intelligence and machine learning technologies continue to develop, they are being increasingly used to improve the scientific understanding and clinical care of patients with severe disorders of consciousness following acquired brain damage. We here review recent studies that utilized these techniques to reduce the diagnostic and prognostic uncertainty in disorders of consciousness, and to better characterize patients' response to novel therapeutic interventions.
+RECENT FINDINGS: Most papers have focused on differentiating between unresponsive wakefulness syndrome and minimally conscious state, utilizing artificial intelligence to better analyze functional neuroimaging and electroencephalography data. They often proposed new features using conventional machine learning rather than deep learning algorithms. To better predict the outcome of patients with disorders of consciousness, recovery was most often based on the Glasgow Outcome Scale, and traditional machine learning techniques were used in most cases. Machine learning has also been employed to predict the effects of novel therapeutic interventions (e.g., zolpidem and transcranial direct current stimulation).
+SUMMARY: Artificial intelligence and machine learning can assist in clinical decision-making, including the diagnosis, prognosis, and therapy for patients with disorders of consciousness. The performance of these models can be expected to be significantly improved by the use of deep learning techniques.",article,0,,,"Lee, Minji;Laureys, Steven",,,,,,,Current Opinion in Neurology,620,,SCOPUS,"Lee Minji, 2024, Current Opinion in Neurology",,"Lee Minji, 2024, Current Opinion in Neurology"
+2024,16,https://app.dimensions.ai/details/publication/pub.1181212190,Predicting the Recurrence of Ovarian Cancer Based on Machine Learning,1375,0,,Cancer Management and Research,10.2147/cmar.s482837,2024-10,"Zhou, Lining;Hong, Hong;Chu, Fuying;Chen, Xiang;Wang, Chenlu","Background: Recurrence is the main factor for poor prognosis in ovarian cancer, but few prognostic biomarkers were reported. In this study, we used machine learning methods based on multiple biomarkers to develop a specific prediction model for the recurrence of ovarian cancer.
+Methods: A total of 277 ovarian cancer patients were enrolled in this study and randomly classified into training and testing cohorts. The prediction information was obtained through 47 clinical parameters using six supervised clustering machine learning algorithms, including K-Nearest Neighbor (K-NN), Decision Tree (DT), Random Forest (RF), Adaptive Boosting (AdaBoost), Gradient Boosting Machine (GBM), and Extreme Gradient Boosting (XGBoost).
+Results: In predicting the recurrence of ovarian cancer, machine learning algorithm was superior to conventional logistic regression analysis. In this study, XGBoost showed the best performance in predicting the recurrence of ovarian cancer, with an accuracy of 0.95. In addition, neoadjuvant chemotherapy, Monocyte ratio (MONO%), Hematocrit (HCT), Prealbumin (PAB), Aspartate aminotransferase (AST), and carbohydrate antigen 125 (CA125) are the most important biomarkers to predict the recurrence of ovarian cancer.
+Conclusion: The machine learning techniques can achieve a more accurate assessment of the recurrence of ovarian cancer, which can help clinicians make decisions, and develop personalized treatment strategies.",article,0,,,"Zhou, Lining;Hong, Hong;Chu, Fuying;Chen, Xiang;Wang, Chenlu",,,,,,,Cancer Management and Research,1387,,SCOPUS,"Zhou Lining, 2024, Cancer Management and Research",,"Zhou Lining, 2024, Cancer Management and Research"
+2024,29,https://app.dimensions.ai/details/publication/pub.1181309736,Embracing technological revolution: A panorama of machine learning in dentistry,e742,6,,"Medicina Oral, Patología Oral y Cirugía Bucal",10.4317/medoral.26679,2024-11-01,"Lin, Huili;Chen, Jun;Hu, Yinyi;Li, Wenjie","BACKGROUND: The overarching aim of this study is to furnish dental experts and researchers with a comprehensive understanding of the role of machine learning in dentistry. This entails a nuanced understanding of prevailing technologies, discerning emerging trends, and providing strategic guidance for future research endeavors and practical implementations.
+MATERIAL AND METHODS: We assessed the literature by looking for papers related to the issue after 2019 in the Pubmed, Web of Science, and Google Scholar databases. A narrative review of 29 papers satisfying the search criteria was undertaken, with an emphasis on the application of machine learning in dentistry.
+RESULTS: A review was conducted, including 29 publications. The advent of emerging technologies holds promise for enhancing the accuracy and efficiency of dental diagnosis, treatment, and prognosis. Nevertheless, the intricate nature of oral disease diagnosis and outcome prediction mandates acknowledgment of variables such as individual idiosyncrasies, lifestyle, genetics, image quality, and tooth morphology. These factors may impact the precision of machine learning models. Dental professionals should not rely solely on AI-based results but rather use them as references. Integrating these findings with clinical examinations, assessing the patient's overall health, and oral condition is crucial for informed decision-making.
+CONCLUSIONS: This review explores the clinical applications of machine learning in dentistry, encompassing disciplines like cariology, endodontics, periodontology, oral medicine, oral and maxillofacial surgery, prosthodontics and orthodontics. It serves as a valuable resource for dental practitioners and scholars in understanding the computer algorithms employed in each study, facilitating the clinical translation of machine learning research outcomes.",article,0,,,"Lin, Huili;Chen, Jun;Hu, Yinyi;Li, Wenjie",,,,,,,"Medicina Oral, Patología Oral y Cirugía Bucal",e749,,SCOPUS,"Lin Huili, 2024, Medicina Oral, Patología Oral y Cirugía Bucal",,"Lin Huili, 2024, Medicina Oral, Patología Oral y Cirugía Bucal"
+2024,7,https://app.dimensions.ai/details/publication/pub.1181362127,Big data and AI for gender equality in health: bias is a big challenge,1436019,,,Frontiers in Big Data,10.3389/fdata.2024.1436019,2024-10-16,"Joshi, Anagha","Artificial intelligence and machine learning are rapidly evolving fields that have the potential to transform women's health by improving diagnostic accuracy, personalizing treatment plans, and building predictive models of disease progression leading to preventive care. Three categories of women's health issues are discussed where machine learning can facilitate accessible, affordable, personalized, and evidence-based healthcare. In this perspective, firstly the promise of big data and machine learning applications in the context of women's health is elaborated. Despite these promises, machine learning applications are not widely adapted in clinical care due to many issues including ethical concerns, patient privacy, informed consent, algorithmic biases, data quality and availability, and education and training of health care professionals. In the medical field, discrimination against women has a long history. Machine learning implicitly carries biases in the data. Thus, despite the fact that machine learning has the potential to improve some aspects of women's health, it can also reinforce sex and gender biases. Advanced machine learning tools blindly integrated without properly understanding and correcting for socio-cultural sex and gender biased practices and policies is therefore unlikely to result in sex and gender equality in health.",article,0,,,"Joshi, Anagha",,,,,,,Frontiers in Big Data,,,SCOPUS,"Joshi Anagha, 2024, Frontiers in Big Data",,"Joshi Anagha, 2024, Frontiers in Big Data"
+2024,5,https://app.dimensions.ai/details/publication/pub.1181422161,"Exploring the Intersection of Schizophrenia, Machine Learning, and Genomics: Scoping Review",e62752,,,JMIR Bioinformatics and Biotechnology,10.2196/62752,2024-11-15,"Hudon, Alexandre;Beaudoin, Mélissa;Phraxayavong, Kingsada;Potvin, Stéphane;Dumais, Alexandre","BACKGROUND: An increasing body of literature highlights the integration of machine learning with genomic data in psychiatry, particularly for complex mental health disorders such as schizophrenia. These advanced techniques offer promising potential for uncovering various facets of these disorders. A comprehensive review of the current applications of machine learning in conjunction with genomic data within this context can significantly enhance our understanding of the current state of research and its future directions.
+OBJECTIVE: This study aims to conduct a systematic scoping review of the use of machine learning algorithms with genomic data in the field of schizophrenia.
+METHODS: To conduct a systematic scoping review, a search was performed in the electronic databases MEDLINE, Web of Science, PsycNet (PsycINFO), and Google Scholar from 2013 to 2024. Studies at the intersection of schizophrenia, genomic data, and machine learning were evaluated.
+RESULTS: The literature search identified 2437 eligible articles after removing duplicates. Following abstract screening, 143 full-text articles were assessed, and 121 were subsequently excluded. Therefore, 21 studies were thoroughly assessed. Various machine learning algorithms were used in the identified studies, with support vector machines being the most common. The studies notably used genomic data to predict schizophrenia, identify schizophrenia features, discover drugs, classify schizophrenia amongst other mental health disorders, and predict the quality of life of patients.
+CONCLUSIONS: Several high-quality studies were identified. Yet, the application of machine learning with genomic data in the context of schizophrenia remains limited. Future research is essential to further evaluate the portability of these models and to explore their potential clinical applications.",article,0,,,"Hudon, Alexandre;Beaudoin, Mélissa;Phraxayavong, Kingsada;Potvin, Stéphane;Dumais, Alexandre",,,,,,,JMIR Bioinformatics and Biotechnology,,,SCOPUS,"Hudon Alexandre, 2024, JMIR Bioinformatics and Biotechnology",,"Hudon Alexandre, 2024, JMIR Bioinformatics and Biotechnology"
+2024,10,https://app.dimensions.ai/details/publication/pub.1181500363,Deep learning-based anomaly detection using one-dimensional convolutional neural networks (1D CNN) in machine centers (MCT) and computer numerical control (CNC) machines,e2389,,,PeerJ Computer Science,10.7717/peerj-cs.2389,2024-10-17,"Athar, Ali;Mozumder, Ariful Islam;Abdullah;Ali, Sikandar;Kim, Hee-Cheol","Computer numerical control (CNC) and machine center (MCT) machines are mechanical devices that manipulate different tools using computer programming as inputs. Predicting failures in CNC and MCT machines before their actual failure time is crucial to reduce maintenance costs and increase productivity. This study is centered around a novel deep learning-based model using a 1D convolutional neural network (CNN) for early fault detection in MCT machines. We collected sensor-based data from CNC/MCT machines and applied various preprocessing techniques to prepare the dataset. Our experimental results demonstrate that the 1D-CNN model achieves a higher accuracy of 91.57% compared to traditional machine learning classifiers and other deep learning models, including Random Forest (RF) at 89.71%, multi-layer perceptron (MLP) at 87.45%, XGBoost at 89.67%, logistic regression (LR) at 75.93%, support vector machine (SVM) at 75.96%, K-nearest neighbors (KNN) at 82.93%, decision tree at 88.36%, naïve Bayes at 68.31%, long short-term memory (LSTM) at 90.80%, and a hybrid 1D CNN + LSTM model at 88.51%. Moreover, our proposed 1D CNN model outperformed all other mentioned models in precision, recall, and F-1 scores, with 91.87%, 91.57%, and 91.63%, respectively. These findings highlight the efficacy of the 1D CNN model in providing optimal performance with an MCT machine's dataset, making it particularly suitable for small manufacturing companies seeking to automate early fault detection and classification in CNC and MCT machines. This approach enhances productivity and aids in proactive maintenance and safety measures, demonstrating its potential to revolutionize the manufacturing industry.",article,0,,,"Athar, Ali;Mozumder, Ariful Islam;Abdullah;Ali, Sikandar;Kim, Hee-Cheol",,,,,,,PeerJ Computer Science,,,SCOPUS,"Athar Ali, 2024, PeerJ Computer Science",,"Athar Ali, 2024, PeerJ Computer Science"
+2024,12,https://app.dimensions.ai/details/publication/pub.1181517347,A systematic review on machine learning approaches in cerebral palsy research,e18270,,,PeerJ,10.7717/peerj.18270,2024-10-18,"Nahar, Anjuman;Paul, Sudip;Saikia, Manob Jyoti","Background: This review aims to explore advances in the field of cerebral palsy (CP) focusing on machine learning (ML) models. The objectives of this study is to analyze the advances in the application of ML models in the field of CP and to compare the performance of different ML algorithms in terms of their effectiveness in CP identification, classifying CP into its subtypes, prediction of abnormalities in CP, and its management. These objectives guide the review in examining how ML techniques are applied to CP and their potential impact on improving outcomes in CP research and treatment.
+Methodology: A total of 20 studies were identified on ML for CP from 2013 to 2023. Search Engines used during the review included electronic databases like PubMed for accessing biomedical and life sciences, IEEE Xplore for technical literature in computer, Google Scholar for a broad range of academic publications, Scopus and Web of Science for multidisciplinary high impact journals. Inclusion criteria included articles containing keywords such as cerebral palsy, machine learning approaches, outcome response, identification, classification, diagnosis, and treatment prediction. Studies were included if they reported the application of ML techniques for CP patients. Peer reviewed articles from 2013 to 2023 were only included for the review. We selected full-text articles, clinical trials, randomized control trial, systematic reviews, narrative reviews, and meta-analyses published in English. Exclusion criteria for the review included studies not directly related to CP. Editorials, opinion pieces, and non-peer-reviewed articles were also excluded. To ensure the validity and reliability of the findings in this review, we thoroughly examined the study designs, focusing on the appropriateness of their methodologies and sample sizes. To synthesize and present the results, data were extracted and organized into tables for easy comparison. The results were presented through a combination of text, tables, and figures, with key findings emphasized in summary tables and relevant graphs.
+Results: Random forest (RF) is mainly used for classifying movements and deformities due to CP. Support vector machine (SVM), decision tree (DT), RF, and K-nearest neighbors (KNN) show 100% accuracy in exercise evaluation. RF and DT show 94% accuracy in the classification of gait patterns, multilayer perceptron (MLP) shows 84% accuracy in the classification of CP children, Bayesian causal forests (BCF) have 74% accuracy in predicting the average treatment effect on various orthopedic and neurological conditions. Neural networks are 94.17% accurate in diagnosing CP using eye images. However, the studies varied significantly in their design, sample size, and quality of data, which limits the generalizability of the findings.
+Conclusion: Clinical data are primarily used in ML models in the CP field, accounting for almost 47%. With the rise in popularity of machine learning techniques, there has been a rise in interest in developing automated and data-driven approaches to explore the use of ML in CP.",article,0,,,"Nahar, Anjuman;Paul, Sudip;Saikia, Manob Jyoti",,,,,,,PeerJ,,,SCOPUS,"Nahar Anjuman, 2024, PeerJ",,"Nahar Anjuman, 2024, PeerJ"
+2024,10,https://app.dimensions.ai/details/publication/pub.1181578135,Scoping review: Machine learning interventions in the management of healthcare systems,20552076221144095,,,Digital Health,10.1177/20552076221144095,2024-01,"Arueyingho, Oritsetimeyin V;Al-Taie, Anmar;McCallum, Claire","Background: Healthcare institutions focus on improving the quality of life for end-users, with key performance indicators like access to essential medicines reflecting the effectiveness of management. Effective healthcare management involves planning, organizing, and controlling institutions built on human resources, data systems, service delivery, access to medicines, finance, and leadership. According to the World Health Organization, these elements must be balanced for an optimal healthcare system. Big data generated from healthcare institutions, including health records and genomic data, is crucial for smart staffing, decision-making, risk management, and patient engagement. Properly organizing and analysing this data is essential, and machine learning, a sub-field of artificial intelligence, can optimize these processes, leading to better overall healthcare management.
+Objectives: This review examines the major applications of machine learning in healthcare management, the algorithms frequently used in data analysis, their limitations, and the evidence-based benefits of machine learning in healthcare.
+Methods: Following PRISMA guidelines, databases such as IEEE Xplore, ScienceDirect, ACM Digital Library, and SCOPUS were searched for eligible articles published between 2011 and 2021. Articles had to be in English, peer-reviewed, and include relevant keywords like healthcare, management, and machine learning.
+Results: Out of 51 relevant articles, 6 met the inclusion criteria. Identified algorithms include topic modelling, dynamic clustering, neural networks, decision trees, and ensemble classifiers, applied in areas such as electronic health records, chatbots, and multi-disease prediction.
+Conclusion: Machine learning supports healthcare management by aiding decision-making, processing big data, and providing insights for system improvements.",article,0,,,"Arueyingho, Oritsetimeyin V;Al-Taie, Anmar;McCallum, Claire",,,,,,,Digital Health,,,SCOPUS,"Arueyingho Oritsetimeyin V, 2024, Digital Health",,"Arueyingho Oritsetimeyin V, 2024, Digital Health"
+2024,3,https://app.dimensions.ai/details/publication/pub.1181578217,Conceptualizing bias in EHR data: A case study in performance disparities by demographic subgroups for a pediatric obesity incidence classifier,e0000642,10,,PLOS Digital Health,10.1371/journal.pdig.0000642,2024-10-23,"Campbell, Elizabeth A.;Bose, Saurav;Masino, Aaron J.","Electronic Health Records (EHRs) are increasingly used to develop machine learning models in predictive medicine. There has been limited research on utilizing machine learning methods to predict childhood obesity and related disparities in classifier performance among vulnerable patient subpopulations. In this work, classification models are developed to recognize pediatric obesity using temporal condition patterns obtained from patient EHR data in a U.S. study population. We trained four machine learning algorithms (Logistic Regression, Random Forest, Gradient Boosted Trees, and Neural Networks) to classify cases and controls as obesity positive or negative, and optimized hyperparameter settings through a bootstrapping methodology. To assess the classifiers for bias, we studied model performance by population subgroups then used permutation analysis to identify the most predictive features for each model and the demographic characteristics of patients with these features. Mean AUC-ROC values were consistent across classifiers, ranging from 0.72-0.80. Some evidence of bias was identified, although this was through the models performing better for minority subgroups (African Americans and patients enrolled in Medicaid). Permutation analysis revealed that patients from vulnerable population subgroups were over-represented among patients with the most predictive diagnostic patterns. We hypothesize that our models performed better on under-represented groups because the features more strongly associated with obesity were more commonly observed among minority patients. These findings highlight the complex ways that bias may arise in machine learning models and can be incorporated into future research to develop a thorough analytical approach to identify and mitigate bias that may arise from features and within EHR datasets when developing more equitable models.",article,0,,,"Campbell, Elizabeth A.;Bose, Saurav;Masino, Aaron J.",,,,,,,PLOS Digital Health,,,SCOPUS,"Campbell Elizabeth A., 2024, PLOS Digital Health",,"Campbell Elizabeth A., 2024, PLOS Digital Health"
+2024,12,https://app.dimensions.ai/details/publication/pub.1181598620,Intensive care unit-acquired weakness: Unveiling significant risk factors and preemptive strategies through machine learning,6760,35,,World Journal of Clinical Cases,10.12998/wjcc.v12.i35.6760,2024-12-16,"He, Xiao-Yu;Zhao, Yi-Huan;Wan, Qian-Wen;Tang, Fu-Shan","This editorial discusses an article recently published in the World Journal of Clinical Cases, focusing on risk factors associated with intensive care unit-acquired weakness (ICU-AW). ICU-AW is a serious neuromuscular complication seen in critically ill patients, characterized by muscle dysfunction, weakness, and sensory impairments. Post-discharge, patients may encounter various obstacles impacting their quality of life. The pathogenesis involves intricate changes in muscle and nerve function, potentially leading to significant disabilities. Given its global significance, ICU-AW has become a key research area. The study identified critical risk factors using a multilayer perceptron neural network model, highlighting the impact of intensive care unit stay duration and mechanical ventilation duration on ICU-AW. Recommendations were provided for preventing ICU-AW, emphasizing comprehensive interventions and risk factor mitigation. This editorial stresses the importance of external validation, cross-validation, and model transparency to enhance model reliability. Moreover, the application of machine learning in clinical medicine has demonstrated clear benefits in improving disease understanding and treatment decisions. While machine learning presents opportunities, challenges such as model reliability and data management necessitate thorough validation and ethical considerations. In conclusion, integrating machine learning into healthcare offers significant potential and challenges. Enhancing data management, validating models, and upholding ethical standards are crucial for maximizing the benefits of machine learning in clinical practice.",article,0,,,"He, Xiao-Yu;Zhao, Yi-Huan;Wan, Qian-Wen;Tang, Fu-Shan",,,,,,,World Journal of Clinical Cases,6763,,SCOPUS,"He Xiao-Yu, 2024, World Journal of Clinical Cases",,"He Xiao-Yu, 2024, World Journal of Clinical Cases"
+2024,193,https://app.dimensions.ai/details/publication/pub.1181753648,Post-Cardiac arrest outcome prediction using machine learning: A systematic review and meta-analysis,105659,,,International Journal of Medical Informatics,10.1016/j.ijmedinf.2024.105659,2024-10-28,"Zobeiri, Amirhosein;Rezaee, Alireza;Hajati, Farshid;Argha, Ahmadreza;Alinejad-Rokny, Hamid","BACKGROUND: Early and reliable prognostication in post-cardiac arrest patients remains challenging, with various factors linked to return of spontaneous circulation (ROSC), survival, and neurological results. Machine learning and deep learning models show promise in improving these predictions. This systematic review and meta-analysis evaluates how effective these approaches are in predicting clinical outcomes at different time points using structured data.
+METHODS: This study followed PRISMA guidelines, involving a comprehensive search across PubMed, Scopus, and Web of Science databases until March 2024. Studies aimed at predicting ROSC, survival (or mortality), and neurological outcomes after cardiac arrest through the application of machine learning or deep learning techniques with structured data were included. Data extraction followed the guidelines of the CHARMS checklist, and the bias risk was evaluated using PROBAST tool. Models reporting the AUC metric with 95 % confidence intervals were incorporated into the quantitative synthesis and meta-analysis.
+RESULTS: After extracting 2,753 initial records, 41 studies met the inclusion criteria, yielding 97 machine learning and 16 deep learning models. The pooled AUC for predicting favorable neurological outcomes (CPC 1 or 2) at hospital discharge was 0.871 (95 % CI: 0.813 - 0.928) for machine learning models and 0.877 (95 % CI: 0.831-0.924) across deep learning algorithms. For survival prediction, this value was found to be 0.837 (95 % CI: 0.757-0.916). Considerable heterogeneity and high risk of bias were observed, mainly attributable to inadequate management of missing data and the absence of calibration plots. Most studies focused on pre-hospital factors, with age, sex, and initial arrest rhythm being the most frequent features.
+CONCLUSION: Predictive models utilizing AI-based approaches, including machine and deep learning models exhibit enhanced effectiveness compared to previous regression algorithms, but significant heterogeneity and high risk of bias limit their dependability. Evaluating state-of-the-art deep learning models tailored for tabular data and their clinical generalizability can enhance outcome prediction after cardiac arrest.",article,0,,,"Zobeiri, Amirhosein;Rezaee, Alireza;Hajati, Farshid;Argha, Ahmadreza;Alinejad-Rokny, Hamid",,,,,,,International Journal of Medical Informatics,,,SCOPUS,"Zobeiri Amirhosein, 2024, International Journal of Medical Informatics",,"Zobeiri Amirhosein, 2024, International Journal of Medical Informatics"
+2024,10,https://app.dimensions.ai/details/publication/pub.1181811257,A novel multi-model feature generation technique for suicide detection,e2301,,,PeerJ Computer Science,10.7717/peerj-cs.2301,2024-10-28,"Ding, Ting;Qu, Tonghui;Zou, Zongliang;Ding, Cheng","Automated expert systems (AES) analyzing depression-related content on social media have piqued the interest of researchers. Depression, often linked to suicide, requires early prediction for potential life-saving interventions. In the conventional approach, psychologists conduct patient interviews or administer questionnaires to assess depression levels. However, this traditional method is plagued by limitations. Patients might not feel comfortable disclosing their true feelings to psychologists, and counselors may struggle to accurately predict situations due to limited data. In this context, social media emerges as a potentially valuable resource. Given the widespread use of social media in daily life, individuals often express their nature and mental state through their online posts. AES can efficiently analyze vast amounts of social media content to predict depression levels in individuals at an early stage. This study contributes to this endeavor by proposing an innovative approach for predicting suicide risks using social media content and machine learning techniques. A novel multi-model feature generation technique is employed to enhance the performance of machine learning models. This technique involves the use of a feature extraction method known as term frequency-inverse document frequency (TF-IDF), combined with two machine learning models: logistic regression (LR) and support vector machine (SVM). The proposed technique calculates probabilities for each sample in the dataset, resulting in a new feature set referred to as the probability-based feature set (ProBFS). This ProBFS is compact yet highly correlated with the target classes in the dataset. The utilization of concise and correlated features yields significant outcomes. The SVM model achieves an impressive accuracy score of 0.96 using ProBFS while maintaining a low computational time of 5.63 seconds even when dealing with extensive datasets. Furthermore, a comparison with state-of-the-art approaches is conducted to demonstrate the significance of the proposed method.",article,0,,,"Ding, Ting;Qu, Tonghui;Zou, Zongliang;Ding, Cheng",,,,,,,PeerJ Computer Science,,,SCOPUS,"Ding Ting, 2024, PeerJ Computer Science",,"Ding Ting, 2024, PeerJ Computer Science"
+2024,57,https://app.dimensions.ai/details/publication/pub.1181885965,Research hotspots and frontiers of machine learning in renal medicine: a bibliometric and visual analysis from 2013 to 2024,907,3,,International Urology and Nephrology,10.1007/s11255-024-04259-3,2024-10-30,"Li, Feng;Hu, ChangHao;Luo, Xu","BackgroundThe kidney, an essential organ of the human body, can suffer pathological damage that can potentially have serious adverse consequences on the human body and even affect life. Furthermore, the majority of kidney-induced illnesses are frequently not readily identifiable in their early stages. Once they have progressed to a more advanced stage, they impact the individual's quality of life and burden the family and broader society. In recent years, to solve this challenge well, the application of machine learning techniques in renal medicine has received much attention from researchers, and many results have been achieved in disease diagnosis and prediction. Nevertheless, studies that have conducted a comprehensive bibliometric analysis of the field have yet to be identified.ObjectivesThis study employs bibliometric and visualization analyses to assess the progress of the application of machine learning in the renal field and to explore research trends and hotspots in the field.MethodsA search was conducted using the Web of Science Core Collection database, which yielded articles and review articles published from the database's inception to May 12, 2024. The data extracted from these articles and review articles were then analyzed. A bibliometric and visualization analysis was conducted using the VOSviewer, CiteSpace, and Bibliometric (R-Tool of R-Studio) software.Results2,358 papers were retrieved and analyzed for this topic. From 2013 to 2024, the number of publications and the frequency of citations in the relevant research areas have exhibited a consistent and notable increase annually. The data set comprises 3734 institutions in 91 countries and territories, with 799 journals publishing the results. The total number of authors contributing to the data set is 14,396. China and the United States have the highest number of published papers, with 721 and 525 papers, respectively. Harvard University and the University of California System exert the most significant influence at the institutional level. Regarding authors, Cheungpasitporn, Wisit, and Thongprayoon Charat of the Mayo Clinic organization were the most prolific researchers, with 23 publications each. It is noteworthy that researcher Breiman I had the highest co-citation frequency. The journal with the most published papers was ""Scientific Reports,"" while ""PLoS One"" had the highest co-citation frequency. In this field of machine learning applied to renal medicine, the article ""A Clinically Applicable Approach to Continuous Prediction of Future Acute Kidney Injury"" by Tomasev N et al., published in NATURE in 2019, emerged as the most influential article with the highest co-citation frequency. A keyword and reference co-occurrence analysis reveals that current research trends and frontiers in nephrology are the management of patients with renal disease, prediction and diagnosis of renal disease, imaging of renal disease, and development of personalized treatment plans for patients with renal disease. ""Acute kidney injury,"" ""chronic kidney disease,"" and ""kidney tumors"" are the most discussed diseases in medical research.ConclusionsThe field of renal medicine is witnessing a surge in the application of machine learning. On one hand, this study offers a novel perspective on applying machine learning techniques to kidney-related diseases based on bibliometric analysis. This analysis provides a comprehensive overview of the current status and emerging research areas in the field, as well as future trends and frontiers. Conversely, this study furnishes data on collaboration and exchange between countries, regions, institutions, journals, authors, keywords, and reference co-citations. This information can facilitate the advancement of future research endeavors, which aim to enhance interdisciplinary collaboration, optimize data sharing and quality, and further advance the application of machine learning in the renal field.",article,0,,,"Li, Feng;Hu, ChangHao;Luo, Xu",,,,,,,International Urology and Nephrology,928,,SCOPUS,"Li Feng, 2024, International Urology and Nephrology",,"Li Feng, 2024, International Urology and Nephrology"
+2024,10,https://app.dimensions.ai/details/publication/pub.1181902209,The application of explainable artificial intelligence (XAI) in electronic health record research: A scoping review,20552076241272657,,,DIGITAL HEALTH,10.1177/20552076241272657,2024-01,"Caterson, Jessica;Lewin, Alexandra;Williamson, Elizabeth","Machine Learning (ML) and Deep Learning (DL) models show potential in surpassing traditional methods including generalised linear models for healthcare predictions, particularly with large, complex datasets. However, low interpretability hinders practical implementation. To address this, Explainable Artificial Intelligence (XAI) methods are proposed, but a comprehensive evaluation of their effectiveness is currently limited. The aim of this scoping review is to critically appraise the application of XAI methods in ML/DL models using Electronic Health Record (EHR) data. In accordance with PRISMA scoping review guidelines, the study searched PUBMED and OVID/MEDLINE (including EMBASE) for publications related to tabular EHR data that employed ML/DL models with XAI. Out of 3220 identified publications, 76 were included. The selected publications published between February 2017 and June 2023, demonstrated an exponential increase over time. Extreme Gradient Boosting and Random Forest models were the most frequently used ML/DL methods, with 51 and 50 publications, respectively. Among XAI methods, Shapley Additive Explanations (SHAP) was predominant in 63 out of 76 publications, followed by partial dependence plots (PDPs) in 11 publications, and Locally Interpretable Model-Agnostic Explanations (LIME) in 8 publications. Despite the growing adoption of XAI methods, their applications varied widely and lacked critical evaluation. This review identifies the increasing use of XAI in tabular EHR research and highlights a deficiency in the reporting of methods and a lack of critical appraisal of validity and robustness. The study emphasises the need for further evaluation of XAI methods and underscores the importance of cautious implementation and interpretation in healthcare settings.",article,0,,,"Caterson, Jessica;Lewin, Alexandra;Williamson, Elizabeth",,,,,,,DIGITAL HEALTH,,,SCOPUS,"Caterson Jessica, 2024, DIGITAL HEALTH",,"Caterson Jessica, 2024, DIGITAL HEALTH"
+2024,10,https://app.dimensions.ai/details/publication/pub.1181961070,Integrated bagging-RF learning model for diabetes diagnosis in middle-aged and elderly population,e2436,,,PeerJ Computer Science,10.7717/peerj-cs.2436,2024-10-31,"Shi, Yuanwu;Sun, Jiuye","As the population ages, the increase in the number of middle-aged and older adults with diabetes poses new challenges to the allocation of resources in the healthcare system. Developing accurate diabetes prediction models is a critical public health strategy to improve the efficient use of healthcare resources and ensure timely and effective treatment. In order to improve the identification of diabetes in middle-aged and older patients, a Bagging-RF model is proposed. In the study, two diabetes datasets on Kaggle were first preprocessed, including unique heat coding, outlier removal, and age screening, after which the data were categorized into three age groups, 50-60, 60-70, and 70-80, and balanced using the SMOTE technique. Then, the machine learning classifiers were trained using the Bagging-RF integrated model with eight other machine learning classifiers. Finally, the model's performance was evaluated by accuracy, F1 score, and other metrics. The results showed that the Bagging-RF model outperformed the other eight machine learning classifiers, exhibiting 97.35%, 95.55%, 95.14% accuracy and 97.35%, 97.35%, 95.14% F1 Score at the Diabetes Prediction Dataset for diabetes prediction for the three age groups of 50-60, 60-70, and 70-80; and 97.03%, 94.90%, 93.70% accuracy and 97.03%, 94.90%, 93.70% F1 Score at the Diabetes Prediction Dataset. 95.55%, 95.13% F1 Score; and 97.03%, 94.90%, 93.70% accuracy; and 97.03%, 94.89%, 93.70% F1 Score at Diabetes Prediction Dataset. In addition, while other integrated learning models, such as ET, RF, Adaboost, and XGB, fail to outperform Bagging-RF, they also show excellent performance.",article,0,,,"Shi, Yuanwu;Sun, Jiuye",,,,,,,PeerJ Computer Science,,,SCOPUS,"Shi Yuanwu, 2024, PeerJ Computer Science",,"Shi Yuanwu, 2024, PeerJ Computer Science"
+2024,183,https://app.dimensions.ai/details/publication/pub.1181964014,Transformative artificial intelligence in gastric cancer: Advancements in diagnostic techniques,109261,,,Computers in Biology and Medicine,10.1016/j.compbiomed.2024.109261,2024-11-01,"Khosravi, Mobina;Jasemi, Seyedeh Kimia;Hayati, Parsa;Javar, Hamid Akbari;Izadi, Saadat;Izadi, Zhila","Gastric cancer represents a significant global health challenge with elevated incidence and mortality rates, highlighting the need for advancements in diagnostic and therapeutic strategies. This review paper addresses the critical need for a thorough synthesis of the role of artificial intelligence (AI) in the management of gastric cancer. It provides an in-depth analysis of current AI applications, focusing on their contributions to early diagnosis, treatment planning, and outcome prediction. The review identifies key gaps and limitations in the existing literature by examining recent studies and technological developments. It aims to clarify the evolution of AI-driven methods and their impact on enhancing diagnostic accuracy, personalizing treatment strategies, and improving patient outcomes. The paper emphasizes the transformative potential of AI in overcoming the challenges associated with gastric cancer management and proposes future research directions to further harness AI's capabilities. Through this synthesis, the review underscores the importance of integrating AI technologies into clinical practice to revolutionize gastric cancer management.",article,0,,,"Khosravi, Mobina;Jasemi, Seyedeh Kimia;Hayati, Parsa;Javar, Hamid Akbari;Izadi, Saadat;Izadi, Zhila",,,,,,,Computers in Biology and Medicine,,,SCOPUS,"Khosravi Mobina, 2024, Computers in Biology and Medicine",,"Khosravi Mobina, 2024, Computers in Biology and Medicine"
+2024,19,https://app.dimensions.ai/details/publication/pub.1181973017,A novel meta learning based stacked approach for diagnosis of thyroid syndrome,e0312313,11,,PLOS ONE,10.1371/journal.pone.0312313,2024-11-01,"Abbas, Muhammad Asad;Munir, Kashif;Raza, Ali;Amjad, Madiha;Samee, Nagwan Abdel;Jamjoom, Mona M.;Ullah, Zahid","Thyroid syndrome, a complex endocrine disorder, involves the dysregulation of the thyroid gland, impacting vital physiological functions. Common causes include autoimmune disorders, iodine deficiency, and genetic predispositions. The effects of thyroid syndrome extend beyond the thyroid itself, affecting metabolism, energy levels, and overall well-being. Thyroid syndrome is associated with severe cases of thyroid dysfunction, highlighting the potentially life-threatening consequences of untreated or inadequately managed thyroid disorders. This research aims to propose an advanced meta-learning approach for the timely detection of Thyroid syndrome. We used a standard thyroid-balanced dataset containing 7,000 patient records to apply advanced machine-learning methods. We proposed a novel meta-learning model based on a unique stack of K-Neighbors (KN) and Random Forest (RF) models. Then, a meta-learning Logistic Regression (LR) model is built based on the collective experience of stacked models. For the first time, the novel proposed KRL (KN-RF-LR) method is employed for the effective diagnosis of Thyroid syndrome. Extensive research experiments illustrated that the novel proposed KRL outperformed state-of-the-art approaches, achieving an impressive performance accuracy of 98%. We vindicated the performance scores through k-fold cross-validation and enhanced performance using hyperparameter tuning. Our research revolutionized the timely detection of thyroid syndrome, contributing to the enhancement of human life by reducing thyroid mortality rates.",article,0,,,"Abbas, Muhammad Asad;Munir, Kashif;Raza, Ali;Amjad, Madiha;Samee, Nagwan Abdel;Jamjoom, Mona M.;Ullah, Zahid",,,,,,,PLOS ONE,,,SCOPUS,"Abbas Muhammad Asad, 2024, PLOS ONE",,"Abbas Muhammad Asad, 2024, PLOS ONE"
+2024,10,https://app.dimensions.ai/details/publication/pub.1182012178,Diagnosing epileptic seizures using combined features from independent components and prediction probability from EEG data,20552076241277185,,,DIGITAL HEALTH,10.1177/20552076241277185,2024-01,"Khalid, Madiha;Raza, Ali;Akhtar, Adnan;Rustam, Furqan;Ballester, Julien Brito;Rodriguez, Carmen Lili;de la Torre Díez, Isabel;Ashraf, Imran","Objective: Epileptic seizures are neurological events that pose significant risks of physical injuries characterized by sudden, abnormal bursts of electrical activity in the brain, often leading to loss of consciousness and uncontrolled movements. Early seizure detection is essential for timely treatments and better patient outcomes. To address this critical issue, there is a need for an advanced artificial intelligence approach for the early detection of epileptic seizure disorder.
+Methods: This study primarily focuses on designing a novel ensemble approach to perform early detection of epileptic seizure disease with high performance. A novel ensemble approach consisting of a fast, independent component analysis random forest (FIR) and prediction probability is proposed, which uses electroencephalography (EEG) data to investigate the efficacy of the proposed approach for early detection of epileptic seizures. The FIR model extracts independent components and class prediction probability features, creating a new feature set. The proposed model combined integrated component analysis (ICA) with predicting probability to enhance seizure recognition accuracy scores. Extensive experimental evaluations demonstrate that FIR assists machine learning models to obtain superior results compared to original features.
+Results: The research gap is addressed using combined features to improve the performance of epileptic seizure detection compared to a single feature set. In particular, the ensemble model FIR with support vector machine (FIR + SVM) outperforms other methods, achieving an accuracy of 98.4% for epileptic seizure detection.
+Conclusions: The proposed FIR has the potential for early diagnosis of epileptic seizures and can significantly help the medical industry with enhanced detection and timely interventions.",article,0,,,"Khalid, Madiha;Raza, Ali;Akhtar, Adnan;Rustam, Furqan;Ballester, Julien Brito;Rodriguez, Carmen Lili;de la Torre Díez, Isabel;Ashraf, Imran",,,,,,,DIGITAL HEALTH,,,SCOPUS,"Khalid Madiha, 2024, DIGITAL HEALTH",,"Khalid Madiha, 2024, DIGITAL HEALTH"
+2024,24,https://app.dimensions.ai/details/publication/pub.1182012311,Revolutionizing spinal interventions: a systematic review of artificial intelligence technology applications in contemporary surgery,345,1,,BMC Surgery,10.1186/s12893-024-02646-2,2024-11-05,"Han, Hao;Li, Ran;Fu, Dongming;Zhou, Hongyou;Zhan, Zihao;Wu, Yi’ang;Meng, Bin","Leveraging its ability to handle large and complex datasets, artificial intelligence can uncover subtle patterns and correlations that human observation may overlook. This is particularly valuable for understanding the intricate dynamics of spinal surgery and its multifaceted impacts on patient prognosis. This review aims to delineate the role of artificial intelligence in spinal surgery. A search of the PubMed database from 1992 to 2023 was conducted using relevant English publications related to the application of artificial intelligence in spinal surgery. The search strategy involved a combination of the following keywords: ""Artificial neural network,"" ""deep learning,"" ""artificial intelligence,"" ""spinal,"" ""musculoskeletal,"" ""lumbar,"" ""vertebra,"" ""disc,"" ""cervical,"" ""cord,"" ""stenosis,"" ""procedure,"" ""operation,"" ""surgery,"" ""preoperative,"" ""postoperative,"" and ""operative."" A total of 1,182 articles were retrieved. After a careful evaluation of abstracts, 90 articles were found to meet the inclusion criteria for this review. Our review highlights various applications of artificial neural networks in spinal disease management, including (1) assessing surgical indications, (2) assisting in surgical procedures, (3) preoperatively predicting surgical outcomes, and (4) estimating the occurrence of various surgical complications and adverse events. By utilizing these technologies, surgical outcomes can be improved, ultimately enhancing the quality of life for patients.",article,0,,,"Han, Hao;Li, Ran;Fu, Dongming;Zhou, Hongyou;Zhan, Zihao;Wu, Yi’ang;Meng, Bin",,,,,,,BMC Surgery,,,SCOPUS,"Han Hao, 2024, BMC Surgery",,"Han Hao, 2024, BMC Surgery"
+2024,44,https://app.dimensions.ai/details/publication/pub.1182021722,Machine-Learning Applications in Thrombosis and Hemostasis,459,06,,Hämostaseologie,10.1055/a-2407-7994,2024-11-05,"Nilius, Henning;Nagler, Michael","The use of machine-learning (ML) algorithms in medicine has sparked a heated discussion. It is considered one of the most disruptive general-purpose technologies in decades. It has already permeated many areas of our daily lives and produced applications that we can no longer do without, such as navigation apps or translation software. However, many people are still unsure if ML algorithms should be used in medicine in their current form. Doctors are doubtful to what extent they can trust the predictions of algorithms. Shortcomings in development and unclear regulatory oversight can lead to bias, inequality, applicability concerns, and nontransparent assessments. Past mistakes, however, have led to a better understanding of what is needed to develop effective models for clinical use. Physicians and clinical researchers must participate in all development phases and understand their pitfalls. In this review, we explain the basic concepts of ML, present examples in the field of thrombosis and hemostasis, discuss common pitfalls, and present a methodological framework that can be used to develop effective algorithms.",article,0,,,"Nilius, Henning;Nagler, Michael",,,,,,,Hämostaseologie,465,,SCOPUS,"Nilius Henning, 2024, Hämostaseologie",,"Nilius Henning, 2024, Hämostaseologie"
+2024,32,https://app.dimensions.ai/details/publication/pub.1182194239,Pneumonia detection on chest X-rays from Xception-based transfer learning and logistic regression,3847,6,,Technology and Health Care,10.3233/thc-230313,2024,"Mujahid, Muhammad;Rustam, Furqan;Chakrabarti, Prasun;Mallampati, Bhargav;de la Torre Diez, Isabel;Gali, Pradeep;Chunduri, Venkata;Ashraf, Imran","Pneumonia is a dangerous disease that kills millions of children and elderly patients worldwide every year. The detection of pneumonia from a chest x-ray is perpetrated by expert radiologists. The chest x-ray is cheaper and is most often used to diagnose pneumonia. However, chest x-ray-based diagnosis requires expert radiologists which is time-consuming and laborious. Moreover, COVID-19 and pneumonia have similar symptoms which leads to false positives. Machine learning-based solutions have been proposed for the automatic prediction of pneumonia from chest X-rays, however, such approaches lack robustness and high accuracy due to data imbalance and generalization errors. This study focuses on elevating the performance of machine learning models by dealing with data imbalanced problems using data augmentation. Contrary to traditional machine learning models that required hand-crafted features, this study uses transfer learning for automatic feature extraction using Xception and VGG-16 to train classifiers like support vector machine, logistic regression, K nearest neighbor, stochastic gradient descent, extra tree classifier, and gradient boosting machine. Experiments involve the use of hand-crafted features, as well as, transfer learning-based feature extraction for pneumonia detection. Performance comparison using Xception and VGG-16 features suggest that transfer learning-based features tend to show better performance than hand-crafted features and an accuracy of 99.23% can be obtained for pneumonia using chest X-rays.",article,0,,,"Mujahid, Muhammad;Rustam, Furqan;Chakrabarti, Prasun;Mallampati, Bhargav;de la Torre Diez, Isabel;Gali, Pradeep;Chunduri, Venkata;Ashraf, Imran",,,,,,,Technology and Health Care,3870,,SCOPUS,"Mujahid Muhammad, 2024, Technology and Health Care",,"Mujahid Muhammad, 2024, Technology and Health Care"
+2024,19,https://app.dimensions.ai/details/publication/pub.1182207543,Exploring machine learning algorithms in sickle cell disease patient data: A systematic review,e0313315,11,,PLOS ONE,10.1371/journal.pone.0313315,2024-11-11,"Machado, Tiago Fernandes;Neto, Francisco das Chagas Barros;de Souza Gonçalves, Marilda;Barbosa, Cynara Gomes;Barreto, Marcos Ennes","This systematic review explores the application of machine learning (ML) algorithms in sickle cell disease (SCD), focusing on diagnosis and several clinical characteristics, such as early detection of organ failure, identification of drug dosage, and classification of pain intensity. A comprehensive analysis of recent studies reveals promising results in using ML techniques for diagnosing and monitoring SCD. The review covers various ML algorithms, including Multilayer Perceptron, Support Vector Machine, Random Forest, Logistic Regression, Long short-term memory, Extreme Learning Machines, Convolutional Neural Networks, and Transfer Learning methods. Despite significant advances, challenges such as limited dataset sizes, interpretability concerns, and risks of overfitting are identified in studies. Future research directions entail addressing these limitations by harnessing larger and more representative datasets, enhancing model interpretability, and exploring advanced ML techniques like deep learning. Overall, this review underscores the transformative potential of ML in increasing the diagnosis, monitoring and define prognosis of sickle cell disease while also highlighting the need for further investigation in the field.",article,0,,,"Machado, Tiago Fernandes;Neto, Francisco das Chagas Barros;de Souza Gonçalves, Marilda;Barbosa, Cynara Gomes;Barreto, Marcos Ennes",,,,,,,PLOS ONE,,,SCOPUS,"Machado Tiago Fernandes, 2024, PLOS ONE",,"Machado Tiago Fernandes, 2024, PLOS ONE"
+2024,10,https://app.dimensions.ai/details/publication/pub.1182266919,Predictive analytics technique based on hybrid sampling to manage unbalanced data in smart cities,e39275,24,,Heliyon,10.1016/j.heliyon.2024.e39275,2024-11-12,"Chahal, Ayushi;Gulia, Preeti;Gill, Nasib Singh;Yahya, Mohammad;Haq, Mohd Anul;Aleisa, Mohammed;Alenizi, Abdullah;Khan, Arfat Ahmad;Shukla, Piyush Kumar","A smart city is deemed smart enough because it has the capability to make decisions on its own. Artificial intelligence needs a lot of data from the physical world to make correct decisions. IoT sensor devices collect data from the surroundings, which is further used for predictive analytics. Collected data may be balanced or imbalanced. Unbalanced data used for decision-making without any pre-processing may lead to ravaging results. This paper proposes a novel predictive analytical technique to manage unbalanced data. A pipeline is designed using Principal Component Analysis (PCA), a hybrid sampling method, and a Machine Learning (ML) prediction method. SMOTE + ENN, a hybrid data balancing method, is used to specify imbalanced data to a balanced state. ML method is applied to form clusters and make predictions over the dataset. A large Smart City IoT dataset having 4,05,184 records has been used in this study. The proposed technique is used to predict the presence of a person in the vicinity of IoT devices. Evaluation parameters such as accuracy, precision, recall, F1-score, and Area Under Curve (AUC)/Receiver Operating Characteristic (ROC) curve are used to evaluate the proposed approach. Accuracy, Precision, Recall, F1-score, and AUC obtained using the proposed technique for cluster 0 are 0.79, 1.0, 0.79, 0.87, and 0.88 and for cluster 1 are 0.86 0.99, 0.86, 0.92, and 0.92, respectively. In view of the encouraging results, the proposed technique may prove to be a good choice to help in decision-making in different application domains in real life.",article,0,,,"Chahal, Ayushi;Gulia, Preeti;Gill, Nasib Singh;Yahya, Mohammad;Haq, Mohd Anul;Aleisa, Mohammed;Alenizi, Abdullah;Khan, Arfat Ahmad;Shukla, Piyush Kumar",,,,,,,Heliyon,,,SCOPUS,"Chahal Ayushi, 2024, Heliyon",,"Chahal Ayushi, 2024, Heliyon"
+2024,30,https://app.dimensions.ai/details/publication/pub.1182398325,"Machine learning, healthcare resource allocation, and patient consent",206,3,,The New Bioethics,10.1080/20502877.2024.2416858,2024-07-02,"Webb, Jamie","The impact of machine learning in healthcare on patient informed consent is now the subject of significant inquiry in bioethics. However, the topic has predominantly been considered in the context of black box diagnostic or treatment recommendation algorithms. The impact of machine learning involved in healthcare resource allocation on patient consent remains undertheorized. This paper will establish where patient consent is relevant in healthcare resource allocation, before exploring the impact on informed consent from the introduction of black box machine learning into resource allocation. It will then consider the arguments for informing patients about the use of machine learning in resource allocation, before exploring the challenge of whether individual patients could principally contest algorithmic prioritization decisions involving black box machine learning. Finally, this paper will examine how different forms of opacity in machine learning involved in resource allocation could be a barrier to patient consent to clinical decision-making in different healthcare contexts.",article,0,,,"Webb, Jamie",,,,,,,The New Bioethics,227,,SCOPUS,"Webb Jamie, 2024, The New Bioethics",,"Webb Jamie, 2024, The New Bioethics"
+2024,10,https://app.dimensions.ai/details/publication/pub.1182437534,Machine learning models for predicting return to sports after anterior cruciate ligament reconstruction: Physical performance in early rehabilitation,20552076241299065,,,DIGITAL HEALTH,10.1177/20552076241299065,2024-09,"Hwang, Ui-jae;Kim, Jin-seong;Kim, Keong-yoon;Chung, Kyu-sung","Objective: Return to sports (RTS) after anterior cruciate ligament reconstruction (ACLR) is a crucial surgical success measure. In this study, we aimed to identify the best-performing machine learning models for predicting RTS at 12 months post-ACLR, based on physical performance variables at 3 months post-ACLR.
+Methods: This case-control study included 102 patients who had undergone ACLR. The physical performance variables measured 3 months post-ACLR included the Biodex balance system, Y-balance test, and isokinetic muscle strength test. The RTS outcomes measured at 12 months post-ACLR included the single-leg hop test, single-leg vertical jump test, and Tegner activity score. Six machine learning algorithms were trained and validated using these data.
+Results: Random forest models in the test set best predicted the RTS success based on the single-leg hop test (area under the curve [AUC], 0.952) and Tegner activity score (AUC, 0.949). Gradient boosting models in the test set best predicted the RTS based on the single-leg vertical jump test (AUC, 0.868).
+Conclusion: Modifiable factors should be considered in the early rehabilitation stage after ACLR to enhance the possibility of a successful RTS.",article,0,,,"Hwang, Ui-jae;Kim, Jin-seong;Kim, Keong-yoon;Chung, Kyu-sung",,,,,,,DIGITAL HEALTH,,,SCOPUS,"Hwang Ui-jae, 2024, DIGITAL HEALTH",,"Hwang Ui-jae, 2024, DIGITAL HEALTH"
+2024,57,https://app.dimensions.ai/details/publication/pub.1182473677,"Machine learning approaches for predicting and diagnosing chronic kidney disease: current trends, challenges, solutions, and future directions",1245,4,,International Urology and Nephrology,10.1007/s11255-024-04281-5,2024-11-19,"Gogoi, Prokash;Valan, J. Arul","Chronic Kidney Disease (CKD) represents a significant global health challenge, contributing to increased morbidity and mortality rates. This review paper explores the current landscape of machine learning (ML) techniques employed in CKD prediction and diagnosis, highlighting recent trends, inherent challenges, innovative solutions, and future directions. Through an extensive literature survey, we identified key limitations and challenges, including the use of small datasets, the absence of stage-specific predictions, insufficient focus on model interpretability, and a lack of discussions on safeguarding patient privacy in managing sensitive CKD data. We considered these limitations and challenges as research gaps, and this review paper aims to address them. We emphasize the potential of Generative AI to augment dataset sizes, thereby enhancing model performance and reliability. To address the lack of stage-specific predictions, we highlight the need for effective multi-class models to accurately predict CKD stages, enabling tailored treatments and improved patient outcomes. Furthermore, we discuss the critical importance of model interpretability, utilizing methods such as SHAP (SHapley Additive exPlanations) and LIME (Local Interpretable Model-agnostic Explanations) to ensure transparency and trust among healthcare professionals. Privacy concerns surrounding sensitive patient data are also addressed. We present innovative privacy-preserving solutions using technologies, such as homomorphic encryption, federated learning, and blockchain. These solutions facilitate collaboration across institutions while maintaining patient confidentiality and addressing challenges related to limited generalizability and reproducibility in CKD prediction. This review informs healthcare professionals and researchers about advancements in ML for CKD prediction, to improve patient outcomes and address research gaps.",article,0,,,"Gogoi, Prokash;Valan, J. Arul",,,,,,,International Urology and Nephrology,1268,,SCOPUS,"Gogoi Prokash, 2024, International Urology and Nephrology",,"Gogoi Prokash, 2024, International Urology and Nephrology"
+2024,27,https://app.dimensions.ai/details/publication/pub.1182473729,Machine learning outperforms the Canadian Triage and Acuity Scale (CTAS) in predicting need for early critical care,43,1,,Canadian Journal of Emergency Medicine,10.1007/s43678-024-00807-z,2024-11-19,"Grant, Lars;Diagne, Magueye;Aroutiunian, Rafael;Hopkins, Devin;Bai, Tian;Kondrup, Flemming;Clark, Gregory","Study objectiveThis study investigates the potential to improve emergency department (ED) triage using machine learning models by comparing their predictive performance with the Canadian Triage Acuity Scale (CTAS) in identifying the need for critical care within 12 h of ED arrival.MethodsThree machine learning models (LASSO regression, gradient-boosted trees, and a deep learning model with embeddings) were developed using retrospective data from 670,841 ED visits to the Jewish General Hospital from June 2012 to Jan 2021. The model outcome was the need for critical care within the first 12 h of ED arrival. Metrics, including the areas under the receiver-operator characteristic curve (ROC) and precision-recall curve (PRC) were used for performance evaluation. Shapley additive explanation scores were used to compare predictor importance.ResultsThe three machine learning models (deep learning, gradient-boosted trees and LASSO regression) had areas under the ROC of 0.926 ± 0.003, 0.912 ± 0.003 and 0.892 ± 0.004 respectively, and areas under the PRC of 0.27 ± 0.01, 0.24 ± 0.01 and 0.23 ± 0.01 respectively. In comparison, the CTAS score had an area under the ROC of 0.804 ± 0.006 and under the PRC of 0.11 ± 0.01. The predictors of most importance were similar between the models.ConclusionsMachine learning models outperformed CTAS in identifying, at the point of ED triage, patients likely to need early critical care. If validated in future studies, machine learning models such as the ones developed here may be considered for incorporation in future revisions of the CTAS triage algorithm, potentially improving discrimination and reliability.",article,0,,,"Grant, Lars;Diagne, Magueye;Aroutiunian, Rafael;Hopkins, Devin;Bai, Tian;Kondrup, Flemming;Clark, Gregory",,,,,,,Canadian Journal of Emergency Medicine,52,,SCOPUS,"Grant Lars, 2024, Canadian Journal of Emergency Medicine",,"Grant Lars, 2024, Canadian Journal of Emergency Medicine"
+2024,14,https://app.dimensions.ai/details/publication/pub.1182484741,Machine Learning-Based Software for Predicting Pseudomonas spp. Growth Dynamics in Culture Media,1490,11,,Life,10.3390/life14111490,2024-11-15,"Tarlak, Fatih","In predictive microbiology, both primary and secondary models are widely used to estimate microbial growth, often applied through two-step or one-step modelling approaches. This study focused on developing a tool to predict the growth of Pseudomonas spp., a prominent bacterial genus in food spoilage, by applying machine learning regression models, including Support Vector Regression (SVR), Random Forest Regression (RFR) and Gaussian Process Regression (GPR). The key environmental factors-temperature, water activity, and pH-served as predictor variables to model the growth of Pseudomonas spp. in culture media. To assess model performance, these machine learning approaches were compared with traditional models, namely the Gompertz, Logistic, Baranyi, and Huang models, using statistical indicators such as the adjusted coefficient of determination (R2adj) and root mean square error (RMSE). Machine learning models provided superior accuracy over traditional approaches, with R2adj values from 0.834 to 0.959 and RMSE values between 0.005 and 0.010, showcasing their ability to handle complex growth patterns more effectively. GPR emerged as the most accurate model for both training and testing datasets. In external validation, additional statistical indices (bias factor, Bf: 0.998 to 1.047; accuracy factor, Af: 1.100 to 1.167) further supported GPR as a reliable alternative for microbial growth prediction. This machine learning-driven approach bypasses the need for the secondary modelling step required in traditional methods, highlighting its potential as a robust tool in predictive microbiology.",article,0,,,"Tarlak, Fatih",,,,,,,Life,,,SCOPUS,"Tarlak Fatih, 2024, Life",,"Tarlak Fatih, 2024, Life"
+2024,16,https://app.dimensions.ai/details/publication/pub.1182492713,"Predictive Analytics in Heart Failure Risk, Readmission, and Mortality Prediction: A Review",e73876,11,,Cureus,10.7759/cureus.73876,2024-11-17,"Hidayaturrohman, Qisthi A;Hanada, Eisuke","Heart failure is a leading cause of death among people worldwide. The cost of treatment can be prohibitive, and early prediction of heart failure would reduce treatment costs to patients and hospitals. Improved readmission prediction would also greatly help hospitals, allowing them to manage their treatment programs and budgets better. This literature review aims to summarize recent studies of predictive analytics models that have been constructed to predict heart failure risk, readmission, and mortality. Random forest, logistic regression, neural networks, and XGBoost were among the most common modeling techniques applied. Most selected studies leveraged structured electronic health record data, including demographics, clinical values, lifestyle, and comorbidities, with some incorporating unstructured clinical notes. Preprocessing through imputation and feature selection were frequently employed in building the predictive analytics models. The reviewed studies exhibit demonstrated promise for predictive analytics in improving early heart failure diagnosis, readmission risk stratification, and mortality prediction. This review study highlights rising research activities and the potential of predictive analytics, especially the implementation of machine learning, in advancing heart failure outcomes. Further rigorous, comprehensive syntheses and head-to-head benchmarking of predictive models are needed to derive robust evidence for clinical adoption.",article,0,,,"Hidayaturrohman, Qisthi A;Hanada, Eisuke",,,,,,,Cureus,,,SCOPUS,"Hidayaturrohman Qisthi A, 2024, Cureus",,"Hidayaturrohman Qisthi A, 2024, Cureus"
+2024,33,https://app.dimensions.ai/details/publication/pub.1182524824,Predicting Progression to Dementia Using Auditory Verbal Learning Test in Community-Dwelling Older Adults Based On Machine Learning,487,5,,The American Journal of Geriatric Psychiatry,10.1016/j.jagp.2024.10.016,2024-11-19,"Xie, Xin-Yan;Huang, Lin-Ya;Liu, Dan;Cheng, Gui-Rong;Hu, Fei-Fei;Zhou, Juan;Zhang, Jing-Jing;Han, Gang-Bin;Geng, Jing-Wen;Liu, Xiao-Chang;Wang, Jun-Yi;Zeng, De-Yang;Liu, Jing;Nie, Qian-Qian;Song, Dan;Li, Shi-Yue;Cai, Cheng;Cui, Yu-Yang;Xu, Lang;Ou, Yang-Ming;Chen, Xing-Xing;Zhou, Yan-Ling;Chen, Yu-Shan;Li, Jin-Quan;Wei, Zhen;Wu, Qiong;Mei, Yu-Fei;Song, Shao-Jun;Tan, Wei;Zhao, Qian-Hua;Ding, Ding;Zeng, Yan","BACKGROUND: Primary healthcare institutions find identifying individuals with dementia particularly challenging. This study aimed to develop machine learning models for identifying predictive features of older adults with normal cognition to develop dementia.
+METHODS: We developed four machine learning models: logistic regression, decision tree, random forest, and gradient-boosted trees, predicting dementia of 1,162 older adults with normal cognition at baseline from the Hubei Memory and Aging Cohort Study. All relevant variables collected were included in the models. The Shanghai Aging Study was selected as a replication cohort (n = 1,370) to validate the performance of models including the key features after a wrapper feature selection technique. Both cohorts adopted comparable diagnostic criteria for dementia to most previous cohort studies.
+RESULTS: The random forest model exhibited slightly better predictive power using a series of auditory verbal learning test, education, and follow-up time, as measured by overall accuracy (93%) and an area under the curve (AUC) (mean [standard error]: 088 [0.07]). When assessed in the external validation cohort, its performance was deemed acceptable with an AUC of 0.81 (0.15). Conversely, the logistic regression model showed better results in the external validation set, attaining an AUC of 0.88 (0.20).
+CONCLUSION: Our machine learning framework offers a viable strategy for predicting dementia using only memory tests in primary healthcare settings. This model can track cognitive changes and provide valuable insights for early intervention.",article,0,,,"Xie, Xin-Yan;Huang, Lin-Ya;Liu, Dan;Cheng, Gui-Rong;Hu, Fei-Fei;Zhou, Juan;Zhang, Jing-Jing;Han, Gang-Bin;Geng, Jing-Wen;Liu, Xiao-Chang;Wang, Jun-Yi;Zeng, De-Yang;Liu, Jing;Nie, Qian-Qian;Song, Dan;Li, Shi-Yue;Cai, Cheng;Cui, Yu-Yang;Xu, Lang;Ou, Yang-Ming;Chen, Xing-Xing;Zhou, Yan-Ling;Chen, Yu-Shan;Li, Jin-Quan;Wei, Zhen;Wu, Qiong;Mei, Yu-Fei;Song, Shao-Jun;Tan, Wei;Zhao, Qian-Hua;Ding, Ding;Zeng, Yan",,,,,,,The American Journal of Geriatric Psychiatry,499,,SCOPUS,"Xie Xin-Yan, 2024, The American Journal of Geriatric Psychiatry",,"Xie Xin-Yan, 2024, The American Journal of Geriatric Psychiatry"
+2024,64,https://app.dimensions.ai/details/publication/pub.1182615826,The Application of Machine Learning in Doping Detection,8673,23,,Journal of Chemical Information and Modeling,10.1021/acs.jcim.4c01234,2024-11-22,"Yang, Qingqing;Xu, Wennuo;Sun, Xiaodong;Chen, Qin;Niu, Bing","Detecting doping agents in sports poses a significant challenge due to the continuous emergence of new prohibited substances and methods. Traditional detection methods primarily rely on targeted analysis, which is often labor-intensive and is susceptible to errors. In response, machine learning offers a transformative approach to enhancing doping screening and detection. With its powerful data analysis capabilities, machine learning enables the rapid identification of patterns and features in complex compound data, increasing both the efficiency and the accuracy of detection. Moreover, when integrated with nontargeted metabolomics, machine learning can predict unknown metabolites, aiding the discovery of long-lasting biomarkers of doping. It also excels in classifying novel compounds, thereby reducing false-negative rates. As instrumental analysis and machine learning technologies continue to advance, the development of rapid, scalable, and highly efficient doping detection methods becomes increasingly feasible, supporting the pursuit of fairness and integrity in sports competitions.",article,0,,,"Yang, Qingqing;Xu, Wennuo;Sun, Xiaodong;Chen, Qin;Niu, Bing",,,,,,,Journal of Chemical Information and Modeling,8683,,SCOPUS,"Yang Qingqing, 2024, Journal of Chemical Information and Modeling",,"Yang Qingqing, 2024, Journal of Chemical Information and Modeling"
+2024,47,https://app.dimensions.ai/details/publication/pub.1182752238,Prediction of Vancomycin-Associated Nephrotoxicity Based on the Area under the Concentration–Time Curve of Vancomycin: A Machine Learning Analysis,1946,11,,Biological and Pharmaceutical Bulletin,10.1248/bpb.b24-00506,2024-11-27,"Mizuno, Shotaro;Noda, Tsubura;Mogushi, Kaoru;Hase, Takeshi;Iida, Yoritsugu;Takeuchi, Katsuyuki;Ishiwata, Yasuyoshi;Uchida, Shinichi;Nagata, Masashi","Several machine learning models have been proposed to predict vancomycin (VCM)-associated nephrotoxicity; however, they have notable limitations. Specifically, they do not use the area under the concentration-time curve (AUC) as recommended in the latest guidelines and do not address imbalanced data. Thus, we aimed to develop a novel model for predicting VCM-associated nephrotoxicity while overcoming these limitations. We retrospectively analyzed the medical records of patients who received VCM intravenously at our hospital from August 2017 to July 2021. We developed machine learning models for predicting VCM-associated nephrotoxicity based on the AUC of VCM and other patient background factors by using the following machine learning algorithms: lasso regression, support vector machine, complement naïve Bayes classifier, decision tree, random forest, and AdaBoost. We utilized the synthetic minority oversampling technique (SMOTE) and class weighting technique for dealing with imbalanced data and compared the performance of our developed machine learning models with that of a conventional model (AUC-guided therapeutic drug monitoring (TDM); AUC at steady state ≤600 µg·h/mL). Data from 270 patients were analyzed. The random forest with SMOTE was the best-performing model, achieving an F1 score of 0.353 and a sensitivity of 0.632 on the test data, compared with the conventional model, with an F1 score of 0.286 and a sensitivity of 0.316. We developed the first machine learning model for predicting VCM-associated nephrotoxicity based on the AUC of VCM, reducing the number of overlooked cases of nephrotoxicity compared with AUC-guided TDM, which may benefit patients overlooked by AUC-guided TDM.",article,0,,,"Mizuno, Shotaro;Noda, Tsubura;Mogushi, Kaoru;Hase, Takeshi;Iida, Yoritsugu;Takeuchi, Katsuyuki;Ishiwata, Yasuyoshi;Uchida, Shinichi;Nagata, Masashi",,,,,,,Biological and Pharmaceutical Bulletin,1952,,SCOPUS,"Mizuno Shotaro, 2024, Biological and Pharmaceutical Bulletin",,"Mizuno Shotaro, 2024, Biological and Pharmaceutical Bulletin"
+2024,41,https://app.dimensions.ai/details/publication/pub.1182799214,Machine learning applications for thermochemical and kinetic property prediction,419,4,,Reviews in Chemical Engineering,10.1515/revce-2024-0027,2024-11-29,"Tomme, Lowie;Ureel, Yannick;Dobbelaere, Maarten R.;Lengyel, István;Vermeire, Florence H.;Stevens, Christian V.;Van Geem, Kevin M.","Detailed kinetic models play a crucial role in comprehending and enhancing chemical processes. A cornerstone of these models is accurate thermodynamic and kinetic properties, ensuring fundamental insights into the processes they describe. The prediction of these thermochemical and kinetic properties presents an opportunity for machine learning, given the challenges associated with their experimental or quantum chemical determination. This study reviews recent advancements in predicting thermochemical and kinetic properties for gas-phase, liquid-phase, and catalytic processes within kinetic modeling. We assess the state-of-the-art of machine learning in property prediction, focusing on three core aspects: data, representation, and model. Moreover, emphasis is placed on machine learning techniques to efficiently utilize available data, thereby enhancing model performance. Finally, we pinpoint the lack of high-quality data as a key obstacle in applying machine learning to detailed kinetic models. Accordingly, the generation of large new datasets and further development of data-efficient machine learning techniques are identified as pivotal steps in advancing machine learning's role in kinetic modeling.",article,0,,,"Tomme, Lowie;Ureel, Yannick;Dobbelaere, Maarten R.;Lengyel, István;Vermeire, Florence H.;Stevens, Christian V.;Van Geem, Kevin M.",,,,,,,Reviews in Chemical Engineering,449,,SCOPUS,"Tomme Lowie, 2024, Reviews in Chemical Engineering",,"Tomme Lowie, 2024, Reviews in Chemical Engineering"
+2024,10,https://app.dimensions.ai/details/publication/pub.1182867803,A simplified approach for efficiency analysis of machine learning algorithms,e2418,,,PeerJ Computer Science,10.7717/peerj-cs.2418,2024-11-28,"Sivakumar, Muthuramalingam;Parthasarathy, Sudhaman;Padmapriya, Thiyagarajan","The efficiency of machine learning (ML) algorithms plays a critical role in their deployment across various applications, particularly those with resource constraints or real-time requirements. This article presents a comprehensive framework for evaluating ML algorithm efficiency by incorporating metrics, such as training time, prediction time, memory usage, and computational resource utilization. The proposed methodology involves a multistep process: collecting raw metrics, normalizing them, applying the Analytic Hierarchy Process (AHP) to determine weights, and computing a composite efficiency score. We applied this framework to two distinct datasets: medical image data and agricultural crop prediction data. The results demonstrate that our approach effectively differentiates algorithm performance based on the specific demands of each application. For medical image analysis, the framework highlights strengths in robustness and adaptability, whereas for agricultural crop prediction, it emphasizes scalability and resource management. This study provides valuable insights into optimizing ML algorithms, and offers a versatile tool for practitioners to assess and enhance algorithmic efficiency across diverse domains.",article,0,,,"Sivakumar, Muthuramalingam;Parthasarathy, Sudhaman;Padmapriya, Thiyagarajan",,,,,,,PeerJ Computer Science,,,SCOPUS,"Sivakumar Muthuramalingam, 2024, PeerJ Computer Science",,"Sivakumar Muthuramalingam, 2024, PeerJ Computer Science"
+2024,124,https://app.dimensions.ai/details/publication/pub.1182879437,Reevaluating feature importances in machine learning models for schizophrenia and bipolar disorder: The need for true associations,123,,,"Brain, Behavior, and Immunity",10.1016/j.bbi.2024.11.036,2024-11-29,"Takefuji, Yoshiyasu","Skorobogatov et al. developed supervised machine learning models to predict diagnoses and illness states in schizophrenia and bipolar disorder. However, their reliance on bootstrap forests and generalized regressions introduces significant biases in feature importance assessments. This paper highlights the critical distinction between feature importances generated by machine learning and actual associations, which are often model-specific and context-dependent. We underscore the limitations of biased feature importances and advocate for the use of robust statistical methods, such as Chi-squared tests and Spearman's correlation, to reveal true associations. Reassessing findings with these methods will enable more accurate interpretations and reinforce the importance of understanding the limitations inherent in machine learning methodologies.",article,0,,,"Takefuji, Yoshiyasu",,,,,,,"Brain, Behavior, and Immunity",124,,SCOPUS,"Takefuji Yoshiyasu, 2024, Brain, Behavior, and Immunity",,"Takefuji Yoshiyasu, 2024, Brain, Behavior, and Immunity"
+2024,10,https://app.dimensions.ai/details/publication/pub.1182882723,"Crop yield prediction in agriculture: A comprehensive review of machine learning and deep learning approaches, with insights for future research and sustainability",e40836,24,,Heliyon,10.1016/j.heliyon.2024.e40836,2024-11-29,"Jabed, Md Abu;Azmi Murad, Masrah Azrifah","The agriculture sector is confronted with numerous challenges in the quest for accurate crop yield estimation, which is essential for efficient resource management and mitigating food scarcity in a rapidly growing global population. This research paper delves into the application of advanced Artificial Intelligence (AI) techniques to enhance crop yield estimation in the context of diverse agricultural challenges. Through a systematic literature review and analysis of relevant studies, this paper explores the role of AI methods, such as Machine Learning (ML) and Deep Learning (DL), in addressing the complexities posed by geographical variations, crop diversity, and cultivation areas. The review identifies a wealth of AI-powered solutions employed in crop yield prediction, emphasizing the importance of precise environmental and agricultural data. Key factors contributing to accurate estimation include temperature, rainfall, soil type, humidity, and various vegetation indices, such as NDVI, EVI, LAI, and NDWI. The research paper also examines the algorithms frequently utilized in the machine learning domain, including Random Forest (RF), Artificial Neural Networks (ANN), and Support Vector Machine (SVM). In the realm of deep learning, Convolutional Neural Networks (CNN), Long-Short Term Memory (LSTM), and Deep Neural Networks (DNN) emerge as promising candidates. The findings of this study shed light on the transformative potential of advanced AI techniques in improving crop yield estimation accuracy, ultimately enhancing agricultural planning and resource management. By addressing the challenges posed by geographical diversity, crop heterogeneity, and changing environmental conditions, AI-driven models offer new avenues for sustainable agriculture in an ever-evolving world. This research paper provides valuable insights and directions for future studies, highlighting the critical role of AI in ensuring food security and sustainability in agriculture.",article,0,,,"Jabed, Md Abu;Azmi Murad, Masrah Azrifah",,,,,,,Heliyon,,,SCOPUS,"Jabed Md Abu, 2024, Heliyon",,"Jabed Md Abu, 2024, Heliyon"
+2024,14,https://app.dimensions.ai/details/publication/pub.1182895378,Classifying Dry Eye Disease Patients from Healthy Controls Using Machine Learning and Metabolomics Data,2696,23,,Diagnostics,10.3390/diagnostics14232696,2024-11-29,"Sheshkal, Sajad Amouei;Gundersen, Morten;Riegler, Michael Alexander;Utheim, Øygunn Aass;Gundersen, Kjell Gunnar;Rootwelt, Helge;Elgstøen, Katja Benedikte Prestø;Hammer, Hugo Lewi","Background: Dry eye disease is a common disorder of the ocular surface, leading patients to seek eye care. Clinical signs and symptoms are currently used to diagnose dry eye disease. Metabolomics, a method for analyzing biological systems, has been found helpful in identifying distinct metabolites in patients and in detecting metabolic profiles that may indicate dry eye disease at early stages. In this study, we explored the use of machine learning and metabolomics data to identify cataract patients who suffer from dry eye disease, a topic that, to our knowledge, has not been previously explored. As there is no one-size-fits-all machine learning model for metabolomics data, choosing the most suitable model can significantly affect the quality of predictions and subsequent metabolomics analyses. Methods: To address this challenge, we conducted a comparative analysis of eight machine learning models on two metabolomics data sets from cataract patients with and without dry eye disease. The models were evaluated and optimized using nested k-fold cross-validation. To assess the performance of these models, we selected a set of suitable evaluation metrics tailored to the data set's challenges. Results: The logistic regression model overall performed the best, achieving the highest area under the curve score of 0.8378, balanced accuracy of 0.735, Matthew's correlation coefficient of 0.5147, an F1-score of 0.8513, and a specificity of 0.5667. Additionally, following the logistic regression, the XGBoost and Random Forest models also demonstrated good performance. Conclusions: The results show that the logistic regression model with L2 regularization can outperform more complex models on an imbalanced data set with a small sample size and a high number of features, while also avoiding overfitting and delivering consistent performance across cross-validation folds. Additionally, the results demonstrate that it is possible to identify dry eye in cataract patients from tear film metabolomics data using machine learning models.",article,0,,,"Sheshkal, Sajad Amouei;Gundersen, Morten;Riegler, Michael Alexander;Utheim, Øygunn Aass;Gundersen, Kjell Gunnar;Rootwelt, Helge;Elgstøen, Katja Benedikte Prestø;Hammer, Hugo Lewi",,,,,,,Diagnostics,,,SCOPUS,"Sheshkal Sajad Amouei, 2024, Diagnostics",,"Sheshkal Sajad Amouei, 2024, Diagnostics"
+2024,19,https://app.dimensions.ai/details/publication/pub.1182916188,A Genetic algorithm aided hyper parameter optimization based ensemble model for respiratory disease prediction with Explainable AI,e0308015,12,,PLOS ONE,10.1371/journal.pone.0308015,2024-12-02,"Kaur, Balraj Preet;Singh, Harpreet;Hans, Rahul;Sharma, Sanjeev Kumar;Sharma, Chetna;Hassan, Mehedi","In the current era, a lot of research is being done in the domain of disease diagnosis using machine learning. In recent times, one of the deadliest respiratory diseases, COVID-19, which causes serious damage to the lungs has claimed a lot of lives globally. Machine learning-based systems can assist clinicians in the early diagnosis of the disease, which can reduce the deadly effects of the disease. For the successful deployment of these machine learning-based systems, hyperparameter-based optimization and feature selection are important issues. Motivated by the above, in this proposal, we design an improved model to predict the existence of respiratory disease among patients by incorporating hyperparameter optimization and feature selection. To optimize the parameters of the machine learning algorithms, hyperparameter optimization with a genetic algorithm is proposed and to reduce the size of the feature set, feature selection is performed using binary grey wolf optimization algorithm. Moreover, to enhance the efficacy of the predictions made by hyperparameter-optimized machine learning models, an ensemble model is proposed using a stacking classifier. Also, explainable AI was incorporated to define the feature importance by making use of Shapely adaptive explanations (SHAP) values. For the experimentation, the publicly accessible Mexico clinical dataset of COVID-19 was used. The results obtained show that the proposed model has superior prediction accuracy in comparison to its counterparts. Moreover, among all the hyperparameter-optimized algorithms, adaboost algorithm outperformed all the other hyperparameter-optimized algorithms. The various performance assessment metrics, including accuracy, precision, recall, AUC, and F1-score, were used to assess the results.",article,0,,,"Kaur, Balraj Preet;Singh, Harpreet;Hans, Rahul;Sharma, Sanjeev Kumar;Sharma, Chetna;Hassan, Mehedi",,,,,,,PLOS ONE,,,SCOPUS,"Kaur Balraj Preet, 2024, PLOS ONE",,"Kaur Balraj Preet, 2024, PLOS ONE"
+2024,58,https://app.dimensions.ai/details/publication/pub.1183005071,Emulating Wildfire Plume Injection Using Machine Learning Trained by Large Eddy Simulation (LES),22204,50,,Environmental Science & Technology,10.1021/acs.est.4c05095,2024-12-03,"Wang, Siyuan","Wildfires have a major influence on the Earth system, with costly impacts on society. Despite decades of research, wildfires are still challenging to represent in air quality and chemistry-climate models. Wildfire plume rise (injection) is one of those poorly resolved processes and is also a major source of uncertainty in evaluating the wildfire impacts on air quality. Studies have shown that current plume rise models are subject to large uncertainties, including the Freitas Scheme, a widely used 1-dimensional, cloud-resolving subgrid model. In this work, a new machine learning-based plume rise emulator is presented, trained using a high-resolution, turbulence-resolving large eddy simulation (LES) model coupled with microphysics. The preliminary results show that this machine learning emulator outperforms the benchmark model, the Freitas scheme, in both accuracy and computational efficiency. Furthermore, a bagging ensemble is built to further increase the robustness and to battle internal variability. Efforts have been made to ensure that the machine learning emulator is robust, transparent, and not overtrained, and the results are interpretable and physically sound. Overall, this Plume Rise Emulating System using Machine Learning (PRESML) is a promising solution for regional and global air quality and chemistry-climate models.",article,0,,,"Wang, Siyuan",,,,,,,Environmental Science & Technology,22212,,SCOPUS,"Wang Siyuan, 2024, Environmental Science & Technology",,"Wang Siyuan, 2024, Environmental Science & Technology"
+2024,19,https://app.dimensions.ai/details/publication/pub.1183048944,Classification of glucose-level in deionized water using machine learning models and data pre-processing technique,e0311482,12,,PLOS ONE,10.1371/journal.pone.0311482,2024-12-05,"Quang, Tri Ngo;Thanh, Tung Nguyen;Le Anh, Duc;Viet, Huong Pham Thi;Cong, Doanh Sai","Accurate monitoring of glucose levels is essential in the field of diabetes detection and prevention to ensure appropriate treatment planning. Conventional blood glucose monitoring methods, although widely used, are intrusive and frequently result in discomfort. This study investigates the use of Raman spectroscopy as a non-invasive method for estimating glucose concentrations. Our proposition entails employing machine learning models to categorize glucose levels by utilizing Raman spectrum data. The collection consists of deionized water samples containing glucose with defined amounts, guaranteeing great purity and little interference. We assess the efficacy of three machine learning models in categorizing glucose levels which including Extra Trees, Random Forest, and Support Vector Machine (SVM). In addition, we employ data pre-processing techniques such as fluorescence background removal and hotspot series extraction to improve the performance of the model. The primary results demonstrate that the utilization of these pre-processing techniques greatly enhances the accuracy of classification. Among these techniques, the Extra Trees model achieves the highest accuracy, reaching 95%. This study showcases the viability of employing machine learning techniques to forecast glucose levels based on Raman spectroscopy data. Additionally, it emphasizes the significance of data pre-processing in enhancing the accuracy of the model's results.",article,0,,,"Quang, Tri Ngo;Thanh, Tung Nguyen;Le Anh, Duc;Viet, Huong Pham Thi;Cong, Doanh Sai",,,,,,,PLOS ONE,,,SCOPUS,"Quang Tri Ngo, 2024, PLOS ONE",,"Quang Tri Ngo, 2024, PLOS ONE"
+2024,54,https://app.dimensions.ai/details/publication/pub.1183105535,Development of criteria to optimize manual smear review of automated complete blood counts using a machine learning model,s95,Suppl 2,,Veterinary Clinical Pathology,10.1111/vcp.13400,2024-12-05,"Hayes, Jennifer M.;Hayes, Mitchell R.;Friedrichs, Kristen R.;Simmons, Heather A.","BACKGROUND: Manual blood smear review (MSR) to complement automated CBC results is a labor-intensive process. Efforts have been made to use criteria based on automated hematology analyzer data to identify samples warranting MSR. These efforts have coincided with the emergence of modern data science and machine learning.
+OBJECTIVE: In this study, we aim to determine if machine learning can reduce manual smear review (MSR) rates while meeting or exceeding the performance of traditional MSR criteria.
+METHOD: 9938 automated CBCs with paired MSRs were performed on samples from rhesus and cynomolgus macaques. The definition of a positive (abnormal) smear was determined. Two expert-derived MSR criteria were created: criteria adapted from published, standardized human laboratory criteria (Adapted International Consensus Guidelines[aICG]) and internally generated criteria (Center Consensus Guidelines [CCG]). An ensemble machine learning model was trained on an independent subset of the data to optimize the balanced accuracy of classification, a combined measure of sensitivity and specificity. The resulting machine learning model and the two expert-derived MSR criteria were applied to a test dataset, and their performance compared.
+RESULTS: aICG criteria demonstrated high sensitivity (80.8%) and MSR rate (74.2%) while CCG criteria demonstrated lower sensitivity (57.1%) and MSR rate (36.1%). The machine learning model integrated with CCG criteria had a superior combination of both sensitivity (76.8%) and MSR rate (45.1%) achieving a false negative rate of 1.6%.
+CONCLUSION: Machine learning in combination with expert-derived criteria can optimize the selection of samples for MSR thus decreasing MSR rates and labor efforts required for CBC performance.",article,0,,,"Hayes, Jennifer M.;Hayes, Mitchell R.;Friedrichs, Kristen R.;Simmons, Heather A.",,,,,,,Veterinary Clinical Pathology,s104,,SCOPUS,"Hayes Jennifer M., 2024, Veterinary Clinical Pathology",,"Hayes Jennifer M., 2024, Veterinary Clinical Pathology"
+2024,18,https://app.dimensions.ai/details/publication/pub.1183170752,Applications of and issues with machine learning in medicine: Bridging the gap with explainable AI,497,6,,BioScience Trends,10.5582/bst.2024.01342,2024-12-08,"Karako, Kenji;Tang, Wei","In recent years, machine learning, and particularly deep learning, has shown remarkable potential in various fields, including medicine. Advanced techniques like convolutional neural networks and transformers have enabled high-performance predictions for complex problems, making machine learning a valuable tool in medical decision-making. From predicting postoperative complications to assessing disease risk, machine learning has been actively used to analyze patient data and assist healthcare professionals. However, the ""black box"" problem, wherein the internal workings of machine learning models are opaque and difficult to interpret, poses a significant challenge in medical applications. The lack of transparency may hinder trust and acceptance by clinicians and patients, making the development of explainable AI (XAI) techniques essential. XAI aims to provide both global and local explanations for machine learning models, offering insights into how predictions are made and which factors influence these outcomes. In this article, we explore various applications of machine learning in medicine, describe commonly used algorithms, and discuss explainable AI as a promising solution to enhance the interpretability of these models. By integrating explainability into machine learning, we aim to ensure its ethical and practical application in healthcare, ultimately improving patient outcomes and supporting personalized treatment strategies.",article,0,,,"Karako, Kenji;Tang, Wei",,,,,,,BioScience Trends,504,,SCOPUS,"Karako Kenji, 2024, BioScience Trends",,"Karako Kenji, 2024, BioScience Trends"
+2024,23,https://app.dimensions.ai/details/publication/pub.1183200454,The Application of Machine Learning in Predicting the Permeability of Drugs Across the Blood Brain Barrier,e149367,1,,Iranian Journal of Pharmaceutical Research : IJPR,10.5812/ijpr-149367,2024-11-24,"Jafarpour, Sogand;Asefzadeh, Maryam;Aboutaleb, Ehsan","The inefficiency of some medications to cross the blood-brain barrier (BBB) is often attributed to their poor physicochemical or pharmacokinetic properties. Recent studies have demonstrated promising outcomes using machine learning algorithms to predict drug permeability across the BBB. In light of these findings, our study was conducted to explore the potential of machine learning in predicting the permeability of drugs across the BBB. We utilized the B3DB dataset, a comprehensive BBB permeability molecular database, to build machine learning models. The dataset comprises 7,807 molecules, including information on their permeability, stereochemistry, and physicochemical properties. After preprocessing and cleaning, various machine learning algorithms were implemented using the Python library Pycaret to predict permeability. The extra trees classifier model outperformed others when using Morgan fingerprints and Mordred chemical descriptors (MCDs), achieving an area under the curve (AUC) of 0.93 and 0.95 on the test dataset. Additionally, we conducted an experiment to train a voting classifier combining the top three performing models. The best-blended model, trained on MCDs, achieved an AUC of 0.96. Furthermore, Shapley additive exPlanations (SHAP) analysis was applied to our best-performing single model, the extra trees classifier trained on MCDs, identifying the Lipinski rule of five as the most significant feature in predicting BBB permeability. In conclusion, our combined model trained on MCDs achieved an AUC of 0.96, an F1 Score of 0.91, and an MCC of 0.74. These results are consistent with prior studies on CNS drug permeability, highlighting the potential of machine learning in this domain.",article,0,,,"Jafarpour, Sogand;Asefzadeh, Maryam;Aboutaleb, Ehsan",,,,,,,Iranian Journal of Pharmaceutical Research : IJPR,,,SCOPUS,"Jafarpour Sogand, 2024, Iranian Journal of Pharmaceutical Research : IJPR",,"Jafarpour Sogand, 2024, Iranian Journal of Pharmaceutical Research : IJPR"
+2024,19,https://app.dimensions.ai/details/publication/pub.1183203808,Radiomics-based machine learning for automated detection of Pneumothorax in CT scans,e0314988,12,,PLOS ONE,10.1371/journal.pone.0314988,2024-12-09,"Dehbaghi, Hanieh Alimiri;Khoshgard, Karim;Sharini, Hamid;Khairabadi, Samira Jafari;Naleini, Farhad","The increasing complexity of diagnostic imaging often leads to misinterpretations and diagnostic errors, particularly in critical conditions such as pneumothorax. This study addresses the pressing need for improved diagnostic accuracy in CT scans by developing an intelligent model that leverages radiomics features and machine learning techniques. By enhancing the detection of pneumothorax, this research aims to mitigate diagnostic errors and accelerate the process of image interpretation, ultimately improving patient outcomes. Data used in this study was extracted from the medical records of 175 patients with suspected pneumothorax. The collected images were preprocessed in Matlab software. Radiomics features were extracted from each image and finally, the machine learning models were implemented on these features. The used machine learning algorithms are Gradient Tree Boosting (GBM), eXtreme Gradient Boosting (XGBoost), and Light GBM. To evaluate the performance of models, various evaluation criteria such as precision, accuracy, specificity, sensitivity, F1 score, Area Under the Receiver Operating Characteristic (ROC) Curve (AUC), and misclassification were calculated. According to the calculated evaluation criteria, in terms of accuracy, the Gradient Boosting Machine (GBM) model achieved the highest performance with an accuracy of 98.97%, followed closely by the XGBoost model at 98.29%. For precision, the GBM model outperformed the other models, recording a precision value of 99.55%. Regarding sensitivity, all three models-GBM, XGBoost, and LightGBM (LGBM)-demonstrated strong performance, with sensitivity values of 99%, 99%, and 100%, respectively, indicating minimal variation among them. The artificial intelligence models used in this study have significant potential to enhance patient care by supporting radiologists and other clinicians in the diagnosis of pneumothorax. These models can facilitate the prioritization of positive cases, expedite evaluations, and ultimately improve patient outcomes.",article,0,,,"Dehbaghi, Hanieh Alimiri;Khoshgard, Karim;Sharini, Hamid;Khairabadi, Samira Jafari;Naleini, Farhad",,,,,,,PLOS ONE,,,SCOPUS,"Dehbaghi Hanieh Alimiri, 2024, PLOS ONE",,"Dehbaghi Hanieh Alimiri, 2024, PLOS ONE"
+2024,15,https://app.dimensions.ai/details/publication/pub.1183212778,Machine learning based algorithms for virtual early detection and screening of neurodegenerative and neurocognitive disorders: a systematic-review,1413071,,,Frontiers in Neurology,10.3389/fneur.2024.1413071,2024-12-09,"Yousefi, Milad;Akhbari, Matin;Mohamadi, Zhina;Karami, Shaghayegh;Dasoomi, Hediyeh;Atabi, Alireza;Sarkeshikian, Seyed Amirali;Dehaki, Abdoullahi;Bayati, Hesam;Mashayekhi, Negin;Varmazyar, Shirin;Rahimian, Zahra;Anar, Mahsa Asadi;Shafiei, Daniel;Mohebbi, Alireza","Background and aim: Neurodegenerative disorders (e.g., Alzheimer's, Parkinson's) lead to neuronal loss; neurocognitive disorders (e.g., delirium, dementia) show cognitive decline. Early detection is crucial for effective management. Machine learning aids in more precise disease identification, potentially transforming healthcare. This comprehensive systematic review discusses how machine learning (ML), can enhance early detection of these disorders, surpassing traditional diagnostics' constraints.
+Methods: In this review, databases were examined up to August 15th, 2023, for ML data on neurodegenerative and neurocognitive diseases using PubMed, Scopus, Google Scholar, and Web of Science. Two investigators used the RAYYAN intelligence tool for systematic reviews to conduct the screening. Six blinded reviewers reviewed titles/abstracts. Cochrane risk of bias tool was used for quality assessment.
+Results: Our search found 7,069 research studies, of which 1,365 items were duplicates and thus removed. Four thousand three hundred and thirty four studies were screened, and 108 articles met the criteria for inclusion after preprocessing. Twelve ML algorithms were observed for dementia, showing promise in early detection. Eighteen ML algorithms were identified for Parkinson's, each effective in detection and diagnosis. Studies emphasized that ML algorithms are necessary for Alzheimer's to be successful. Fourteen ML algorithms were discovered for mild cognitive impairment, with LASSO logistic regression being the only one with unpromising results.
+Conclusion: This review emphasizes the pressing necessity of integrating verified digital health resources into conventional medical practice. This integration may signify a new era in the early detection of neurodegenerative and neurocognitive illnesses, potentially changing the course of these conditions for millions globally. This study showcases specific and statistically significant findings to illustrate the progress in the area and the prospective influence of these advancements on the global management of neurocognitive and neurodegenerative illnesses.",article,0,,,"Yousefi, Milad;Akhbari, Matin;Mohamadi, Zhina;Karami, Shaghayegh;Dasoomi, Hediyeh;Atabi, Alireza;Sarkeshikian, Seyed Amirali;Dehaki, Abdoullahi;Bayati, Hesam;Mashayekhi, Negin;Varmazyar, Shirin;Rahimian, Zahra;Anar, Mahsa Asadi;Shafiei, Daniel;Mohebbi, Alireza",,,,,,,Frontiers in Neurology,,,SCOPUS,"Yousefi Milad, 2024, Frontiers in Neurology",,"Yousefi Milad, 2024, Frontiers in Neurology"
+2024,12,https://app.dimensions.ai/details/publication/pub.1183223464,Harnessing the power of machine learning into tissue engineering: current progress and future prospects,tkae053,,,Burns & Trauma,10.1093/burnst/tkae053,2024-01-01,"Wu, Yiyang;Ding, Xiaotong;Wang, Yiwei;Ouyang, Defang","Tissue engineering is a discipline based on cell biology and materials science with the primary goal of rebuilding and regenerating lost and damaged tissues and organs. Tissue engineering has developed rapidly in recent years, while scaffolds, growth factors, and stem cells have been successfully used for the reconstruction of various tissues and organs. However, time-consuming production, high cost, and unpredictable tissue growth still need to be addressed. Machine learning is an emerging interdisciplinary discipline that combines computer science and powerful data sets, with great potential to accelerate scientific discovery and enhance clinical practice. The convergence of machine learning and tissue engineering, while in its infancy, promises transformative progress. This paper will review the latest progress in the application of machine learning to tissue engineering, summarize the latest applications in biomaterials design, scaffold fabrication, tissue regeneration, and organ transplantation, and discuss the challenges and future prospects of interdisciplinary collaboration, with a view to providing scientific references for researchers to make greater progress in tissue engineering and machine learning.",article,0,,,"Wu, Yiyang;Ding, Xiaotong;Wang, Yiwei;Ouyang, Defang",,,,,,,Burns & Trauma,,,SCOPUS,"Wu Yiyang, 2024, Burns & Trauma",,"Wu Yiyang, 2024, Burns & Trauma"
+2024,13,https://app.dimensions.ai/details/publication/pub.1183539741,Maize Kernel Broken Rate Prediction Using Machine Vision and Machine Learning Algorithms,4044,24,,Foods,10.3390/foods13244044,2024-12-15,"Fan, Chenlong;Wang, Wenjing;Cui, Tao;Liu, Ying;Qiao, Mengmeng","Rapid online detection of broken rate can effectively guide maize harvest with minimal damage to prevent kernel fungal damage. The broken rate prediction model based on machine vision and machine learning algorithms is proposed in this manuscript. A new dataset of high moisture content maize kernel phenotypic features was constructed by extracting seven features (geometric and shape features). Then, the regression model of the kernel (broken and unbroken) weight prediction and the classification model of kernel defect detection were established using the mainstream machine learning algorithm. In this way, the defect rapid identification and accurate weight prediction of broken kernels achieve the purpose of broken rate quantitative detection. The results prove that LGBM (light gradient boosting machine) and RF (random forest) algorithms were suitable for constructing weight prediction models of broken and unbroken kernels, respectively. The r values of the models built by the two algorithms were 0.985 and 0.910, respectively. SVM (support vector machine) algorithms perform well in constructing maize kernel classification models, with more than 95% classification accuracy. A strong linear relationship was observed between the predicted and actual broken rates. Therefore, this method could help to be an accurate, objective, efficient broken rate online detection method for maize harvest.",article,0,,,"Fan, Chenlong;Wang, Wenjing;Cui, Tao;Liu, Ying;Qiao, Mengmeng",,,,,,,Foods,,,SCOPUS,"Fan Chenlong, 2024, Foods",,"Fan Chenlong, 2024, Foods"
+2024,29,https://app.dimensions.ai/details/publication/pub.1183540146,The Application of Machine Learning on Antibody Discovery and Optimization,5923,24,,Molecules,10.3390/molecules29245923,2024-12-16,"Zheng, Jiayao;Wang, Yu;Liang, Qianying;Cui, Lun;Wang, Liqun","Antibodies play critical roles in modern medicine, serving as diagnostics and therapeutics for various diseases due to their ability to specifically bind to target antigens. Traditional antibody discovery and optimization methods are time-consuming and resource-intensive, though they have successfully generated antibodies for diagnosing and treating diseases. The advancements in protein data, computational hardware, and machine learning (ML) models have the opportunity to disrupt antibody discovery and optimization research. Machine learning models have demonstrated their abilities in antibody design. These machine learning models enable rapid in silico design of antibody candidates within a few days, achieving approximately a 60% reduction in time and a 50% reduction in cost compared to traditional methods. This review focuses on the latest machine learning-based antibody discovery and optimization developments. We briefly discuss the limitations of traditional methods and then explore the machine learning-based antibody discovery and optimization methodologies. We also focus on future research directions, including developing Antibody Design AI Agents and data foundries, alongside the ethical and regulatory considerations essential for successfully adopting machine learning-driven antibody designs.",article,0,,,"Zheng, Jiayao;Wang, Yu;Liang, Qianying;Cui, Lun;Wang, Liqun",,,,,,,Molecules,,,SCOPUS,"Zheng Jiayao, 2024, Molecules",,"Zheng Jiayao, 2024, Molecules"
+2024,40,https://app.dimensions.ai/details/publication/pub.1183600250,"How do machine learning models perform in the detection of depression, anxiety, and stress among undergraduate students? A systematic review",e00029323,11,,Cadernos de Saúde Pública,10.1590/0102-311xen029323,2024,"Schaab, Bruno Luis;Calvetti, Prisla Ücker;Hoffmann, Sofia;Diaz, Gabriela Bertoletti;Rech, Maurício;Cazella, Sílvio César;Stein, Airton Tetelbom;Barros, Helena Maria Tannhauser;Silva, Pamela Carvalho da;Reppold, Caroline Tozzi","Undergraduate students are often impacted by depression, anxiety, and stress. In this context, machine learning may support mental health assessment. Based on the following research question: ""How do machine learning models perform in the detection of depression, anxiety, and stress among undergraduate students?"", we aimed to evaluate the performance of these models. PubMed, Embase, PsycINFO, and Web of Science databases were searched, aiming at studies meeting the following criteria: publication in English; targeting undergraduate university students; empirical studies; having been published in a scientific journal; and predicting anxiety, depression, or stress outcomes via machine learning. The certainty of evidence was analyzed using the GRADE. As of January 2024, 2,304 articles were found, and 48 studies met the inclusion criteria. Different types of data were identified, including behavioral, physiological, internet usage, neurocerebral, blood markers, mixed data, as well as demographic and mobility data. Among the 33 studies that provided accuracy assessment, 30 reported values that exceeded 70%. Accuracy in detecting stress ranged from 63% to 100%, anxiety from 53.69% to 97.9%, and depression from 73.5% to 99.1%. Although most models present adequate performance, it should be noted that 47 of them only performed internal validation, which may overstate the performance data. Moreover, the GRADE checklist suggested that the quality of the evidence was very low. These findings indicate that machine learning algorithms hold promise in Public Health; however, it is crucial to scrutinize their practical applicability. Further studies should invest mainly in external validation of the machine learning models.",article,0,,,"Schaab, Bruno Luis;Calvetti, Prisla Ücker;Hoffmann, Sofia;Diaz, Gabriela Bertoletti;Rech, Maurício;Cazella, Sílvio César;Stein, Airton Tetelbom;Barros, Helena Maria Tannhauser;Silva, Pamela Carvalho da;Reppold, Caroline Tozzi",,,,,,,Cadernos de Saúde Pública,,,SCOPUS,"Schaab Bruno Luis, 2024, Cadernos de Saúde Pública",,"Schaab Bruno Luis, 2024, Cadernos de Saúde Pública"
+2024,19,https://app.dimensions.ai/details/publication/pub.1183601667,Machine and deep learning algorithms for sentiment analysis during COVID-19: A vision to create fake news resistant society,e0315407,12,,PLOS ONE,10.1371/journal.pone.0315407,2024-12-19,"Zamir, Muhammad Tayyab;Ullah, Fida;Tariq, Rasikh;Bangyal, Waqas Haider;Arif, Muhammad;Gelbukh, Alexander","Informal education via social media plays a crucial role in modern learning, offering self-directed and community-driven opportunities to gain knowledge, skills, and attitudes beyond traditional educational settings. These platforms provide access to a broad range of learning materials, such as tutorials, blogs, forums, and interactive content, making education more accessible and tailored to individual interests and needs. However, challenges like information overload and the spread of misinformation highlight the importance of digital literacy in ensuring users can critically evaluate the credibility of information. Consequently, the significance of sentiment analysis has grown in contemporary times due to the widespread utilization of social media platforms as a means for individuals to articulate their viewpoints. Twitter (now X) is well recognized as a prominent social media platform that is predominantly utilized for microblogging. Individuals commonly engage in expressing their viewpoints regarding contemporary events, hence presenting a significant difficulty for scholars to categorize the sentiment associated with such expressions effectively. This research study introduces a highly effective technique for detecting misinformation related to the COVID-19 pandemic. The spread of fake news during the COVID-19 pandemic has created significant challenges for public health and safety because misinformation about the virus, its transmission, and treatments has led to confusion and distrust among the public. This research study introduce highly effective techniques for detecting misinformation related to the COVID-19 pandemic. The methodology of this work includes gathering a dataset comprising fabricated news articles sourced from a corpus and subjected to the natural language processing (NLP) cycle. After applying some filters, a total of five machine learning classifiers and three deep learning classifiers were employed to forecast the sentiment of news articles, distinguishing between those that are authentic and those that are fabricated. This research employs machine learning classifiers, namely Support Vector Machine, Logistic Regression, K-Nearest Neighbors, Decision Trees, and Random Forest, to analyze and compare the obtained results. This research employs Convolutional Neural Networks, Long Short-Term Memory (LSTM), and Gated Recurrent Unit (GRU) as deep learning classifiers, and afterwards compares the obtained results. The results indicate that the BiGRU deep learning classifier demonstrates high accuracy and efficiency, with the following indicators: accuracy of 0.91, precision of 0.90, recall of 0.93, and F1-score of 0.92. For the same algorithm, the true negatives, and true positives came out to be 555 and 580, respectively, whereas, the false negatives and false positives came out to be 81, and 68, respectively. In conclusion, this research highlights the effectiveness of the BiGRU deep learning classifier in detecting misinformation related to COVID-19, emphasizing its significance for fostering media literacy and resilience against fake news in contemporary society. The implications of this research are significant for higher education and lifelong learners as it highlights the potential for using advanced machine learning to help educators and institutions in the process of combating the spread of misinformation and promoting critical thinking skills among students. By applying these methods to analyze and classify news articles, educators can develop more effective tools and curricula for teaching media literacy and information validation, equipping students with the skills needed to discern between authentic and fabricated information in the context of the COVID-19 pandemic and beyond. The implications of this research extrapolate to the creation of a society that is resistant to the spread of fake news through social media platforms.",article,0,,,"Zamir, Muhammad Tayyab;Ullah, Fida;Tariq, Rasikh;Bangyal, Waqas Haider;Arif, Muhammad;Gelbukh, Alexander",,,,,,,PLOS ONE,,,SCOPUS,"Zamir Muhammad Tayyab, 2024, PLOS ONE",,"Zamir Muhammad Tayyab, 2024, PLOS ONE"
+2024,17,https://app.dimensions.ai/details/publication/pub.1183621215,What can we learn from machine learning studies on flow diverter aneurysm embolization? A systematic review,1168,11,,Journal of NeuroInterventional Surgery,10.1136/jnis-2024-022147,2024-12-18,"Bayraktar, Esref Alperen;Cortese, Jonathan;Jabal, Mohamed Sobhi;Ghozy, Sherief;Orscelik, Atakan;Bilgin, Cem;Kadirvel, Ramanathan;Brinjikji, Waleed;Kallmes, David F","BACKGROUND: As the use of flow diverters has expanded in recent years, predicting successful outcomes has become more challenging for certain aneurysms.
+OBJECTIVE: To provide neurointerventionalists with an understanding of the available machine learning algorithms for predicting the success of flow diverters in occluding aneurysms.
+METHODS: This study followed Preferred Reporting Items for Systematic Reviews and Meta-Analyses (PRISMA) guidelines, and the four major medical databases (PubMed, Embase, Scopus, Web of Science) were screened. The study included original research articles that evaluated the predictive abilities of various machine learning algorithms for determining the success of flow diverters in achieving aneurysm occlusion.
+RESULTS: Five studies out of 217 were included based on our criteria. The included studies used various variables (patient demographics, aneurysm and parent artery characteristics, flow diverter and hemodynamic-related features, and angiographic parametric imaging) to predict flow diverter treatment outcomes. The machine learning algorithms used, along with their respective accuracy rates, were as follows: logistic regression (61% and 85%), support vector machine (88%), Gaussian support vector machine (90%), linear support vector machine (85%), decision tree (80%), random forest (87%), k-nearest neighbors (83% and 85%), XGBoost (87%), CatBoost (86%), deep neural networks (77.9%), and recurrent neural networks (74%).Two studies trained the machine learning models with both all features and the most significant features. Both studies observed that the accuracy of machine learning models decreased by removing the insignificant features.
+CONCLUSION: The current literature indicates that machine learning algorithms can be trained to predict the success of flow diverters with an accuracy of up to 90%.",article,0,,,"Bayraktar, Esref Alperen;Cortese, Jonathan;Jabal, Mohamed Sobhi;Ghozy, Sherief;Orscelik, Atakan;Bilgin, Cem;Kadirvel, Ramanathan;Brinjikji, Waleed;Kallmes, David F",,,,,,,Journal of NeuroInterventional Surgery,1173,,SCOPUS,"Bayraktar Esref Alperen, 2024, Journal of NeuroInterventional Surgery",,"Bayraktar Esref Alperen, 2024, Journal of NeuroInterventional Surgery"
+2024,17,https://app.dimensions.ai/details/publication/pub.1183690970,Prediction of Bandgap in Lithium-Ion Battery Materials Based on Explainable Boosting Machine Learning Techniques,6217,24,,Materials,10.3390/ma17246217,2024-12-19,"Qin, Haobo;Zhang, Yanchao;Guo, Zhaofeng;Wang, Shuhuan;Zhao, Dingguo;Xue, Yuekai","The bandgap is a critical factor influencing the energy density of batteries and a key physical quantity that determines the semiconducting behavior of materials. To further improve the prediction accuracy of the bandgap in silicon oxide lithium-ion battery materials, a boosting machine learning model was established to predict the material's bandgap. The optimal model, AdaBoost, was selected, and the SHapley Additive exPlanations (SHAP) method was used to quantitatively analyze the importance of different input features in relation to the model's prediction accuracy. It was found that AdaBoost performed exceptionally well in terms of prediction accuracy, ranking as the best among five predictive models. Using the SHAP method to interpret the AdaBoost model, it was discovered that there is a significant positive correlation between the energy of the conduction band minimum (cbm) of silicon oxides and the bandgap, with the bandgap size showing an increasing trend as the cbm rises. Additionally, the study revealed a strong negative correlation between the Fermi level of silicon oxides and the bandgap, with the bandgap expanding as the Fermi level decreases. This research demonstrates that boosting-type machine learning models perform superiorly in predicting the bandgap of silicon oxide materials.",article,0,,,"Qin, Haobo;Zhang, Yanchao;Guo, Zhaofeng;Wang, Shuhuan;Zhao, Dingguo;Xue, Yuekai",,,,,,,Materials,,,SCOPUS,"Qin Haobo, 2024, Materials",,"Qin Haobo, 2024, Materials"
+2024,267,https://app.dimensions.ai/details/publication/pub.1183702439,Recent advances in groundwater pollution research using machine learning from 2000 to 2023: A bibliometric analysis,120683,,,Environmental Research,10.1016/j.envres.2024.120683,2024-12-20,"Li, Xuan;Liang, Guohua;He, Bin;Ning, Yawei;Yang, Yuesuo;Wang, Lei;Wang, Guoli","Groundwater pollution has become a global challenge, posing significant threats to human health and ecological environments. Machine learning, with its superior ability to capture non-linear relationships in data, has shown significant potential in addressing groundwater pollution issues. This review presents a comprehensive bibliometric analysis of 1462 articles published between 2000 and 2023, offering an overview of the current state of research, analyzing development trends, and suggesting future directions. The analysis reveals a growing trend in publications over the 24-year period, with a sharp expansion since 2020. China, the USA, India, and Iran are identified as the leading contributors to publications and citations, with prominent institutions such as Jilin University, the United States Geological Survey, and the University of Tabriz. Moreover, keyword frequency analysis indicates that principal component analysis (PCA) is the most commonly used method, followed by artificial neural network (ANN) and hierarchical clustering analysis (HCA). The most studied groundwater pollutants include nitrate, arsenic, heavy metals, and fluoride. As machine learning has rapidly advanced, research focuses have evolved from fundamental tasks like hydrochemical evolution analysis, water quality index evaluation, and groundwater vulnerability assessments to more complex issues, such as pollutant concentration prediction, pollution risk assessment, and pollution source identification. Despite these advances, challenges related to data quality, data scarcity, model generalization, and interpretability remain. Future research should prioritize data sharing, improving model interpretability, broadening research horizons and advancing theory-guided machine learning. These will enhance our understanding of groundwater pollution mechanisms, and ultimately facilitate more effective pollution control and remediation strategies. In summary, this review provides valuable insights and suggestions for researchers and policymakers working in this critical field.",article,0,,,"Li, Xuan;Liang, Guohua;He, Bin;Ning, Yawei;Yang, Yuesuo;Wang, Lei;Wang, Guoli",,,,,,,Environmental Research,,,SCOPUS,"Li Xuan, 2024, Environmental Research",,"Li Xuan, 2024, Environmental Research"
+2024,24,https://app.dimensions.ai/details/publication/pub.1183737629,Machine learning for the prediction of mortality in patients with sepsis-associated acute kidney injury: a systematic review and meta-analysis,1454,1,,BMC Infectious Diseases,10.1186/s12879-024-10380-6,2024-12-21,"Lv, Xiangui;Liu, Daiqiang;Chen, Xinwei;Chen, Lvlin;Wang, Xiaohui;Xu, Xiaomei;Chen, Lin;Huang, Chao","BackgroundPredicting mortality in sepsis-related acute kidney injury facilitates early data-driven treatment decisions. Machine learning is predicting mortality in S-AKI in a growing number of studies. Therefore, we conducted this systematic review and meta-analysis to investigate the predictive value of machine learning for mortality in patients with septic acute kidney injury.MethodsThe PubMed, Web of Science, Cochrane Library and Embase databases were searched up to 20 July 2024 This was supplemented by a manual search of study references and review articles. Data were analysed using STATA 14.0 software. The risk of bias in the prediction model was assessed using the Predictive Model Risk of Bias Assessment Tool.ResultsA total of 8 studies were included, with a total of 53 predictive models and 17 machine learning algorithms used. Meta-analysis using a random effects model showed that the overall C index in the training set was 0.81 (95% CI: 0.78–0.84), sensitivity was 0.39 (0.32–0.47), and specificity was 0.92 (95% CI: 0.89–0.95). The overall C-index in the validation set was 0.73 (95% CI: 0.71–0.74), sensitivity was 0.54 (95% CI: 0.48–0.60) and specificity was 0.90 (95% CI: 0.88–0.91). The results showed that the machine learning algorithms had a good performance in predicting sepsis-related acute kidney injury death prediction.ConclusionMachine learning has been shown to be an effective tool for predicting sepsis-associated acute kidney injury deaths, which has important implications for enhancing risk assessment and clinical decision-making to improve sepsis patient care. It is also eagerly anticipated that future research efforts will incorporate larger sample sizes and multi-centre studies to more intensively examine the external validation of these models in different patient populations, allowing for a more in-depth exploration of sepsis-associated acute kidney injury in terms of accurate diagnostic efficacy across a diverse range of model and predictor types.Trial registrationThis study was registered with PROSPERO (CRD42024569420).",article,0,,,"Lv, Xiangui;Liu, Daiqiang;Chen, Xinwei;Chen, Lvlin;Wang, Xiaohui;Xu, Xiaomei;Chen, Lin;Huang, Chao",,,,,,,BMC Infectious Diseases,,,SCOPUS,"Lv Xiangui, 2024, BMC Infectious Diseases",,"Lv Xiangui, 2024, BMC Infectious Diseases"
+2024,21,https://app.dimensions.ai/details/publication/pub.1183778902,Graph Machine Learning With Systematic Hyper-Parameter Selection on Hidden Networks and Mental Health Conditions in the Middle-Aged and Old,1382,12,,Psychiatry Investigation,10.30773/pi.2024.0249,2024-12-23,"Lee, Kwang-Sig;Ham, Byung-Joo","OBJECTIVE: It takes significant time and energy to collect data on explicit networks. This study used graph machine learning to identify hidden networks and predict mental health conditions in the middle-aged and old.
+METHODS: Data came from the Korean Longitudinal Study of Ageing (2016-2018), with 2,000 participants aged 56 or more. The dependent variable was mental disease (no vs. yes) in 2018. Twenty-eight predictors in 2016 were included. Graph machine learning with systematic hyper-parameter selection was conducted.
+RESULTS: The area under the curve was similar across different models in different scenarios. However, sensitivity (93%) was highest for the graph random forest in the scenario of 2,000 participants and the centrality requirement of life satisfaction 90. Based on the graph random forest, top-10 determinants of mental disease were mental disease in previous period (2016), age, income, life satisfaction-health, life satisfaction-overall, subjective health, body mass index, life satisfaction-economic, children alive and health insurance. Especially, life satisfaction-overall was a top-5 determinant in the graph random forest, which considers life satisfaction as an emotional connection and a group interaction.
+CONCLUSION: Improving an individual's life satisfaction as a personal condition is expected to strengthen the individual's emotional connection as a group interaction, which would reduce the risk of the individual's mental disease in the end. This would bring an important clinical implication for highlighting the importance of a patient's life satisfaction and emotional connection regarding the diagnosis and management of the patient's mental disease.",article,0,,,"Lee, Kwang-Sig;Ham, Byung-Joo",,,,,,,Psychiatry Investigation,1390,,SCOPUS,"Lee Kwang-Sig, 2024, Psychiatry Investigation",,"Lee Kwang-Sig, 2024, Psychiatry Investigation"
+2024,26,https://app.dimensions.ai/details/publication/pub.1183802985,Machine Learning Advances in High-Entropy Alloys: A Mini-Review,1119,12,,Entropy,10.3390/e26121119,2024-12-20,"Sun, Yibo;Ni, Jun","The efficacy of machine learning has increased exponentially over the past decade. The utilization of machine learning to predict and design materials has become a pivotal tool for accelerating materials development. High-entropy alloys are particularly intriguing candidates for exemplifying the potency of machine learning due to their superior mechanical properties, vast compositional space, and intricate chemical interactions. This review examines the general process of developing machine learning models. The advances and new algorithms of machine learning in the field of high-entropy alloys are presented in each part of the process. These advances are based on both improvements in computer algorithms and physical representations that focus on the unique ordering properties of high-entropy alloys. We also show the results of generative models, data augmentation, and transfer learning in high-entropy alloys and conclude with a summary of the challenges still faced in machine learning high-entropy alloys today.",article,0,,,"Sun, Yibo;Ni, Jun",,,,,,,Entropy,,,SCOPUS,"Sun Yibo, 2024, Entropy",,"Sun Yibo, 2024, Entropy"
+2024,25,https://app.dimensions.ai/details/publication/pub.1183869488,Fault Detection and Diagnosis in Industry 4.0: A Review on Challenges and Opportunities,60,1,,Sensors,10.3390/s25010060,2024-12-25,"Leite, Denis;Andrade, Emmanuel;Rativa, Diego;Maciel, Alexandre M. A.","Integrating Machine Learning (ML) in industrial settings has become a cornerstone of Industry 4.0, aiming to enhance production system reliability and efficiency through Real-Time Fault Detection and Diagnosis (RT-FDD). This paper conducts a comprehensive literature review of ML-based RT-FDD. Out of 805 documents, 29 studies were identified as noteworthy for presenting innovative methods that address the complexities and challenges associated with fault detection. While ML-based RT-FDD offers different benefits, including fault prediction accuracy, it faces challenges in data quality, model interpretability, and integration complexities. This review identifies a gap in industrial implementation outcomes that opens new research opportunities. Future Fault Detection and Diagnosis (FDD) research may prioritize standardized datasets to ensure reproducibility and facilitate comparative evaluations. Furthermore, there is a pressing need to refine techniques for handling unbalanced datasets and improving feature extraction for temporal series data. Implementing Explainable Artificial Intelligence (AI) (XAI) tailored to industrial fault detection is imperative for enhancing interpretability and trustworthiness. Subsequent studies must emphasize comprehensive comparative evaluations, reducing reliance on specialized expertise, documenting real-world outcomes, addressing data challenges, and bolstering real-time capabilities and integration. By addressing these avenues, the field can propel the advancement of ML-based RT-FDD methodologies, ensuring their effectiveness and relevance in industrial contexts.",article,0,,,"Leite, Denis;Andrade, Emmanuel;Rativa, Diego;Maciel, Alexandre M. A.",,,,,,,Sensors,,,SCOPUS,"Leite Denis, 2024, Sensors",,"Leite Denis, 2024, Sensors"
+2025,20,https://app.dimensions.ai/details/publication/pub.1184042488,Predicting learning achievement using ensemble learning with result explanation,e0312124,1,,PLOS ONE,10.1371/journal.pone.0312124,2025-01-02,"Tong, Tingting;Li, Zhen","Predicting learning achievement is a crucial strategy to address high dropout rates. However, existing prediction models often exhibit biases, limiting their accuracy. Moreover, the lack of interpretability in current machine learning methods restricts their practical application in education. To overcome these challenges, this research combines the strengths of various machine learning algorithms to design a robust model that performs well across multiple metrics, and uses interpretability analysis to elucidate the prediction results. This study introduces a predictive framework for learning achievement based on ensemble learning techniques. Specifically, six distinct machine learning models are utilized to establish a base learner, with logistic regression serving as the meta learner to construct an ensemble model for predicting learning achievement. The SHapley Additive exPlanation (SHAP) model is then employed to explain the prediction results. Through the experiments on XuetangX dataset, the effectiveness of the proposed model is verified. The proposed model outperforms traditional machine learning and deep learning model in terms of prediction accuracy. The results demonstrate that the ensemble learning-based predictive framework significantly outperforms traditional machine learning methods. Through feature importance analysis, the SHAP method enhances model interpretability and improves the reliability of the prediction results, enabling more personalized interventions to support students.",article,0,,,"Tong, Tingting;Li, Zhen",,,,,,,PLOS ONE,,,SCOPUS,"Tong Tingting, 2025, PLOS ONE",,"Tong Tingting, 2025, PLOS ONE"
+2025,186,https://app.dimensions.ai/details/publication/pub.1184044811,A novel fuzzy three-valued logic computational framework in machine learning for medicine dataset,109636,,,Computers in Biology and Medicine,10.1016/j.compbiomed.2024.109636,2025-01-02,"Khushal, Rabia;Fatima, Ubaida","For consideration of uncertainties of a medicine dataset, a new conceptual architecture fuzzy three-valued logic is introduced in this research work. The proposed concept is applied to the heart disease dataset for the assessment of heart disease risk in individuals. By comparison of three binary (0,1) input variables, the variables' uncertainties and their collective impact can be analyzed that provide complete information leading to better outcome prediction. The availability of a wide range of values ultimately modified the output binary variable thus now providing three values (0,0.5,1) instead of binary (0,1) values. The three types of output values are heart disease risk is absent (0), may be present (0.5), and present (1). The inclusion of an additional class which is heart disease risk may be present (0.5) can alert an individual to include healthy lifestyle factors to minimize any chances of the presence of risk of heart disease development due to the behavioral risk factors at least thus helping an individual for better decision making. Initially, a subset of artificial intelligence (AI) i.e. traditional machine learning techniques have been applied to the considered dataset. Subsequently, it is applied to the fuzzy three-valued modified considered dataset hence leading to the development of a hybrid fuzzy three-valued modified machine learning model. This integration increases the accuracy of machine learning techniques from 70 % to 99 %. Likewise, the computation time has also been optimized and provides results in less than 11s. Statistical analysis using the Wilcoxon signed rank test and validation using an application of the proposed method on datasets of different domains also depicts that the proposed methodology is better and computationally efficient. Moreover, it also provides sufficient information to the individual thus helping in better decision making to live a disease free life.",article,0,,,"Khushal, Rabia;Fatima, Ubaida",,,,,,,Computers in Biology and Medicine,,,SCOPUS,"Khushal Rabia, 2025, Computers in Biology and Medicine",,"Khushal Rabia, 2025, Computers in Biology and Medicine"
+2025,45,https://app.dimensions.ai/details/publication/pub.1184052704,Artificial Intelligence and Machine Learning in Preeclampsia,165,2,,"Arteriosclerosis, Thrombosis, and Vascular Biology",10.1161/atvbaha.124.321673,2025-01-02,"Layton, Anita T.","Preeclampsia is a multisystem hypertensive disorder that manifests itself after 20 weeks of pregnancy, along with proteinuria. The pathophysiology of preeclampsia is incompletely understood. Artificial intelligence, especially machine learning with its capability to identify patterns in complex data, has the potential to revolutionize preeclampsia research. These data-driven techniques can improve early diagnosis, personalize risk assessment, uncover the disease's molecular basis, optimize treatments, and enable remote monitoring. This brief review discusses the recent applications of artificial intelligence and machine learning in preeclampsia management and research, including the improvements these approaches have brought, along with their challenges and limitations.",article,0,,,"Layton, Anita T.",,,,,,,"Arteriosclerosis, Thrombosis, and Vascular Biology",171,,SCOPUS,"Layton Anita T., 2025, Arteriosclerosis, Thrombosis, and Vascular Biology",,"Layton Anita T., 2025, Arteriosclerosis, Thrombosis, and Vascular Biology"
+2025,14,https://app.dimensions.ai/details/publication/pub.1184080689,Machine learning and Fuzzy logic fusion approach for osteoporosis risk prediction,103152,,,MethodsX,10.1016/j.mex.2024.103152,2025-01-03,"Khushal, Rabia;Fatima, Ubaida","The metabolic disorder osteoporosis has affected a humongous number of individuals globally. Its progression can be slowed down by modifying lifestyle risk factors and by following appropriate treatment. In this research work, modifiable risk factors of osteoporosis have been considered. All these variables are binary thus providing incomplete information. Machine learning implementation on these factors took a large computation time and has shown poor accuracy. Thus fuzzy concept has been introduced leading to the development of a fusion of machine learning and fuzzy logic approach. Three binary variables of the considered dataset have been compared thus fuzzy input is produced which also considers the uncertainty of these binary variables and since three input variables are transformed into one the number of features has also been reduced leading to optimization of computation time and accuracy. Moreover, it guides the individual to modify lifestyle factors to slow down the disease progression or reduce the risk of osteoporosis. The proposed model is validated on the diabetes risk prediction dataset.•The study examines modifiable binary risk factors for osteoporosis, such as diet, smoking, and exercise etc.•A fusion of machine learning and fuzzy logic is introduced to improve accuracy and reduce computation time.•The model, which condenses three binary inputs into one, is validated using a diabetes risk prediction dataset.",article,0,,,"Khushal, Rabia;Fatima, Ubaida",,,,,,,MethodsX,,,SCOPUS,"Khushal Rabia, 2025, MethodsX",,"Khushal Rabia, 2025, MethodsX"
+2025,344,https://app.dimensions.ai/details/publication/pub.1184139522,Developing a simplified measure to predict the risk of autism spectrum disorders: Abbreviating the M-CHAT-R using a machine learning approach in China,116353,,,Psychiatry Research,10.1016/j.psychres.2025.116353,2025-01-03,"Pan, Ning;Chen, Lifeng;Wu, Bocheng;Chen, Fangfang;Chen, Jin;Huang, Saijun;Guo, Cuihua;Wu, Jinqing;Wang, Yujie;Chen, Xian;Yang, Shirui;Jing, Jin;Weng, Xuchu;Lin, Lizi;Liang, Jiuxing;Wang, Xin","BACKGROUND: Early screening for autism spectrum disorder (ASD) is crucial, yet current assessment tools in Chinese primary child care are limited in efficacy.
+OBJECTIVE: This study aims to employ machine learning algorithms to identify key indicators from the 20-item Modified Checklist for Autism in Toddlers, revised (M-CHAT-R) combining with ASD-related sociodemographic and environmental factors, to distinguish ASD from typically developing children.
+METHODS: Data from our prior validation study of the Chinese M-CHAT-R (August 2016-March 2017, n = 6,049 toddlers) were reviewed. We extracted the 20-item M-CHAT-R data and integrated 17 sociodemographic and environmental risk factors associated with ASD development to strengthen M-CHAT-R's machine learning screening. Five feature selection methods were used to extract subsets from the original set. Six machine learning algorithms were applied to identify the optimal subset distinguishing clinically diagnosed ASD toddlers from typically developing toddlers.
+FINDINGS: Nine features were grouped into three subsets: subset 1 contained unanimously recommended items (A1 [Follows point], A3 [Pretend play], A9 [Brings objects to show], A10 [Response to name] and A16 [Gazing following]). Subset 2 added two items (A17 [Gaining parent's attention] and A18 [Understands what is said]), and subset 3 included two more items (A8 [Interest in other children] and child's age). The top-performing algorithm resulted in a seven-item classifier of subset 2 with 92.5 % sensitivity, 90.1 % specificity, and 10.0 % positive predictive value.
+CONCLUSIONS: Machine learning classifiers effectively differentiate ASD toddlers from typically developing toddlers using a reduced M-CHAT-R item set.
+CLINICAL IMPLICATIONS: This highlights the clinical significance of machine learning-optimized models for ASD screening in primary health care centers and broader applications.",article,0,,,"Pan, Ning;Chen, Lifeng;Wu, Bocheng;Chen, Fangfang;Chen, Jin;Huang, Saijun;Guo, Cuihua;Wu, Jinqing;Wang, Yujie;Chen, Xian;Yang, Shirui;Jing, Jin;Weng, Xuchu;Lin, Lizi;Liang, Jiuxing;Wang, Xin",,,,,,,Psychiatry Research,,,SCOPUS,"Pan Ning, 2025, Psychiatry Research",,"Pan Ning, 2025, Psychiatry Research"
+2025,43,https://app.dimensions.ai/details/publication/pub.1184180283,Testing Machine Learning-Based Pain Assessment for Postoperative Geriatric Patients,e01248,11,,"Computers, Informatics, Nursing",10.1097/cin.0000000000001248,2025-01-06,"Alkan, Tülin Kurt;Taşdemir, Nurten","The global population is aging, and there is a concomitant increase in surgery for the elderly. In geriatric patients, where postoperative pain assessment is difficult, technological tools that perform automatic pain assessment are needed to alleviate the workload of nurses and to accurately assess patients' pain. This study offers a more reliable and rapid assessment tool for assessing the pain of elderly patients undergoing surgery. The study aimed to develop a machine learning-based pain assessment application for postoperative geriatric patients. A methodological study was conducted with 68 patients in the general surgery clinic of a hospital between October 2022 and June 2024. Data were collected using a Sociodemographic Data Collection Form, the Numeric Rating Scale, and the Wong-Baker FACES Pain Scale. Then, machine learning was used. Data are summarized using descriptive statistics and presented using narrations, tables, and graphs. The study reveals that nurses assigned lower scores to patients' pain levels. In the categorical classification, a high level of agreement was observed between the patient and the machine learning for each measurement. A machine learning-based pain assessment application is an efficacious method for assessing pain following geriatric surgery. It facilitates nursing care and supports the advancement of geriatric nursing.",article,0,,,"Alkan, Tülin Kurt;Taşdemir, Nurten",,,,,,,"Computers, Informatics, Nursing",,,SCOPUS,"Alkan Tülin Kurt, 2025, Computers, Informatics, Nursing",,"Alkan Tülin Kurt, 2025, Computers, Informatics, Nursing"
+2025,13,https://app.dimensions.ai/details/publication/pub.1184227267,Diabetes Prediction Through Linkage of Causal Discovery and Inference Model with Machine Learning Models,124,1,,Biomedicines,10.3390/biomedicines13010124,2025-01-07,"Noh, Mi Jin;Kim, Yang Sok","Background/Objectives: Diabetes is a dangerous disease that is accompanied by various complications, including cardiovascular disease. As the global diabetes population continues to increase, it is crucial to identify its causes. Therefore, we predicted diabetes using an AI model and quantitatively examined causal relationships using a causal discovery and inference model. Methods: Kaggle's dataset from the National Institute of Diabetes and Digestive and Kidney Diseases was analyzed using logistic regression, deep learning, gradient boosting, and decision trees. Causal discovery techniques, such as LiNGAM, were employed to infer relationships between variables. Results: The study achieved high accuracy across models using logistic regression (84.84%) and deep learning (84.83%). The causal model highlighted factors such as physical activity, difficulty in walking, and heavy drinking as direct contributors to diabetes. Conclusions: By combining AI with causal inference, this study provides both predictive performance and insight into the factors affecting diabetes, paving the way for tailored interventions.",article,0,,,"Noh, Mi Jin;Kim, Yang Sok",,,,,,,Biomedicines,,,SCOPUS,"Noh Mi Jin, 2025, Biomedicines",,"Noh Mi Jin, 2025, Biomedicines"
+2025,20,https://app.dimensions.ai/details/publication/pub.1184241133,Enhancing stroke disease classification through machine learning models via a novel voting system by feature selection techniques,e0312914,1,,PLOS ONE,10.1371/journal.pone.0312914,2025-01-09,"Hasan, Mahade;Yasmin, Farhana;Hassan, Mehedi;Yu, Xue;Yeasmin, Soniya;Joshi, Herat;Islam, Mohammed Shariful","Heart disease remains a leading cause of mortality and morbidity worldwide, necessitating the development of accurate and reliable predictive models to facilitate early detection and intervention. While state of the art work has focused on various machine learning approaches for predicting heart disease, but they could not able to achieve remarkable accuracy. In response to this need, we applied nine machine learning algorithms XGBoost, logistic regression, decision tree, random forest, k-nearest neighbors (KNN), support vector machine (SVM), gaussian naïve bayes (NB gaussian), adaptive boosting, and linear regression to predict heart disease based on a range of physiological indicators. Our approach involved feature selection techniques to identify the most relevant predictors, aimed at refining the models to enhance both performance and interpretability. The models were trained, incorporating processes such as grid search hyperparameter tuning, and cross-validation to minimize overfitting. Additionally, we have developed a novel voting system with feature selection techniques to advance heart disease classification. Furthermore, we have evaluated the models using key performance metrics including accuracy, precision, recall, F1-score, and the area under the receiver operating characteristic curve (ROC AUC). Among the models, XGBoost demonstrated exceptional performance, achieving 99% accuracy, precision, F1-Score, 98% recall, and 100% ROC AUC. This study offers a promising approach to early heart disease diagnosis and preventive healthcare.",article,0,,,"Hasan, Mahade;Yasmin, Farhana;Hassan, Mehedi;Yu, Xue;Yeasmin, Soniya;Joshi, Herat;Islam, Mohammed Shariful",,,,,,,PLOS ONE,,,SCOPUS,"Hasan Mahade, 2025, PLOS ONE",,"Hasan Mahade, 2025, PLOS ONE"
+2025,21,https://app.dimensions.ai/details/publication/pub.1184241170,Eight quick tips for biologically and medically informed machine learning,e1012711,1,,PLOS Computational Biology,10.1371/journal.pcbi.1012711,2025-01-09,"Oneto, Luca;Chicco, Davide","Machine learning has become a powerful tool for computational analysis in the biomedical sciences, with its effectiveness significantly enhanced by integrating domain-specific knowledge. This integration has give rise to informed machine learning, in contrast to studies that lack domain knowledge and treat all variables equally (uninformed machine learning). While the application of informed machine learning to bioinformatics and health informatics datasets has become more seamless, the likelihood of errors has also increased. To address this drawback, we present eight guidelines outlining best practices for employing informed machine learning methods in biomedical sciences. These quick tips offer recommendations on various aspects of informed machine learning analysis, aiming to assist researchers in generating more robust, explainable, and dependable results. Even if we originally crafted these eight simple suggestions for novices, we believe they are deemed relevant for expert computational researchers as well.",article,0,,,"Oneto, Luca;Chicco, Davide",,,,,,,PLOS Computational Biology,,,SCOPUS,"Oneto Luca, 2025, PLOS Computational Biology",,"Oneto Luca, 2025, PLOS Computational Biology"
+2025,102,https://app.dimensions.ai/details/publication/pub.1184289507,Machine learning in public health informatics: Evidence that complex sampling structures may not be needed for prediction models with imbalanced outcomes,75,,,Annals of Epidemiology,10.1016/j.annepidem.2024.12.016,2025-01-10,"Si, Zhengye;Li, Jinpu;Leary, Emily","PURPOSE: The objective of this study is to investigate the predictive ability of machine learning models for imbalanced outcomes from national survey data without the use of sampling weights.
+METHODS: We evaluated the predictive performance of machine learning models on imbalanced outcomes from the US National Health and Nutrition Examination Survey (USNHANES) without using sampling weights. Four machine learning models (support vector machine, random forest, least absolute shrinkage and selection operator regression, and deep neural network) were compared with a logistic model that incorporates the survey's complex sampling design. Three resampling methods (oversampling, undersampling, and combined) were used to address class imbalance during the model training process.
+RESULTS: For all models, the balanced accuracy was similar (ranging from 0.72 to 0.76) and the specificity was smaller than sensitivity except for random forest. The support vector machine and neural networks performed best with sensitivity (ranging from 0.79 to 0.83), while the random forest had the largest specificity (ranging from 0.86 to 0.96), with one exception. PR-AUC scores and Brier scores were low ranging from 0.2529 to 0.3313 (lower scores worse) and 0.1005-0.3245 (lower scores better), respectively CONCLUSIONS: The machine learning models had overall similar predictive capacity to the recommended methods which integrate the complex sampling design for the prediction of osteoarthritis occurrence with USNHANES.",article,0,,,"Si, Zhengye;Li, Jinpu;Leary, Emily",,,,,,,Annals of Epidemiology,80,,SCOPUS,"Si Zhengye, 2025, Annals of Epidemiology",,"Si Zhengye, 2025, Annals of Epidemiology"
+2025,25,https://app.dimensions.ai/details/publication/pub.1184361649,Diagnosis and prognosis of melanoma from dermoscopy images using machine learning and deep learning: a systematic literature review,75,1,,BMC Cancer,10.1186/s12885-024-13423-y,2025-01-13,"Naseri, Hoda;Safaei, Ali A.","BackgroundMelanoma is a highly aggressive skin cancer, where early and accurate diagnosis is crucial to improve patient outcomes. Dermoscopy, a non-invasive imaging technique, aids in melanoma detection but can be limited by subjective interpretation. Recently, machine learning and deep learning techniques have shown promise in enhancing diagnostic precision by automating the analysis of dermoscopy images.MethodsThis systematic review examines recent advancements in machine learning (ML) and deep learning (DL) applications for melanoma diagnosis and prognosis using dermoscopy images. We conducted a thorough search across multiple databases, ultimately reviewing 34 studies published between 2016 and 2024. The review covers a range of model architectures, including DenseNet and ResNet, and discusses datasets, methodologies, and evaluation metrics used to validate model performance.ResultsOur results highlight that certain deep learning architectures, such as DenseNet and DCNN demonstrated outstanding performance, achieving over 95% accuracy on the HAM10000, ISIC and other datasets for melanoma detection from dermoscopy images. The review provides insights into the strengths, limitations, and future research directions of machine learning and deep learning methods in melanoma diagnosis and prognosis. It emphasizes the challenges related to data diversity, model interpretability, and computational resource requirements.ConclusionThis review underscores the potential of machine learning and deep learning methods to transform melanoma diagnosis through improved diagnostic accuracy and efficiency. Future research should focus on creating accessible, large datasets and enhancing model interpretability to increase clinical applicability. By addressing these areas, machine learning and deep learning models could play a central role in advancing melanoma diagnosis and patient care.",article,0,,,"Naseri, Hoda;Safaei, Ali A.",,,,,,,BMC Cancer,,,SCOPUS,"Naseri Hoda, 2025, BMC Cancer",,"Naseri Hoda, 2025, BMC Cancer"
+2025,8,https://app.dimensions.ai/details/publication/pub.1184517353,A scoping review of robustness concepts for machine learning in healthcare,38,1,,npj Digital Medicine,10.1038/s41746-024-01420-1,2025-01-17,"Balendran, Alan;Beji, Céline;Bouvier, Florie;Khalifa, Ottavio;Evgeniou, Theodoros;Ravaud, Philippe;Porcher, Raphaël","While machine learning (ML)-based solutions—often referred to as artificial intelligence (AI) solutions—have demonstrated comparable or superior performance to human experts across various healthcare applications, their vulnerability to perturbations and stability to variations due to new environments—essentially, their robustness—remains ambiguous and often overlooked. In this review, we aimed to identify the types of robustness addressed in the literature for ML models in healthcare. A total of 274 eligible records were retrieved from PubMed, Web of Science, IEEE Xplore, and additional sources. Eight general concepts of robustness emerged. Furthermore, an analysis of those concepts across types of data and types of predictive models revealed that the concepts were differently addressed. Our findings offer valuable insights for stakeholders seeking to understand and navigate the robustness of machine learning models during their development, validation, and deployment in healthcare settings, where interpretation of robustness may vary.",article,0,,,"Balendran, Alan;Beji, Céline;Bouvier, Florie;Khalifa, Ottavio;Evgeniou, Theodoros;Ravaud, Philippe;Porcher, Raphaël",,,,,,,npj Digital Medicine,,,SCOPUS,"Balendran Alan, 2025, npj Digital Medicine",,"Balendran Alan, 2025, npj Digital Medicine"
+2025,21,https://app.dimensions.ai/details/publication/pub.1184524959,Machine Learning–Aided Diagnosis Enhances Human Detection of Perilunate Dislocations,380,3,,HAND,10.1177/15589447241308603,2025-01-15,"Luan, Anna;von Rabenau, Lisa;Serebrakian, Arman T.;Crowe, Christopher S.;H., Bao;Eberlin, Kyle R.;Chang, James;Pridgen, Brian C.","BACKGROUND: Perilunate/lunate injuries are frequently misdiagnosed. We hypothesize that utilization of a machine learning algorithm can improve human detection of perilunate/lunate dislocations.
+METHODS: Participants from emergency medicine, hand surgery, and radiology were asked to evaluate 30 lateral wrist radiographs for the presence of a perilunate/lunate dislocation with and without the use of a machine learning algorithm, which was used to label the lunate. Human performance with and without the machine learning tool was evaluated using sensitivity, specificity, accuracy, and F1 score.
+RESULTS: A total of 137 participants were recruited, with 55 respondents from emergency medicine, 33 from radiology, and 49 from hand surgery. Thirty-nine participants were attending physicians or fellows, and 98 were residents. Use of the machine learning tool improved specificity from 88% to 94%, accuracy from 89% to 93%, and F1 score from 0.89 to 0.92. When stratified by training level, attending physicians and fellows had an improvement in specificity from 93% to 97%. For residents, use of the machine learning tool resulted in improved accuracy from 86% to 91% and specificity from 86% to 93%. The performance of surgery and radiology residents improved when assisted by the tool to achieve similar accuracy to attendings, and their assisted diagnostic performance reaches levels similar to that of the fully automated artificial intelligence tool.
+CONCLUSIONS: Use of a machine learning tool improves resident accuracy for radiographic detection of perilunate dislocations, and improves specificity for all training levels. This may help to decrease misdiagnosis of perilunate dislocations, particularly when subspecialist evaluation is delayed.",article,0,,,"Luan, Anna;von Rabenau, Lisa;Serebrakian, Arman T.;Crowe, Christopher S.;H., Bao;Eberlin, Kyle R.;Chang, James;Pridgen, Brian C.",,,,,,,HAND,389,,SCOPUS,"Luan Anna, 2025, HAND",,"Luan Anna, 2025, HAND"
+2025,98,https://app.dimensions.ai/details/publication/pub.1184582979,Machine learning models for neurocognitive outcome prediction in preterm born infants,942,3,,Pediatric Research,10.1038/s41390-025-03815-6,2025-01-18,"van Boven, Menne R.;Bennis, Frank C.;Onland, Wes;Aarnoudse-Moens, Cornelieke S. H.;Frings, Max;Tran, Kevin;Katz, Trixie A.;Romijn, Michelle;Hoogendoorn, Mark;van Kaam, Anton H.;Leemhuis, Aleid G.;Oosterlaan, Jaap;Königs, Marsh","BackgroundOutcome prediction after preterm birth is important for long-term neonatal care, but has proven notoriously challenging for neurocognitive outcome. This study investigated the potential of machine learning to improve neurocognitive outcome prediction at two and five years of corrected age in preterm infants, using readily available predictors from the neonatal setting.MethodsPredictors originating from the antenatal and neonatal period of preterm infants born <30 weeks gestation were used to predict adverse neurocognitive outcome on the Bayley Scale and Wechsler Preschool and Primary Scale of Intelligence. Machine learning models were compared to conventional logistic regression and validated using internal cross-validation.ResultsBest performing models were a random forest (two-year outcome) and a support vector machine (five-year outcome) with an area under the receiver operating characteristic curve (AUC) of 0.682 and 0.695 respectively, reaching high negative predictive values (95% and 91%, respectively). These models performed significantly better than the conventional models.ConclusionsThe models reached moderate overall predictive performance, yet with promising potential for early identification of children without adverse neurocognitive outcome. Machine learning modestly improved neurocognitive outcome prediction. Future research may harvest the predictive potential of a wider variety of routine (clinical) data, such as vital sign time series.ImpactEarly prediction of neurocognitive outcome in preterm infants will enable targeted follow-up and deployment of early (preventative) interventions to improve outcome.Neurocognitive outcome remains notoriously challenging using conventional models, while existing machine learning models depend on advanced MRI-derived predictors with limited potential for implementation into daily clinical practice.This study developed machine learning models for neurocognitive outcome prediction using predictors that are readily available in neonatal settings.Neurocognitive outcome prediction remains challenging due to low AUC and PPV, however, the models demonstrate high NPV, indicating potential for identifying children at low risk for adverse outcome.",article,0,,,"van Boven, Menne R.;Bennis, Frank C.;Onland, Wes;Aarnoudse-Moens, Cornelieke S. H.;Frings, Max;Tran, Kevin;Katz, Trixie A.;Romijn, Michelle;Hoogendoorn, Mark;van Kaam, Anton H.;Leemhuis, Aleid G.;Oosterlaan, Jaap;Königs, Marsh",,,,,,,Pediatric Research,949,,SCOPUS,"van Boven Menne R., 2025, Pediatric Research",,"van Boven Menne R., 2025, Pediatric Research"
+2025,23,https://app.dimensions.ai/details/publication/pub.1184711740,"Developing a rapid screening tool for high-risk ICU patients of sepsis: integrating electronic medical records with machine learning methods for mortality prediction in hospitalized patients—model establishment, internal and external validation, and visualization",97,1,,Journal of Translational Medicine,10.1186/s12967-025-06102-4,2025-01-21,"Shi, Songchang;Zhang, Lihui;Zhang, Shujuan;Shi, Jinyang;Hong, Donghuang;Wu, Siqi;Pan, Xiaobin;Lin, Wei","ObjectivesTo develop a machine learning-based prediction model using clinical data from the first 24 h of ICU admission to enable rapid screening and early intervention for sepsis patients.MethodsThis multicenter retrospective cohort study analyzed electronic medical records of sepsis patients using machine learning methods. We evaluated model performance in predicting sepsis outcomes within the first 24 h of ICU admission across US and Chinese healthcare settings.ResultsFrom 31 clinical features, machine learning models demonstrated significantly better predictive performance than traditional approaches for sepsis outcomes. While linear regression achieved low test scores (0.25), machine learning methods reached scores of 0.78 and AUCs above 0.8 in testing. Importantly, these models maintained robust performance (scores 0.63–0.77) in external validation.ConclusionsThe application of machine learning-based prediction models for sepsis could significantly improve patient outcomes through early detection and timely intervention in the critical first 24 h of ICU admission, supporting clinical decision-making.",article,0,,,"Shi, Songchang;Zhang, Lihui;Zhang, Shujuan;Shi, Jinyang;Hong, Donghuang;Wu, Siqi;Pan, Xiaobin;Lin, Wei",,,,,,,Journal of Translational Medicine,,,SCOPUS,"Shi Songchang, 2025, Journal of Translational Medicine",,"Shi Songchang, 2025, Journal of Translational Medicine"
+2025,138,https://app.dimensions.ai/details/publication/pub.1184827620,Analysis of the genetic basis of fiber-related traits and flowering time in upland cotton using machine learning,36,1,,Theoretical and Applied Genetics,10.1007/s00122-025-04821-2,2025-01-24,"Li, Weinan;Zhang, Mingjun;Fan, Jingchao;Yang, Zhaoen;Peng, Jun;Zhang, Jianhua;Lan, Yubin;Chai, Mao","Cotton is an important crop for fiber production, but the genetic basis underlying key agronomic traits, such as fiber quality and flowering days, remains complex. While machine learning (ML) has shown great potential in uncovering the genetic architecture of complex traits in other crops, its application in cotton has been limited. Here, we applied five machine learning models—AdaBoost, Gradient Boosting Regressor, LightGBM, Random Forest, and XGBoost—to identify loci associated with fiber quality and flowering days in cotton. We compared two SNP dataset down-sampling methods for model training and found that selecting SNPs with an Fscale value greater than 0 outperformed randomly selected SNPs in terms of model accuracy. We further performed machine learning quantitative trait loci (mlQTLs) analysis for 13 traits related to fiber quality and flowering days. These mlQTLs were then compared to those identified through genome-wide association studies (GWAS), revealing that the machine learning approach not only confirmed known loci but also identified novel QTLs. Additionally, we evaluated the effect of population size on model accuracy and found that larger population sizes resulted in better predictive performance. Finally, we proposed candidate genes for the identified mlQTLs, including two argonaute 5 proteins, Gh_A09G104100 and Gh_A09G104400, for the FL3/FS2 locus, as well as GhFLA17 and Syntaxin-121 (Gh_D09G143700) for the FSD09_2/FED09_2 locus. Our findings demonstrate the efficacy of machine learning in enhancing the identification of genetic loci in cotton, providing valuable insights for improving cotton breeding strategies.",article,0,,,"Li, Weinan;Zhang, Mingjun;Fan, Jingchao;Yang, Zhaoen;Peng, Jun;Zhang, Jianhua;Lan, Yubin;Chai, Mao",,,,,,,Theoretical and Applied Genetics,,,SCOPUS,"Li Weinan, 2025, Theoretical and Applied Genetics",,"Li Weinan, 2025, Theoretical and Applied Genetics"
+2025,4,https://app.dimensions.ai/details/publication/pub.1184827707,Machine learning empowered coherent Raman imaging and analysis for biomedical applications,8,1,,Communications Engineering,10.1038/s44172-025-00345-1,2025-01-25,"Zhou, Yihui;Tang, Xiaobin;Zhang, Delong;Lee, Hyeon Jeong","In situ and in vivo visualization and analysis of functional, endogenous biomolecules in living systems have generated a pivotal impact in our comprehension of biology and medicine. An increasingly adopted approach involves the utilization of molecular vibrational spectroscopy, which delivers notable advantages such as label-free imaging, high spectral density, high sensitivity, and molecule specificity. Nonetheless, analyzing and processing the intricate, multi-dimensional imaging data to extract interpretable and actionable information poses a fundamental obstacle. In contrast to conventional multivariate methods, machine learning has recently gained considerable attention for its capability of discerning essential features from massive datasets. Here, we present a comprehensive review of the latest advancements in the application of machine learning in the molecular spectroscopic imaging fields. We also discuss notable attributes of spectroscopic imaging modalities and explore their broader impact on other imaging techniques.",article,0,,,"Zhou, Yihui;Tang, Xiaobin;Zhang, Delong;Lee, Hyeon Jeong",,,,,,,Communications Engineering,,,SCOPUS,"Zhou Yihui, 2025, Communications Engineering",,"Zhou Yihui, 2025, Communications Engineering"
+2025,20,https://app.dimensions.ai/details/publication/pub.1184840625,Automated mold defects classification in paintings: A comparison of machine learning and rule-based techniques,e0316996,1,,PLOS ONE,10.1371/journal.pone.0316996,2025-01-24,"Nordin, Hilman;Razak, Bushroa Abdul;Mokhtar, Norrima;Jamaludin, Mohd Fadzil;Mehmood, Adeel","Mold defects pose a significant risk to the preservation of valuable fine art paintings, typically arising from fungal growth in humid environments. This paper presents a novel approach for detecting and categorizing mold defects in fine art paintings. The technique leverages a feature extraction method called Derivative Level Thresholding to pinpoint suspicious regions within an image. Subsequently, these regions are classified as mold defects using either morphological filtering or machine learning models such as Classification and Regression Trees (CART) and Linear Discriminant Analysis (LDA). The efficacy of these methods was evaluated using the Mold Features Dataset (MFD) and a separate set of test images. Results indicate that both methods improve the accuracy and precision of mold defect detection compared to no classifier. However, the CART algorithm exhibits superior performance, increasing precision by 32% to 53% while maintaining high accuracy (96%) even with an imbalanced dataset. This innovative method has the potential to transform the approach to managing mold defects in fine art paintings by offering a more precise and efficient means of identification. By enabling early detection of mold defects, this method can play a crucial role in safeguarding these invaluable artworks for future generations.",article,0,,,"Nordin, Hilman;Razak, Bushroa Abdul;Mokhtar, Norrima;Jamaludin, Mohd Fadzil;Mehmood, Adeel",,,,,,,PLOS ONE,,,SCOPUS,"Nordin Hilman, 2025, PLOS ONE",,"Nordin Hilman, 2025, PLOS ONE"
+2025,77,https://app.dimensions.ai/details/publication/pub.1184911524,Statistical models versus machine learning approach for competing risks in proctological surgery,333,2,,Updates in Surgery,10.1007/s13304-025-02109-0,2025-01-25,"Romano, Lucia;Manno, Andrea;Rossi, Fabrizio;Masedu, Francesco;Attanasio, Margherita;Vistoli, Fabio;Giuliani, Antonio","Clinical risk prediction models are ubiquitous in many surgical domains. The traditional approach to develop these models involves the use of regression analysis. Machine learning algorithms are gaining in popularity as an alternative approach for prediction and classification problems. They can detect non-linear relationships between independent and dependent variables and incorporate many of them. In our work, we aimed to investigate the potential role of machine learning versus classical logistic regression for the preoperative risk assessment in proctological surgery. We used clinical data from a nationwide audit: the database consisted of 1510 patients affected by Goligher’s grade III hemorrhoidal disease who underwent elective surgery. We collected anthropometric, clinical, and surgical data and we considered ten predictors to evaluate model-predictive performance. The clinical outcome was the complication rate evaluated at 30-day follow-up. Logistic regression and three machine learning techniques (Decision Tree, Support Vector Machine, Extreme Gradient Boosting) were compared in terms of area under the curve, balanced accuracy, sensitivity, and specificity. In our setting, machine learning and logistic regression models reached an equivalent predictive performance. Regarding the relative importance of the input features, all models agreed in identifying the most important factor. Combining and comparing statistical analysis and machine learning approaches in clinical field should be a common ambition, focused on improving and expanding interdisciplinary cooperation.",article,0,,,"Romano, Lucia;Manno, Andrea;Rossi, Fabrizio;Masedu, Francesco;Attanasio, Margherita;Vistoli, Fabio;Giuliani, Antonio",,,,,,,Updates in Surgery,341,,SCOPUS,"Romano Lucia, 2025, Updates in Surgery",,"Romano Lucia, 2025, Updates in Surgery"
+2025,13,https://app.dimensions.ai/details/publication/pub.1185036833,Machine learning and public health policy evaluation: research dynamics and prospects for challenges,1502599,,,Frontiers in Public Health,10.3389/fpubh.2025.1502599,2025-01-30,"Li, Zhengyin;Zhou, Hui;Xu, Zhen;Ma, Qingyang","Background: Public health policy evaluation is crucial for improving health outcomes, optimizing healthcare resource allocation, and ensuring fairness and transparency in decision-making. With the rise of big data, traditional evaluation methods face new challenges, requiring innovative approaches.
+Methods: This article reviews the principles, scope, and limitations of traditional public health policy evaluation methods and explores the application of machine learning in evaluating public health policies. It analyzes the specific steps for applying machine learning and provides practical examples. The challenges discussed include model interpretability, data bias, the continuation of historical health inequities, and data privacy concerns, while proposing ways to better apply machine learning in the context of big data.
+Results: Machine learning techniques hold promise in overcoming some limitations of traditional methods, offering more precise evaluations of public health policies. However, challenges such as lack of model interpretability, the perpetuation of health inequities, data bias, and privacy concerns remain significant.
+Discussion: To address these challenges, the article suggests integrating data-driven and theory-driven approaches to improve model interpretability, developing multi-level data strategies to reduce bias and mitigate health inequities, ensuring data privacy through technical safeguards and legal frameworks, and employing validation and benchmarking strategies to enhance model robustness and reproducibility.",article,0,,,"Li, Zhengyin;Zhou, Hui;Xu, Zhen;Ma, Qingyang",,,,,,,Frontiers in Public Health,,,SCOPUS,"Li Zhengyin, 2025, Frontiers in Public Health",,"Li Zhengyin, 2025, Frontiers in Public Health"
+2025,17,https://app.dimensions.ai/details/publication/pub.1185053216,Examining the Use of Machine Learning Algorithms to Enhance the Pediatric Triaging Approach,51,0,,Open Access Emergency Medicine,10.2147/oaem.s494280,2025-01,"Aljubran, Hussain J;Aljubran, Maitham J;AlAwami, Ahmed M;Aljubran, Mohammad J;Alkhalifah, Mohammed A;Alkhalifah, Moayd M;Alkhalifah, Ahmed S;Alabdullah, Tawfik S","Purpose: Triage systems play a vital role in effectively prioritizing patients according to the seriousness of their condition. However, conventional emergency triage systems in pediatric care predominantly rely on subjective evaluations. Machine learning technologies have shown significant potential in various medical fields, including pediatric emergency medicine. Therefore, this study seeks to employ pediatric emergency department records to train machine learning algorithms and evaluate their effectiveness and outcomes in the triaging system. This model will improve accuracy in pediatric emergency triage by categorizing cases into three urgency levels (nonurgent, urgent, and emergency).
+Patients and Methods: This is a retrospective observational cohort study that used emergency patient records obtained from the Emergency Department at King Faisal Specialist Hospital & Research Centre. Using the emergency severity index (a scale of 1 to 5), various machine learning techniques were employed to build different machine learning models, such as regression, instance-based, regularization, tree-based, Bayesian, dimensionality reduction, and ensemble algorithms. The accuracy of these models was compared to reach the most accurate and precise model.
+Results: A total of 38,891 pediatric emergency patient records were collected. However, due to numerous outliers and incorrectly labeled data, clinical knowledge and a confident learning algorithm were employed to preprocess the dataset, leaving 18,237 patient records. Notably, ensemble algorithms surpassed other models in all evaluation metrics, with CatBoost achieving an F-1 score of 90%. Importantly, the model never misclassified an urgent patient as nonurgent or vice versa.
+Conclusion: The study successfully created a machine learning model to classify pediatric emergency department patients into three urgency levels. The model, tailored to the specific needs of pediatric patients, shows promise in improving triage accuracy and patient care in pediatric emergency departments. The implication of this model in the real-life sitting will increase the accuracy of the pediatric emergency triage and will reduce the possibilities of over or under triaging.",article,0,,,"Aljubran, Hussain J;Aljubran, Maitham J;AlAwami, Ahmed M;Aljubran, Mohammad J;Alkhalifah, Mohammed A;Alkhalifah, Moayd M;Alkhalifah, Ahmed S;Alabdullah, Tawfik S",,,,,,,Open Access Emergency Medicine,61,,SCOPUS,"Aljubran Hussain J, 2025, Open Access Emergency Medicine",,"Aljubran Hussain J, 2025, Open Access Emergency Medicine"
+2025,117,https://app.dimensions.ai/details/publication/pub.1185189064,Machine Learning for Prediction of Drug Concentrations: Application and Challenges,1236,5,,Clinical Pharmacology & Therapeutics,10.1002/cpt.3577,2025-02-03,"Huang, Shuqi;Xu, Qihan;Yang, Guoping;Ding, Junjie;Pei, Qi","With the advancements in algorithms and increased accessibility of multi-source data, machine learning in pharmacokinetics is gaining interest. This review summarizes studies on machine learning-based pharmacokinetics analysis up to September 2024, identified from the PubMed and IEEE Xplore databases. The main focus of this review is on the use of machine learning in predicting drug concentration. This review provides a comprehensive summary of the advances in the machine learning algorithms for pharmacokinetics analysis. Specifically, we describe the common practices in data preprocessing, the application scenarios of various algorithms, and the critical challenges that require attention. Most machine learning models show comparable performance to those of population pharmacokinetics models. Tree-based algorithms and neural networks have the most applications. Furthermore, the use of ensemble modeling techniques can improve the accuracy of these models' predictions of drug concentrations, especially the ensembles of machine learning and pharmacometrics.",article,0,,,"Huang, Shuqi;Xu, Qihan;Yang, Guoping;Ding, Junjie;Pei, Qi",,,,,,,Clinical Pharmacology & Therapeutics,1247,,SCOPUS,"Huang Shuqi, 2025, Clinical Pharmacology & Therapeutics",,"Huang Shuqi, 2025, Clinical Pharmacology & Therapeutics"
+2025,10,https://app.dimensions.ai/details/publication/pub.1185190543,Machine learning‐assisted point‐of‐care diagnostics for cardiovascular healthcare,e70002,4,,Bioengineering & Translational Medicine,10.1002/btm2.70002,2025-02-03,"Wang, Kaidong;Tan, Bing;Wang, Xinfei;Qiu, Shicheng;Zhang, Qiuping;Wang, Shaolei;Yen, Ying‐Tzu;Jing, Nan;Liu, Changming;Chen, Xuxu;Liu, Shichang;Yu, Yan","Cardiovascular diseases (CVDs) continue to drive global mortality rates, underscoring an urgent need for advancements in healthcare solutions. The development of point-of-care (POC) devices that provide rapid diagnostic services near patients has garnered substantial attention, especially as traditional healthcare systems face challenges such as delayed diagnoses, inadequate care, and rising medical costs. The advancement of machine learning techniques has sparked considerable interest in medical research and engineering, offering ways to enhance diagnostic accuracy and relevance. Improved data interoperability and seamless connectivity could enable real-time, continuous monitoring of cardiovascular health. Recent breakthroughs in computing power and algorithmic design, particularly deep learning frameworks that emulate neural processes, have revolutionized POC devices for CVDs, enabling more frequent detection of abnormalities and automated, expert-level diagnosis. However, challenges such as data privacy concerns and biases in dataset representation continue to hinder clinical integration. Despite these barriers, the translational potential of machine learning-assisted POC devices presents significant opportunities for advancement in CVDs healthcare.",article,0,,,"Wang, Kaidong;Tan, Bing;Wang, Xinfei;Qiu, Shicheng;Zhang, Qiuping;Wang, Shaolei;Yen, Ying‐Tzu;Jing, Nan;Liu, Changming;Chen, Xuxu;Liu, Shichang;Yu, Yan",,,,,,,Bioengineering & Translational Medicine,,,SCOPUS,"Wang Kaidong, 2025, Bioengineering & Translational Medicine",,"Wang Kaidong, 2025, Bioengineering & Translational Medicine"
+2025,11,https://app.dimensions.ai/details/publication/pub.1185223615,Enhancing breast cancer prediction through stacking ensemble and deep learning integration,e2461,,,PeerJ Computer Science,10.7717/peerj-cs.2461,2025-02-03,"Gurcan, Fatih","Breast cancer is one of the most common types of cancer in women and is recognized as a serious global public health issue. The increasing incidence of breast cancer emphasizes the importance of early detection, which enhances the effectiveness of treatment processes. In addressing this challenge, the importance of machine learning and deep learning technologies is increasingly recognized. The aim of this study is to evaluate the integration of ensemble models and deep learning models using stacking ensemble techniques on the Breast Cancer Wisconsin (Diagnostic) dataset and to enhance breast cancer diagnosis through this methodology. To achieve this, the efficacy of ensemble methods such as Random Forest, XGBoost, LightGBM, ExtraTrees, HistGradientBoosting, AdaBoost, GradientBoosting, and CatBoost in modeling breast cancer diagnosis was comprehensively evaluated. In addition to ensemble methods, deep learning models including convolutional neural network (CNN), recurrent neural network (RNN), gated recurrent unit (GRU), bidirectional long short-term memory (BILSTM), long short-term memory (LSTM) were analyzed as meta predictors. Among these models, CNN stood out for its high accuracy and rapid training time, making it an ideal choice for real-time diagnostic applications. Finally, the study demonstrated how breast cancer prediction was enhanced by integrating a set of base predictors, such as LightGBM, ExtraTrees, and CatBoost, with a deep learning-based meta-predictor, such as CNN, using stacking ensemble methodology. This stacking integration model offers significant potential for healthcare decision support systems with high accuracy, F1 score, and receiver operating characteristic area under the curve (ROC AUC), along with reduced training times. The results from this research offer important insights for enhancing decision-making strategies in the diagnosis and management of breast cancer.",article,0,,,"Gurcan, Fatih",,,,,,,PeerJ Computer Science,,,SCOPUS,"Gurcan Fatih, 2025, PeerJ Computer Science",,"Gurcan Fatih, 2025, PeerJ Computer Science"
+2025,11,https://app.dimensions.ai/details/publication/pub.1185223618,Impact of machine learning on dietary and exercise behaviors in type 2 diabetes self-management: a systematic literature review,e2568,,,PeerJ Computer Science,10.7717/peerj-cs.2568,2025-02-03,"Mir, Rizwan Riaz;Haq, Nazeef Ul;Ishaq, Kashif;Safie, Nurhizam;Dogar, Abdul Basit","Self-awareness and self-management in diabetes are critical as they enhance patient well-being, decrease financial burden, and alleviate strain on healthcare systems by mitigating complications and promoting healthier life expectancy. Incomplete understanding persists regarding the synergistic effects of diet and exercise on diabetes management, as existing research often isolates these factors, creating a knowledge gap in comprehending their combined influence. Current diabetes research overlooks the interplay between diet and exercise in self-management. A holistic study is crucial to mitigate complications and healthcare burdens effectively. Multi-dimensional research questions covering complete diabetic management such as publication channels for diabetic research, existing machine learning solutions, physical activity tacking existing methods, and diabetic-associated datasets are included in this research. In this study, using a proper research protocol primary research articles related to diet, exercise, datasets, and blood analysis are selected and their quality is assessed for diabetic management. This study interrelates two major dimensions of diabetes management together that are diet and exercise.",article,0,,,"Mir, Rizwan Riaz;Haq, Nazeef Ul;Ishaq, Kashif;Safie, Nurhizam;Dogar, Abdul Basit",,,,,,,PeerJ Computer Science,,,SCOPUS,"Mir Rizwan Riaz, 2025, PeerJ Computer Science",,"Mir Rizwan Riaz, 2025, PeerJ Computer Science"
+2025,50,https://app.dimensions.ai/details/publication/pub.1185237249,Machine learning research methods to predict postoperative pain and opioid use: a narrative review,102,2,,Regional Anesthesia & Pain Medicine,10.1136/rapm-2024-105603,2025-02-05,"Langford, Dale J;Reichel, Julia F;Zhong, Haoyan;Basseri, Benjamin H;Koch, Marc P;Kolady, Ramana;Liu, Jiabin;Sideris, Alexandra;Dworkin, Robert H;Poeran, Jashvant;Wu, Christopher L","The use of machine learning to predict postoperative pain and opioid use has likely been catalyzed by the availability of complex patient-level data, computational and statistical advancements, the prevalence and impact of chronic postsurgical pain, and the persistence of the opioid crisis. The objectives of this narrative review were to identify and characterize methodological aspects of studies that have developed and/or tested machine learning algorithms to predict acute, subacute, or chronic pain or opioid use after any surgery and to propose considerations for future machine learning studies. Pairs of independent reviewers screened titles and abstracts of 280 PubMed-indexed articles and ultimately extracted data from 61 studies that met entry criteria. We observed a marked increase in the number of relevant publications over time. Studies most commonly focused on machine learning algorithms to predict chronic postsurgical pain or opioid use, using real-world data from patients undergoing orthopedic surgery. We identified variability in sample size, number and type of predictors, and how outcome variables were defined. Patient-reported predictors were highlighted as particularly informative and important to include in such machine learning algorithms, where possible. We hope that findings from this review might inform future applications of machine learning that improve the performance and clinical utility of resultant machine learning algorithms.",article,0,,,"Langford, Dale J;Reichel, Julia F;Zhong, Haoyan;Basseri, Benjamin H;Koch, Marc P;Kolady, Ramana;Liu, Jiabin;Sideris, Alexandra;Dworkin, Robert H;Poeran, Jashvant;Wu, Christopher L",,,,,,,Regional Anesthesia & Pain Medicine,109,,SCOPUS,"Langford Dale J, 2025, Regional Anesthesia & Pain Medicine",,"Langford Dale J, 2025, Regional Anesthesia & Pain Medicine"
+2025,15,https://app.dimensions.ai/details/publication/pub.1185255656,Exploring Applications of Artificial Intelligence in Critical Care Nursing: A Systematic Review,55,2,,Nursing Reports,10.3390/nursrep15020055,2025-02-04,"Porcellato, Elena;Lanera, Corrado;Ocagli, Honoria;Danielis, Matteo","Background: Artificial intelligence (AI) has been increasingly employed in healthcare across diverse domains, including medical imaging, personalized diagnostics, therapeutic interventions, and predictive analytics using electronic health records. Its integration is particularly impactful in critical care, where AI has demonstrated the potential to enhance patient outcomes. This systematic review critically evaluates the current applications of AI within the domain of critical care nursing. Methods: This systematic review is registered with PROSPERO (CRD42024545955) and was conducted in accordance with PRISMA guidelines. Comprehensive searches were performed across MEDLINE/PubMed, SCOPUS, CINAHL, and Web of Science. Results: The initial review identified 1364 articles, of which 24 studies met the inclusion criteria. These studies employed diverse AI techniques, including classical models (e.g., logistic regression), machine learning approaches (e.g., support vector machines, random forests), deep learning architectures (e.g., neural networks), and generative AI tools (e.g., ChatGPT). The analyzed health outcomes encompassed postoperative complications, ICU admissions and discharges, triage assessments, pressure injuries, sepsis, delirium, and predictions of adverse events or critical vital signs. Most studies relied on structured data from electronic medical records, such as vital signs and laboratory results, supplemented by unstructured data, including nursing notes and patient histories; two studies also integrated audio data. Conclusion: AI demonstrates significant potential in nursing, facilitating the use of clinical practice data for research and decision-making. The choice of AI techniques varies based on the specific objectives and requirements of the model. However, the heterogeneity of the studies included in this review limits the ability to draw definitive conclusions about the effectiveness of AI applications in critical care nursing. Future research should focus on more robust, interventional studies to assess the impact of AI on nursing-sensitive outcomes. Additionally, exploring a broader range of health outcomes and AI applications in critical care will be crucial for advancing AI integration in nursing practices.",article,0,,,"Porcellato, Elena;Lanera, Corrado;Ocagli, Honoria;Danielis, Matteo",,,,,,,Nursing Reports,,,SCOPUS,"Porcellato Elena, 2025, Nursing Reports",,"Porcellato Elena, 2025, Nursing Reports"
+2025,17,https://app.dimensions.ai/details/publication/pub.1185281661,Artificial Intelligence-Powered Materials Science,135,1,,Nano-Micro Letters,10.1007/s40820-024-01634-8,2025-02-06,"Bai, Xiaopeng;Zhang, Xingcai","HighlightsA detailed exploration is provided of how artificial intelligence (AI) and machine learning techniques are applied across various aspects of materials science.Major challenges in AI-driven materials science are evaluated.Novel case studies are incorporated, demonstrating their impact on accelerating material development and discovery.",article,0,,,"Bai, Xiaopeng;Zhang, Xingcai",,,,,,,Nano-Micro Letters,,,SCOPUS,"Bai Xiaopeng, 2025, Nano-Micro Letters",,"Bai Xiaopeng, 2025, Nano-Micro Letters"
+2025,30,https://app.dimensions.ai/details/publication/pub.1185359116,Machine Learning-Assisted High-Throughput Screening for Electrocatalytic Hydrogen Evolution Reaction,759,4,,Molecules,10.3390/molecules30040759,2025-02-07,"Yin, Guohao;Zhu, Haiyan;Chen, Shanlin;Li, Tingting;Wu, Chou;Jia, Shaobo;Shang, Jianxiao;Ren, Zhequn;Ding, Tianhao;Li, Yawei","Hydrogen as an environmentally friendly energy carrier, has many significant advantages, such as cleanliness, recyclability, and high calorific value of combustion, which makes it one of the major potential sources of energy supply in the future. Hydrogen evolution reaction (HER) is an important strategy to cope with the global energy shortage and environmental degradation, and given the large cost involved in HER, it is crucial to screen and develop stable and efficient catalysts. Compared with the traditional catalyst development model, the rapid development of data science and technology, especially machine learning technology, has shown great potential in the field of catalyst development in recent years. Among them, the research method of combining high-throughput computing and machine learning has received extensive attention in the field of materials science. Therefore, this paper provides a review of the recent research on combining high-throughput computing with machine learning to guide the development of HER electrocatalysts, covering the application of machine learning in constructing prediction models and extracting key features of catalytic activity. The future challenges and development directions of this field are also prospected, aiming to provide useful references and lessons for related research.",article,0,,,"Yin, Guohao;Zhu, Haiyan;Chen, Shanlin;Li, Tingting;Wu, Chou;Jia, Shaobo;Shang, Jianxiao;Ren, Zhequn;Ding, Tianhao;Li, Yawei",,,,,,,Molecules,,,SCOPUS,"Yin Guohao, 2025, Molecules",,"Yin Guohao, 2025, Molecules"
+2024,78,https://app.dimensions.ai/details/publication/pub.1185393112,Applications of Artificial Intelligence and Machine Learning in Emergency Medicine Triage - A Systematic Review,198,3,,Medical Archives,10.5455/medarh.2024.78.198-206,2024,"Almulihi, Qasem Ahmed;Alquraini, Abdulaziz Adel;Almulihi, Fatimah Ahmed Ali;Alzahid, Abdullah Abdulaziz;Al Qahtani, Saleh Saeed Al Jathnan;Almulhim, Mohamed;Alqhtani, Saeed Hussain Saeed;Alnafea, Faisal Mohammed Nafea;Mushni, Saad Ali Saad;Alaqil, Nasser Abdullah;Assiri, Mohammad Ibrahim Faya;Maghraby, Nisreen H","Background: Overcrowding in Emergency departments adversely impacts efficiency, patient outcomes, and resource allocation. Accurate triage systems are essential for prioritizing care and optimizing resources. While traditional methods provide a foundation, they often lack precision in addressing modern healthcare complexities. Artificial intelligence (AI) and machine learning (ML) offer advanced capabilities to enhance triage accuracy, improve patient prioritization, and support clinical decision-making, addressing limitations of conventional approaches and paving the way for adaptive triage solutions.
+Objective: This systematic review aims to assess the use of artificial intelligence (AI) and machine learning (ML) in determining the outcomes of patients presenting in Emergency department (ED) triage.
+Methods: A systematic search was conducted on April 21, 2023, using electronic databases including PubMed/Medline, Cochrane Library, Ovid, and Google Scholar, without year restrictions. The main outcome of this review was to assess the use of AI and ML in the ED Triage. Articles that used different models of AI and ML to predict various outcomes of patients in the ED setting were included.
+Results: A total of 17 studies were included in this systematic review. Fifteen studies assessed the role of machine learning methods in emergency department triage, while two studies evaluated the role of AI and machine learning in prehospital triage. The results of our systematic review favor the use of machine learning methods and artificial intelligence in emergency triage. Machine learning models were found to be superior to conventional emergency severity score methods in determining triage, diagnosis, and early management of patients. Among the machine learning methods, the boosting model was slightly more effective.
+Conclusion: Our study supports the notion that AI and ML are the future of Emergency departments. They aid in predicting patient outcomes and determining appropriate management strategies more efficiently, thereby enhancing decision making in the ED.",article,0,,,"Almulihi, Qasem Ahmed;Alquraini, Abdulaziz Adel;Almulihi, Fatimah Ahmed Ali;Alzahid, Abdullah Abdulaziz;Al Qahtani, Saleh Saeed Al Jathnan;Almulhim, Mohamed;Alqhtani, Saeed Hussain Saeed;Alnafea, Faisal Mohammed Nafea;Mushni, Saad Ali Saad;Alaqil, Nasser Abdullah;Assiri, Mohammad Ibrahim Faya;Maghraby, Nisreen H",,,,,,,Medical Archives,206,,SCOPUS,"Almulihi Qasem Ahmed, 2024, Medical Archives",,"Almulihi Qasem Ahmed, 2024, Medical Archives"
+2025,15,https://app.dimensions.ai/details/publication/pub.1185440746,Improving landslide susceptibility prediction through ensemble recursive feature elimination and meta-learning framework,5170,1,,Scientific Reports,10.1038/s41598-025-87587-3,2025-02-12,"Halder, Krishnagopal;Srivastava, Amit Kumar;Ghosh, Anitabha;Das, Subhabrata;Banerjee, Santanu;Pal, Subodh Chandra;Chatterjee, Uday;Bisai, Dipak;Ewert, Frank;Gaiser, Thomas","Landslides pose significant threats to ecosystems, lives, and economies, particularly in the geologically fragile Sub-Himalayan region of West Bengal, India. This study enhances landslide susceptibility prediction by developing an ensemble framework integrating Recursive Feature Elimination (RFE) with meta-learning techniques. Seven advanced machine learning models- Logistic Regression (LR), Support Vector Machine (SVM), Random Forest (RF), Extremely Randomized Trees (ET), Gradient Boosting (GB), Extreme Gradient Boosting (XGBoost), and a Meta Classifier (MC) were applied using Remote Sensing and GIS tools to identify key landslide-conditioning factors and classify susceptibility zones. Model performance was assessed through metrics such as accuracy, precision, recall, F1 score, and AUC of the ROC curve. Among the models, the Meta Classifier (MC) achieved the highest accuracy (0.956) and AUC (0.987), demonstrating superior predictive ability. Gradient Boosting (GB), XGBoost, and RF also performed well, with accuracies of 0.943 and AUC values of 0.987 (GB and XGBoost) and 0.983 (RF). Extremely Randomized Trees (ET) exhibited the highest accuracy (0.946) among individual models and an AUC of 0.985. SVM and LR, while slightly less accurate (0.941 and 0.860, respectively), provided valuable insights, with SVM achieving an AUC of 0.972 and LR achieving 0.935. The models effectively delineated landslide susceptibility into five zones (very low, low, moderate, high, and very high), with high and very high susceptibility zones concentrated in Darjeeling and Kalimpong subdivisions. These zones are influenced by intense rainfall, unstable geological structures, and anthropogenic activities like deforestation and urbanization. Notably, ET, RF, GB, and XGBoost demonstrated efficiency in feature selection, requiring fewer input variables while maintaining high performance. This study establishes a benchmark for landslide susceptibility mapping, providing a scalable and adaptable framework for geospatial hazard prediction. The findings hold significant implications for land-use planning, disaster management, and environmental conservation in vulnerable regions worldwide.",article,0,,,"Halder, Krishnagopal;Srivastava, Amit Kumar;Ghosh, Anitabha;Das, Subhabrata;Banerjee, Santanu;Pal, Subodh Chandra;Chatterjee, Uday;Bisai, Dipak;Ewert, Frank;Gaiser, Thomas",,,,,,,Scientific Reports,,,SCOPUS,"Halder Krishnagopal, 2025, Scientific Reports",,"Halder Krishnagopal, 2025, Scientific Reports"
+2025,15,https://app.dimensions.ai/details/publication/pub.1185463212,Computational Modeling of Properties of Quantum Dots and Nanostructures: From First Principles to Artificial Intelligence (A Review),272,4,,Nanomaterials,10.3390/nano15040272,2025-02-11,"Matyszczak, Grzegorz;Krawczyk, Krzysztof;Yedzikhanau, Albert","Nanomaterials, including quantum dots, have gained more and more attention in the past few decades due to their extraordinary properties that make them useful for many applications, ranging from catalysis, energy generation and storage, biotechnology, and medicine to quantum informatics. Mathematical descriptions of the phenomena in which nanostructures are involved are of great demand because they may be utilized for the purpose of controlling these phenomena (e.g., the growth of nanostructures with certain sizes, shapes, and other properties). Such models may be of distinct nature, including calculations from first principles, ordinary and partial differential equations, and machine learning models (including artificial intelligence) as well. The aim of this article is to review the most important and useful computational and mathematical approaches for the description and control of processes involving nanostructures.",article,0,,,"Matyszczak, Grzegorz;Krawczyk, Krzysztof;Yedzikhanau, Albert",,,,,,,Nanomaterials,,,SCOPUS,"Matyszczak Grzegorz, 2025, Nanomaterials",,"Matyszczak Grzegorz, 2025, Nanomaterials"
+2025,33,https://app.dimensions.ai/details/publication/pub.1185491956,Use of machine learning algorithms to construct models of symptom burden cluster risk in breast cancer patients undergoing chemotherapy,190,3,,Supportive Care in Cancer,10.1007/s00520-025-09236-9,2025-02-13,"Huang, Qingmei;Yang, Yang;Yuan, Changrong;Zhang, Wen;Zong, Xuqian;Wu, Fulei","PurposeTo develop models using different machine learning algorithms to predict high-risk symptom burden clusters in breast cancer patients undergoing chemotherapy, and to determine an optimal model.MethodsData from 647 breast cancer patients were analyzed to develop a model predicting high-risk symptom burden clusters. Five machine learning algorithms, including an artificial neural network (ANN), a decision tree (DT), a support vector machine (SVM), a random forest (RF), and extreme gradient boosting (XGBoost), were tested, as was traditional logistic regression. Performance was evaluated by deriving the predictive accuracy, precision, discriminatory capacity, calibration, and clinical utility, and an optimal model was identified.ResultsA model based on the RF algorithm exhibited better accuracy, precision, and discriminatory capacity than the other models. The area under the receiver operator curve was 0.91, the sensitivity was 65.8%, the specificity was 93.5%, the positive predictive value was 98.02%, and the false positive rate was only 0.91%.ConclusionThe model created using the RF algorithm was excellent in terms of predictive accuracy and precision, and can be used for early identification of the risk of self-reported symptom burden clusters in breast cancer patients undergoing chemotherapy.",article,0,,,"Huang, Qingmei;Yang, Yang;Yuan, Changrong;Zhang, Wen;Zong, Xuqian;Wu, Fulei",,,,,,,Supportive Care in Cancer,,,SCOPUS,"Huang Qingmei, 2025, Supportive Care in Cancer",,"Huang Qingmei, 2025, Supportive Care in Cancer"
+2025,25,https://app.dimensions.ai/details/publication/pub.1185546824,A Novel Improvement of Feature Selection for Dynamic Hand Gesture Identification Based on Double Machine Learning,1126,4,,Sensors,10.3390/s25041126,2025-02-13,"Yan, Keyue;Lam, Chi-Fai;Fong, Simon;Marques, João Alexandre Lobo;Millham, Richard Charles;Mohammed, Sabah","Causal machine learning is an approach that combines causal inference and machine learning to understand and utilize causal relationships in data. In current research and applications, traditional machine learning and deep learning models always focus on prediction and pattern recognition. In contrast, causal machine learning goes a step further by revealing causal relationships between different variables. We explore a novel concept called Double Machine Learning that embraces causal machine learning in this research. The core goal is to select independent variables from a gesture identification problem that are causally related to final gesture results. This selection allows us to classify and analyze gestures more efficiently, thereby improving models' performance and interpretability. Compared to commonly used feature selection methods such as Variance Threshold, Select From Model, Principal Component Analysis, Least Absolute Shrinkage and Selection Operator, Artificial Neural Network, and TabNet, Double Machine Learning methods focus more on causal relationships between variables rather than correlations. Our research shows that variables selected using the Double Machine Learning method perform well under different classification models, with final results significantly better than those of traditional methods. This novel Double Machine Learning-based approach offers researchers a valuable perspective for feature selection and model construction. It enhances the model's ability to uncover causal relationships within complex data. Variables with causal significance can be more informative than those with only correlative significance, thus improving overall prediction performance and reliability.",article,0,,,"Yan, Keyue;Lam, Chi-Fai;Fong, Simon;Marques, João Alexandre Lobo;Millham, Richard Charles;Mohammed, Sabah",,,,,,,Sensors,,,SCOPUS,"Yan Keyue, 2025, Sensors",,"Yan Keyue, 2025, Sensors"
+2025,250,https://app.dimensions.ai/details/publication/pub.1185664271,Artificial intelligence in the diagnosis of uveal melanoma: advances and applications,10444,,,Experimental Biology and Medicine,10.3389/ebm.2025.10444,2025-02-19,"Dadzie, Albert K.;Iddir, Sabrina P.;Ganesh, Sanjay;Ebrahimi, Behrouz;Rahimi, Mojtaba;Abtahi, Mansour;Son, Taeyoon;Heiferman, Michael J.;Yao, Xincheng","Advancements in machine learning and deep learning have the potential to revolutionize the diagnosis of melanocytic choroidal tumors, including uveal melanoma, a potentially life-threatening eye cancer. Traditional machine learning methods rely heavily on manually selected image features, which can limit diagnostic accuracy and lead to variability in results. In contrast, deep learning models, particularly convolutional neural networks (CNNs), are capable of automatically analyzing medical images, identifying complex patterns, and enhancing diagnostic precision. This review evaluates recent studies that apply machine learning and deep learning approaches to classify uveal melanoma using imaging modalities such as fundus photography, optical coherence tomography (OCT), and ultrasound. The review critically examines each study's research design, methodology, and reported performance metrics, discussing strengths as well as limitations. While fundus photography is the predominant imaging modality being used in current research, integrating multiple imaging techniques, such as OCT and ultrasound, may enhance diagnostic accuracy by combining surface and structural information about the tumor. Key limitations across studies include small dataset sizes, limited external validation, and a reliance on single imaging modalities, all of which restrict model generalizability in clinical settings. Metrics such as accuracy, sensitivity, and area under the curve (AUC) indicate that deep learning models have the potential to outperform traditional methods, supporting their further development for integration into clinical workflows. Future research should aim to address current limitations by developing multimodal models that leverage larger, diverse datasets and rigorous validation, thereby paving the way for more comprehensive, reliable diagnostic tools in ocular oncology.",article,0,,,"Dadzie, Albert K.;Iddir, Sabrina P.;Ganesh, Sanjay;Ebrahimi, Behrouz;Rahimi, Mojtaba;Abtahi, Mansour;Son, Taeyoon;Heiferman, Michael J.;Yao, Xincheng",,,,,,,Experimental Biology and Medicine,,,SCOPUS,"Dadzie Albert K., 2025, Experimental Biology and Medicine",,"Dadzie Albert K., 2025, Experimental Biology and Medicine"
+2025,188,https://app.dimensions.ai/details/publication/pub.1185756625,A predictive study on HCV using automated machine learning models,109897,,,Computers in Biology and Medicine,10.1016/j.compbiomed.2025.109897,2025-02-21,"Değer, Serbun Ufuk;Can, Hakan","Hepatitis C virus (HCV) infection represents a significant contributor to chronic liver disease on a global scale. The prompt identification and management of HCV are imperative in order to avert complications and to maintain control over the disease. Nowadays, medical decision support systems that incorporate advanced diagnostic methods and effective treatment strategies are of great importance in order to make significant progress in the fight against HCV. Medical decision support systems have undergone a major evolution with the development of computer technologies. In the 2010s, the integration of big data and artificial intelligence technologies into medical decision support systems enabled rapid analysis of patient data. This has created significant synergies in the diagnostic and therapeutic approaches to various diseases. The ever-increasing volume of data on HCV infection offers opportunities to use machine learning techniques to diagnose and predict liver disorders. Although the implementation of machine learning necessitates a degree of proficiency in computer science, which frequently poses a challenge for healthcare practitioners, automated machine learning (AutoML) tools markedly mitigate this obstacle. Such tools empower users to construct highly effective machine learning models without requiring extensive technical expertise. In our investigation concerning HCV prediction, additional features were incorporated into the dataset sourced from the UCI Machine Learning Repository, and class imbalances were rectified. In our study on HCV prediction, which was conducted to address this deficiency, new features were added to the dataset obtained from the UCI Machine Learning Repository to address the deficiencies and inter-class imbalances were corrected. After this process, modeling was performed using 7 AutoML tools and high accuracy rates ranging from 99.29 % to 100 % were obtained. As an important result of this paper, these models may be regarded as a supplementary method for doctors in predicting Hepatitis C and its associated diseases.",article,0,,,"Değer, Serbun Ufuk;Can, Hakan",,,,,,,Computers in Biology and Medicine,,,SCOPUS,"Değer Serbun Ufuk, 2025, Computers in Biology and Medicine",,"Değer Serbun Ufuk, 2025, Computers in Biology and Medicine"
+2025,12,https://app.dimensions.ai/details/publication/pub.1185856145,Machine Learning Clinical Decision Support for Interdisciplinary Multimodal Chronic Musculoskeletal Pain Treatment: Prospective Pilot Study of Patient Assessment and Prognostic Profile Validation,e65890,,,JMIR Rehabilitation and Assistive Technologies,10.2196/65890,2025-05-09,"Zmudzki, Fredrick;Smeets, Rob J E M;Groenewegen, Jan S;van der Graaff, Erik","Background: Chronic musculoskeletal pain (CMP) impacts around 20% of people globally, resulting in patients living with pain, fatigue, restricted social and employment capacity, and reduced quality of life. Interdisciplinary multimodal pain treatment (IMPT) programs have been shown to provide positive and sustained outcomes where all other interventions have failed. IMPT programs combined with multidimensional machine learning predictive patient profiles aim to improve clinical decision support and personalized patient assessments, potentially leading to better treatment outcomes.
+Objective: We aimed to investigate integrating machine learning with IMPT programs and its potential contribution to clinical decision support and treatment outcomes for patients with CMP.
+Methods: This prospective pilot study used a machine learning prognostic patient profile of 7 outcome measures across 4 clinically relevant domains, including activity or disability, pain, fatigue, and quality of life. Prognostic profiles were created for new IMPT patients in the Netherlands in November 2023 (N=17). New summary indicators were developed, including defined categories for positive, negative, and mixed prognostic profiles; an accuracy indicator with high, medium, and low levels based on weighted true- or false-positive values; and an indicator for consistently positive or negative outcomes. The consolidated reporting guidelines checklist for prognostic machine learning modeling studies was completed to provide transparency of data quality, model development methodology, and validation.
+Results: The machine learning IMPT prognostic patient profiles demonstrated high accuracy and consistency in predicting patient outcomes. The profile, combined with extended new prognostic summary indicators, provided improved identification of patients with predicted positive, negative, and mixed outcomes, supporting more comprehensive assessment. Overall, 82.4% (14/17) of prognostic patient profiles were consistent with clinician assessments. Notably, clinician case notes indicated the stratified prognostic profiles were directly discussed with around half (8/17, 47.1%) of patients. Clinicians found the prognostic patient profiles helpful in 88.2% (15/17) of initial IMPT assessments to support shared clinician and patient decision-making and discussion of individualized treatment planning.
+Conclusions: Machine learning prognostic patient profiles showed promising contributions for IMPT clinical decision support and improving treatment outcomes for patients with CMP. Further research is needed to validate these findings in larger, more diverse populations.",article,0,,,"Zmudzki, Fredrick;Smeets, Rob J E M;Groenewegen, Jan S;van der Graaff, Erik",,,,,,,JMIR Rehabilitation and Assistive Technologies,,,SCOPUS,"Zmudzki Fredrick, 2025, JMIR Rehabilitation and Assistive Technologies",,"Zmudzki Fredrick, 2025, JMIR Rehabilitation and Assistive Technologies"
+2025,11,https://app.dimensions.ai/details/publication/pub.1185862617,Preliminary study: Data analytics for predicting medication adherence in Malaysian arthritis patients,20552076241309505,,,DIGITAL HEALTH,10.1177/20552076241309505,2025-01,"Aziz, Firdaus;Sooriamoorthy, Shubathira;Liew, Bryan;Ahmad, Sharifah M. Syed;Chong, Wei Wen;Malek, Sorayya;Ali, Adliah Mhd","Objective: In multi-ethnic Malaysian populations, understanding and improving medication adherence in arthritis patients is crucial for enhancing treatment outcomes. Non-adherence, whether intentional or due to complex factors, can lead to severe long-term consequences such as increased disability and disease progression. This study analysed and predicted Malaysian arthritis medication adherence using 13 machine learning models.
+Methods: A majority of 151 responders (82.1%) were female and 58.3% had comorbid illnesses. Notably, 90.07% of respondents were non-adherence to their prescription, with significant differences by occupation and aids in medication. This study's machine learning models perform better with recursive feature elimination for feature selection. Key variables included occupation, presence of other diseases, religion, income, medication aid, marital status, and number of medications taken per day. These variables were used to build predictive models for medication adherence.
+Results: Results from machine learning algorithms showed varied performance. Support vector machine, gradient boosting, and random forest models performed best with AUC values of 0.907, 0.775, and 0.632 utilizing all variables. When using selected variables, random forest (AUC = 0.883), gradient boosting (AUC = 0.872), and Bagging (AUC = 0.860) performed best. Model interpretation using SHapley Additive exPlanations analysis identified occupation as the most important variable affecting medication adherence. The study also found that unemployment, concomitant disease, income, medication aid type, marital status, and daily medication count are connected with non-adherence.
+Conclusion: The findings underscore the multifaceted nature of medication adherence in arthritis, highlighting the need for personalized approaches to improve adherence rates.",article,0,,,"Aziz, Firdaus;Sooriamoorthy, Shubathira;Liew, Bryan;Ahmad, Sharifah M. Syed;Chong, Wei Wen;Malek, Sorayya;Ali, Adliah Mhd",,,,,,,DIGITAL HEALTH,,,SCOPUS,"Aziz Firdaus, 2025, DIGITAL HEALTH",,"Aziz Firdaus, 2025, DIGITAL HEALTH"
+2025,197,https://app.dimensions.ai/details/publication/pub.1185864791,Hypothesis: Net benefit as an objective function during development of machine learning algorithms for medical applications,105844,,,International Journal of Medical Informatics,10.1016/j.ijmedinf.2025.105844,2025-02-23,"Vickers, Andrew;Hollingsworth, Alexander;Bozzo, Anthony;Chatterjee, Avijit;Chatterjee, Subrata",Net benefit is the most widely used metric for evaluating the clinical utility of medical prediction models. The approach applies decision analytic theory to weight true and false positives depending on the relative consequences of different decision outcomes. It is plausible that there are at least some machine learning scenarios where optimization of the objective function during model development will not optimize net benefit during model evaluation. We therefore hypothesize that optimizing net benefit during model development will in some cases ultimately lead to higher clinical utility than optimizing for mean square error or some other unweighted loss function. There is some preliminary evidence that this does indeed occur. We accordingly recommend further methodologic research to determine the use cases where net benefit should be the objective function during model development.,article,0,,,"Vickers, Andrew;Hollingsworth, Alexander;Bozzo, Anthony;Chatterjee, Avijit;Chatterjee, Subrata",,,,,,,International Journal of Medical Informatics,,,SCOPUS,"Vickers Andrew, 2025, International Journal of Medical Informatics",,"Vickers Andrew, 2025, International Journal of Medical Informatics"
+2025,8,https://app.dimensions.ai/details/publication/pub.1185883503,Advancements in cache management: a review of machine learning innovations for enhanced performance and security,1441250,,,Frontiers in Artificial Intelligence,10.3389/frai.2025.1441250,2025-02-25,"Krishna, Keshav","Machine learning techniques have emerged as a promising tool for efficient cache management, helping optimize cache performance and fortify against security threats. The range of machine learning is vast, from reinforcement learning-based cache replacement policies to Long Short-Term Memory (LSTM) models predicting content characteristics for caching decisions. Diverse techniques such as imitation learning, reinforcement learning, and neural networks are extensively useful in cache-based attack detection, dynamic cache management, and content caching in edge networks. The versatility of machine learning techniques enables them to tackle various cache management challenges, from adapting to workload characteristics to improving cache hit rates in content delivery networks. A comprehensive review of various machine learning approaches for cache management is presented, which helps the community learn how machine learning is used to solve practical challenges in cache management. It includes reinforcement learning, deep learning, and imitation learning-driven cache replacement in hardware caches. Information on content caching strategies and dynamic cache management using various machine learning techniques in cloud and edge computing environments is also presented. Machine learning-driven methods to mitigate security threats in cache management have also been discussed.",article,0,,,"Krishna, Keshav",,,,,,,Frontiers in Artificial Intelligence,,,SCOPUS,"Krishna Keshav, 2025, Frontiers in Artificial Intelligence",,"Krishna Keshav, 2025, Frontiers in Artificial Intelligence"
+2025,8,https://app.dimensions.ai/details/publication/pub.1185892744,Transfer learning-based hybrid VGG16-machine learning approach for heart disease detection with explainable artificial intelligence,1504281,,,Frontiers in Artificial Intelligence,10.3389/frai.2025.1504281,2025-02-25,"Addisu, Eshetie Gizachew;Yirga, Tahayu Gizachew;Yirga, Hailu Gizachew;Yehuala, Alemu Demeke","Heart disease is a leading cause of mortality worldwide, making accurate early detection essential for effective treatment and management. This study introduces a novel hybrid machine-learning approach that combines transfer learning using the VGG16 convolutional neural network (CNN) with various machine-learning classifiers for heart disease detection. A conditional tabular generative adversarial network (CTGAN) was employed to generate synthetic data samples from actual datasets; these were evaluated using statistical metrics, correlation analysis, and domain expert assessments to ensure the quality of the synthetic datasets. The dataset comprises tabular data with 13 features, which are reshaped into an image-like format and resized to 224x224x3 to meet the input requirements of the VGG16 model. Feature extraction is performed using VGG16, and the extracted features are then fused with the original tabular data. This combined feature set is then used to train various machine learning models, including Support Vector Machines (SVM), Gradient Boosting, Random Forest, Logistic Regression, K-nearest neighbors (KNN), and Decision Trees. Among these models, the VGG16-Random Forest hybrid achieved notable results across all evaluation metrics, including 92% accuracy, 91.3% precision, 92.2% recall, 91.82% specificity, 92.2% sensitivity, and 91.75% F1-score. The hybrid models were also evaluated using unseen datasets to assess the generalizability of the proposed approaches, with the VGG16-Random Forest combination showing relatively promising results. Additionally, explainability is integrated into the model using SHAP values, providing insights into the contribution of each feature to the model's predictions. This hybrid VGG16-ML approach demonstrates the potential for highly accurate and interpretable heart disease detection, offering valuable support in clinical decision-making processes.",article,0,,,"Addisu, Eshetie Gizachew;Yirga, Tahayu Gizachew;Yirga, Hailu Gizachew;Yehuala, Alemu Demeke",,,,,,,Frontiers in Artificial Intelligence,,,SCOPUS,"Addisu Eshetie Gizachew, 2025, Frontiers in Artificial Intelligence",,"Addisu Eshetie Gizachew, 2025, Frontiers in Artificial Intelligence"
+2025,20,https://app.dimensions.ai/details/publication/pub.1185943171,Machine learning-based prediction of distant metastasis risk in invasive ductal carcinoma of the breast,e0310410,2,,PLOS One,10.1371/journal.pone.0310410,2025-02-26,"Dong, Jingru;Lei, Ruijiao;Ma, Feiyang;Yu, Lu;Wang, Lanlan;Xu, Shangzhi;Hu, Yunhua;Sun, Jialin;Zhang, Wenwen;Wang, Haixia;Zhang, Li","More than 90% of deaths due to breast cancer (BC) are due to metastasis-related complications, with invasive ductal carcinoma (IDC) of the breast being the most common pathologic type of breast cancer and highly susceptible to metastasis to distant organs. BC patients who develop cancer metastases are more likely to have a poor prognosis and poor quality of life, so it is extremely important to recognize and diagnose whether distant metastases have occurred in IDC as early as possible. In this study, we develop a non-invasive breast cancer classification system for detecting cancer metastasis. We used Anaconda-Jupyter notebooks to develop various Python programming modules for text mining, data processing, and machine learning (ML) methods. A risk prediction model was constructed based on four algorithms: Random Forest, XGBoost, Logistic Regression, and SVM. Additionally, we developed a hybrid model based on a voting mechanism using these four algorithms as the base models. The models were compared and evaluated by the following metrics: accuracy, precision, recall, F1-score, and area under the ROC curve (AUC) values. The experimental results show that the hybrid model based on the voting mechanism exhibits the best prediction performance (accuracy: 0.867, precision: 0.929, recall: 0.805, F1-score: 0.856, AUC: 0.94). This stable risk prediction model provides a valuable reference support for doctors in assessing and diagnosing the risk of IDC hematogenous metastasis. It also improves the work efficiency of doctors and strives to provide patients with increased chances of survival.",article,0,,,"Dong, Jingru;Lei, Ruijiao;Ma, Feiyang;Yu, Lu;Wang, Lanlan;Xu, Shangzhi;Hu, Yunhua;Sun, Jialin;Zhang, Wenwen;Wang, Haixia;Zhang, Li",,,,,,,PLOS One,,,SCOPUS,"Dong Jingru, 2025, PLOS One",,"Dong Jingru, 2025, PLOS One"
+2025,18,https://app.dimensions.ai/details/publication/pub.1185961518,Microfluidics with Machine Learning for Biophysical Characterization of Cells,447,1,,Annual Review of Analytical Chemistry,10.1146/annurev-anchem-061622-025021,2025-02-25,"Jeon, Hyungkook;Han, Jongyoon","Understanding the biophysical properties of cells is essential for biological research, diagnostics, and therapeutics. Microfluidics enhances biophysical cell characterization by enabling precise manipulation and real-time measurement at the microscale. However, the high-throughput nature of microfluidic systems generates vast amounts of data, complicating analysis. Integrating artificial intelligence (AI) methods, including machine learning and deep learning, with microfluidic technologies addresses these challenges. AI excels at analyzing large, complex datasets, improving the accuracy and efficiency of microfluidic experiments and facilitating new biological discoveries. This review examines the synergy between microfluidics and machine learning for biophysical cell characterization, categorizing existing methods based on the types of input data used for machine learning analysis, highlighting recent advancements, and discussing challenges and future directions in this interdisciplinary field.",article,0,,,"Jeon, Hyungkook;Han, Jongyoon",,,,,,,Annual Review of Analytical Chemistry,472,,SCOPUS,"Jeon Hyungkook, 2025, Annual Review of Analytical Chemistry",,"Jeon Hyungkook, 2025, Annual Review of Analytical Chemistry"
+2025,14,https://app.dimensions.ai/details/publication/pub.1185966140,Machine learning applications in risk management: Trends and research agenda,233,,,F1000Research,10.12688/f1000research.161993.2,2025-04-07,"Valencia-Arias, Alejandro;Garcia, Jesus Alberto Jimenez;Agudelo-Ceballos, Erica;León, Aarón José Alberto Oré;Rojas, Ezequiel Martínez;Henríquez, Julio Leyrer;Ramírez-Ramírez, Diana Marleny","Risk management has become a foundational aspect in numerous industries, propelling the implementation of machine learning technologies for impact assessment, prevention, and decision-making processes. Nevertheless, lacunae in the extant literature persist, particularly with regard to the identification of emergent trends and transversal applications. This study addresses this limitation through a bibliometric analysis of scientific production in Scopus and Web of Science, adhering to the PRISMA-2020 declaration. The findings reveal a substantial growth in publications on machine learning applied to risk management, with an increase of 98.99% between 2018 and 2023. China, South Korea, and the United States are identified as the primary research-producing countries. The analysis also identifies emerging trends, such as the application of machine learning in the evaluation of urban trees and the management of risks associated with the pandemic of severe acute respiratory syndrome (SARS-CoV-2). Key terms include random forest, support vector machines (SVM), and credit risk assessment, while terms such as prediction, postpartum depression, big data, and security emerge as new areas of study. Furthermore, there is a transition from traditional approaches such as stacking to advanced deep learning and feature selection techniques, reflecting the evolution of the discipline.",article,0,,,"Valencia-Arias, Alejandro;Garcia, Jesus Alberto Jimenez;Agudelo-Ceballos, Erica;León, Aarón José Alberto Oré;Rojas, Ezequiel Martínez;Henríquez, Julio Leyrer;Ramírez-Ramírez, Diana Marleny",,,,,,,F1000Research,,,SCOPUS,"Valencia-Arias Alejandro, 2025, F1000Research",,"Valencia-Arias Alejandro, 2025, F1000Research"
+2025,54,https://app.dimensions.ai/details/publication/pub.1186073703,Artificial intelligence and machine learning in knee arthroplasty,28,,,The Knee,10.1016/j.knee.2025.02.014,2025-02-28,"Rodriguez, Hugo C;Rust, Brandon D;Roche, Martin W;Gupta, Ashim","BACKGROUND: Artificial intelligence (AI) and its subset, machine learning (ML), have significantly impacted clinical medicine, particularly in knee arthroplasty (KA). These technologies utilize algorithms for tasks such as predictive analytics and image recognition, improving preoperative planning, intraoperative navigation, and postoperative complication anticipation. This systematic review presents AI-driven tools' clinical implications in total and unicompartmental KA, focusing on enhancing patient outcomes and operational efficiency.
+METHODS: A systematic search was conducted across multiple databases including Cochrane Central Register of Controlled Trials, Embase, OVID Medline, PubMed, and Web of Science, following the PRISMA guidelines for studies published in the English language till March 2024. Inclusion criteria targeted adult human models without geographical restrictions, specifically related to total or unicompartmental KA.
+RESULTS: A total of 153 relevant studies were identified, covering various aspects of ML application for KA. Topics of studies included imaging modalities (n = 28), postoperative primary KA complications (n = 26), inpatient status (length of stay, readmissions, and cost) (n = 24), implant configuration (n = 14), revision (n = 12), patient-reported outcome measures (PROMs) (n = 11), function (n = 11), procedural communication (n = 8), total knee arthroplasty/unicompartmental knee arthroplasty prediction (n = 6), outpatient status (n = 4), perioperative efficiency (n = 4), patient satisfaction (n = 3), opioid usage (n = 3). A total of 66 ML models were described, with 48.7% of studies using multiple approaches.
+CONCLUSION: This review assesses ML applications in knee arthroplasty, highlighting their potential to improve patient outcomes. While current algorithms and AI show promise, our findings suggest areas for enhancement in predictive performance before widespread clinical adoption.",article,0,,,"Rodriguez, Hugo C;Rust, Brandon D;Roche, Martin W;Gupta, Ashim",,,,,,,The Knee,49,,SCOPUS,"Rodriguez Hugo C, 2025, The Knee",,"Rodriguez Hugo C, 2025, The Knee"
+2025,,https://app.dimensions.ai/details/publication/pub.1186111357,Status and Opportunities of Machine Learning Applications in Obstructive Sleep Apnea: A Narrative Review,2025.02.27.25322950,,,medRxiv,10.1101/2025.02.27.25322950,2025-03-01,"Araujo, Matheus Lima Diniz;Winger, Trevor;Ghosn, Samer;Saab, Carl;Srivastava, Jaideep;Kazaglis, Louis;Mathur, Piyush;Mehra, Reena","Background: Obstructive sleep apnea (OSA) is a prevalent and potentially severe sleep disorder characterized by repeated interruptions in breathing during sleep. Machine learning models have been increasingly applied in various aspects of OSA research, including diagnosis, treatment optimization, and developing biomarkers for endotypes and disease mechanisms.
+Objective: This narrative review evaluates the application of machine learning in OSA research, focusing on model performance, dataset characteristics, demographic representation, and validation strategies. We aim to identify trends and gaps to guide future research and improve clinical decision-making that leverages machine learning.
+Methods: This narrative review examines data extracted from 254 scientific publications published in the PubMed database between January 2018 and March 2023. Studies were categorized by machine learning applications, models, tasks, validation metrics, data sources, and demographics.
+Results: Our analysis revealed that most machine learning applications focused on OSA classification and diagnosis, utilizing various data sources such as polysomnography, electrocardiogram data, and wearable devices. We also found that study cohorts were predominantly overweight males, with an underrepresentation of women, younger obese adults, individuals over 60 years old, and diverse racial groups. Many studies had small sample sizes and limited use of robust model validation.
+Conclusion: Our findings highlight the need for more inclusive research approaches, starting with adequate data collection in terms of sample size and bias mitigation for better generalizability of machine learning models in OSA research. Addressing these demographic gaps and methodological opportunities is critical for ensuring more robust and equitable applications of artificial intelligence in healthcare.",article,0,,,"Araujo, Matheus Lima Diniz;Winger, Trevor;Ghosn, Samer;Saab, Carl;Srivastava, Jaideep;Kazaglis, Louis;Mathur, Piyush;Mehra, Reena",,,,,,,medRxiv,,,SCOPUS,"Araujo Matheus Lima Diniz, 2025, medRxiv",,"Araujo Matheus Lima Diniz, 2025, medRxiv"
+2025,63,https://app.dimensions.ai/details/publication/pub.1186113532,Current Status and Future Potential of Machine Learning in Diagnostic Imaging of Endometriosis : A Literature Review,205,283,,Journal of Nepal Medical Association,10.31729/jnma.8897,2025-02-28,"Shrestha, Palpasa;Shrestha, Bibek;Sherestha, Jati;Chen, Jun","The presence of endometrial tissue outside the uterus is a defining characteristic of endometriosis, a chronic systemic illness that affects women of childbearing age. Despite its enigmatic nature, laparoscopy remains the gold standard for diagnosis, while noninvasive methods such as transvaginal ultrasonography and magnetic resonance imaging are commonly used to aid in preoperative planning. In healthcare, AI has emerged as a game-changing innovation, enhancing patient outcomes, reducing costs, and revolutionizing healthcare delivery, particularly in diagnostic radiology. Images can be analyzed using machine learning, a pattern recognition method. The machine learning algorithm first computes the image characteristics deemed significant for making predictions or diagnoses about unseen images.",article,0,,,"Shrestha, Palpasa;Shrestha, Bibek;Sherestha, Jati;Chen, Jun",,,,,,,Journal of Nepal Medical Association,211,,SCOPUS,"Shrestha Palpasa, 2025, Journal of Nepal Medical Association",,"Shrestha Palpasa, 2025, Journal of Nepal Medical Association"
+2025,15,https://app.dimensions.ai/details/publication/pub.1186121534,Application of explainable machine learning for estimating direct and diffuse components of solar irradiance,7402,1,,Scientific Reports,10.1038/s41598-025-91158-x,2025-03-03,"Rajagukguk, Rial A.;Lee, Hyunjin","The inclusion of diffuse horizontal irradiance (DHI) and direct normal irradiance (DNI) is crucial in the context of solar energy applications. However, most solar irradiance instruments primarily prioritize the measurement of global horizontal irradiance (GHI) due to the high cost associated with devices used to measure DNI and DHI. Hence, numerous prior works have investigated various solar decomposition models aimed at computing direct and diffuse irradiance from GHI. The present study introduces a novel separation approach for direct and diffuse irradiance, employing machine learning algorithms and utilizing data with a temporal resolution of 1 min. Three machine learning models utilizing the gradient boost technique are suggested and trained using data collected from 10 stations across the world with different climate conditions. The machine learning model called CatBoost outperforms all the solar decomposition models at every station. It achieves the lowest root mean squared error (RMSE) of 8.73% when calculating DNI. The concept of explainable machine learning is further explored through the utilization of shapley additive explanations (SHAP), which allows for the assessment of the significance and interaction of the input parameters. In summary, the results of this study reveal that humidity is an important parameter for the estimation of DNI and DHI.",article,0,,,"Rajagukguk, Rial A.;Lee, Hyunjin",,,,,,,Scientific Reports,,,SCOPUS,"Rajagukguk Rial A., 2025, Scientific Reports",,"Rajagukguk Rial A., 2025, Scientific Reports"
+2025,,https://app.dimensions.ai/details/publication/pub.1186150618,Harnessing machine learning for rational drug design,209,,,,10.1016/bs.apha.2025.02.001,2025-03-03,"Chaudhary, Sandhya;Rahate, Kalpana;Mishra, Shuchita","A crucial part of biomedical research is drug discovery, which aims to find and create innovative medical treatments for a range of illnesses. However, there are intrinsic obstacles to the traditional approach of discovering novel medications, including high prices, lengthy turnaround times, and poor clinical trial success rates. In recent times, the use of designing algorithms for machine learning has become a groundbreaking way to improve and optimise many stages of medication development. An outline of the quickly developing area of machine learning algorithms for drug discovery is given in this review, emphasising how revolutionary treatment development might be. To effectively get a novel medication into the market, modern medicinal development often involves many interconnected stages. The use of computational tools has become more and more crucial in reducing the time and cost involved in the investigation and creation of new medications. Our latest efforts to combine molecular modelling as well as machine learning to create the computational resources for designing modulators utilising a sensible design influenced by the pocket process that targets protein-protein interactions via AlphaSpace are reviewed in this Perspective. A significant shift in pharmaceutical research has occurred with the introduction of AI in drug discovery, which combines cutting-edge computer techniques with conventional scientific investigation to address enduring problems. By highlighting significant advancements and methodologies, this review paper elucidates the many applications of AI throughout several stages of drug discovery.",inbook,0,,Revolutionizing Drug Discovery:Cutting-Edge Computational Techniques,"Chaudhary, Sandhya;Rahate, Kalpana;Mishra, Shuchita",,,,,,,,230,,SCOPUS,"Chaudhary Sandhya, 2025, ",,"Chaudhary Sandhya, 2025, "
+2025,14,https://app.dimensions.ai/details/publication/pub.1186164187,Artificial Intelligence in Bacterial Infections Control: A Scoping Review,256,3,,Antibiotics,10.3390/antibiotics14030256,2025-03-02,"Abu-El-Ruz, Rasha;AbuHaweeleh, Mohannad Natheef;Hamdan, Ahmad;Rajha, Humam Emad;Sarah, Jood Mudar;Barakat, Kaoutar;Zughaier, Susu M.","Background/Objectives: Artificial intelligence has made significant strides in healthcare, contributing to diagnosing, treating, monitoring, preventing, and testing various diseases. Despite its broad adoption, clinical consensus on AI's role in infection control remains uncertain. This scoping review aims to understand the characteristics of AI applications in bacterial infection control. Results: This review examines the characteristics of AI applications in bacterial infection control, analyzing 54 eligible studies across 5 thematic scopes. The search from 3 databases yielded a total of 1165 articles, only 54 articles met the eligibility criteria and were extracted and analyzed. Five thematic scopes were synthesized from the extracted data; countries, aim, type of AI, advantages, and limitations of AI applications in bacterial infection prevention and control. The majority of articles were reported from high-income countries, mainly by the USA. The most common aims are pathogen identification and infection risk assessment. The most common AI used in infection control is machine learning. The commonest reported advantage is predictive modeling and risk assessment, and the commonest disadvantage is generalizability of the models. Methods: This scoping review was developed according to Arksey and O'Malley frameworks. A comprehensive search across PubMed, Embase, and Web of Science was conducted using broad search terms, with no restrictions. Publications focusing on AI in infection control and prevention were included. Citations were managed via EndNote, with initial title and abstract screening by two authors. Data underwent comprehensive narrative mapping and categorization, followed by the construction of thematic scopes. Conclusions: Artificial intelligence applications in infection control need to be strengthened for low-income countries. More efforts should be dedicated to investing in models that have proven their effectiveness in infection control, to maximize their utilization and tackle challenges.",article,0,,,"Abu-El-Ruz, Rasha;AbuHaweeleh, Mohannad Natheef;Hamdan, Ahmad;Rajha, Humam Emad;Sarah, Jood Mudar;Barakat, Kaoutar;Zughaier, Susu M.",,,,,,,Antibiotics,,,SCOPUS,"Abu-El-Ruz Rasha, 2025, Antibiotics",,"Abu-El-Ruz Rasha, 2025, Antibiotics"
+2025,13,https://app.dimensions.ai/details/publication/pub.1186230041,Applying AI in the Context of the Association Between Device-Based Assessment of Physical Activity and Mental Health: Systematic Review,e59660,,,JMIR mHealth and uHealth,10.2196/59660,2025-03-06,"Woll, Simon;Birkenmaier, Dennis;Biri, Gergely;Nissen, Rebecca;Lutz, Luisa;Schroth, Marc;Ebner-Priemer, Ulrich W;Giurgiu, Marco","BACKGROUND: Wearable technology is used by consumers worldwide for continuous activity monitoring in daily life but more recently also for classifying or predicting mental health parameters like stress or depression levels. Previous studies identified, based on traditional approaches, that physical activity is a relevant factor in the prevention or management of mental health. However, upcoming artificial intelligence methods have not yet been fully established in the research field of physical activity and mental health.
+OBJECTIVE: This systematic review aims to provide a comprehensive overview of studies that integrated passive monitoring of physical activity data measured via wearable technology in machine learning algorithms for the detection, prediction, or classification of mental health states and traits.
+METHODS: We conducted a review of studies processing wearable data to gain insights into mental health parameters. Eligibility criteria were (1) the study uses wearables or smartphones to acquire physical behavior and optionally other sensor measurement data, (2) the study must use machine learning to process the acquired data, and (3) the study had to be published in a peer-reviewed English language journal. Studies were identified via a systematic search in 5 electronic databases.
+RESULTS: Of 11,057 unique search results, 49 published papers between 2016 and 2023 were included. Most studies examined the connection between wearable sensor data and stress (n=15, 31%) or depression (n=14, 29%). In total, 71% (n=35) of the studies had less than 100 participants, and 47% (n=23) had less than 14 days of data recording. More than half of the studies (n=27, 55%) used step count as movement measurement, and 44% (n=21) used raw accelerometer values. The quality of the studies was assessed, scoring between 0 and 18 points in 9 categories (maximum 2 points per category). On average, studies were rated 6.47 (SD 3.1) points.
+CONCLUSIONS: The use of wearable technology for the detection, prediction, or classification of mental health states and traits is promising and offers a variety of applications across different settings and target groups. However, based on the current state of literature, the application of artificial intelligence cannot realize its full potential mostly due to a lack of methodological shortcomings and data availability. Future research endeavors may focus on the following suggestions to improve the quality of new applications in this context: first, by using raw data instead of already preprocessed data. Second, by using only relevant data based on empirical evidence. In particular, crafting optimal feature sets rather than using many individual detached features and consultation with in-field professionals. Third, by validating and replicating the existing approaches (ie, applying the model to unseen data). Fourth, depending on the research aim (ie, generalization vs personalization) maximizing the sample size or the duration over which data are collected.",article,0,,,"Woll, Simon;Birkenmaier, Dennis;Biri, Gergely;Nissen, Rebecca;Lutz, Luisa;Schroth, Marc;Ebner-Priemer, Ulrich W;Giurgiu, Marco",,,,,,,JMIR mHealth and uHealth,,,SCOPUS,"Woll Simon, 2025, JMIR mHealth and uHealth",,"Woll Simon, 2025, JMIR mHealth and uHealth"
+2025,12,https://app.dimensions.ai/details/publication/pub.1186298281,Artificial intelligence-assisted machine learning models for predicting lung cancer survival,100680,,,Asia-Pacific Journal of Oncology Nursing,10.1016/j.apjon.2025.100680,2025-03-07,"Yuan, Yue;Zhang, Guolong;Gu, Yuqi;Hao, Sicheng;Huang, Chen;Xie, Hongxia;Mi, Wei;Zeng, Yingchun","Objective: This study aimed to evaluate the feasibility of large language model-Advanced Data Analysis (ADA) in developing and implementing machine learning models to predict survival outcomes for lung cancer patients, with a focus on its implications for nursing practice.
+Methods: A retrospective study design was employed using a dataset of lung cancer patients. Data included sociodemographic, clinical, treatment-specific, and comorbidity variables. Large language model-ADA was used to build and evaluate three machine learning models. Model performance was validated, and results were presented using calibration plots.
+Results: Of 737 patients, the survival rate of this cohort was 73.3%, with a mean age of 59.32 years. Calibration plots indicated robust model reliability across all models. The Random Forest model demonstrated the highest predictive accuracy among the models. Most critical features identified were preoperative white blood cells (2.2%), preoperative lung function of Forced Expiratory Volume in one second (2.1%), preoperative arterial oxygen saturation (1.9%), preoperative partial pressure of oxygen (1.7%), preoperative albumin (1.6%), preoperative preparation time (1.5%), age at admission (1.5%), preoperative partial pressure of carbon dioxide (1.5%), preoperative hospital stay days (1.5%), and postoperative total days of thoracic tube drainage (1.4%).
+Conclusions: Large language model-ADA effectively facilitates the development of machine learning models for lung cancer survival prediction, enabling non-technical health care professionals to harness the power of advanced analytics. The findings underscore the importance of preoperative factors in predicting outcomes, while also highlighting the need for external validation across diverse settings.",article,0,,,"Yuan, Yue;Zhang, Guolong;Gu, Yuqi;Hao, Sicheng;Huang, Chen;Xie, Hongxia;Mi, Wei;Zeng, Yingchun",,,,,,,Asia-Pacific Journal of Oncology Nursing,,,SCOPUS,"Yuan Yue, 2025, Asia-Pacific Journal of Oncology Nursing",,"Yuan Yue, 2025, Asia-Pacific Journal of Oncology Nursing"
+2025,15,https://app.dimensions.ai/details/publication/pub.1186480887,Incorporating soil information with machine learning for crop recommendation to improve agricultural output,8560,1,,Scientific Reports,10.1038/s41598-025-88676-z,2025-03-12,"Afzal, Hadeeqa;Amjad, Madiha;Raza, Ali;Munir, Kashif;Villar, Santos Gracia;Lopez, Luis Alonso Dzul;Ashraf, Imran","The agriculture field is the basis of a country’s change and financial system. Crops are the main source of revenue for the people. One of the farmer’s most challenging problems is choosing the right crops for their land. This critical decision has a direct impact on productivity and profit. Wrong crop selection not only reduces yields but also causes food shortages, creating more problems for farmers. The best crop depends on many parameters such as illustration humidity, N, K, P, pH, rainfall, and temperature of the soil. Getting advice from experts is not an easy task. This requires intelligent models in crop recommendations that use machine-learning models to suggest suitable crops for soil and other environmental conditions. Temperature, humidity, and pH are important data for growing crops in agriculture. In this study, we gather and preprocess relevant data. To recommend the most suitable crop, we propose a novel ensemble learning approach called RFXG based on random forest (RF) and extreme gradient boosting (XGB) to suggest the best crop out of the twenty-two major crops. To measure the capability of the proposed approach, various machine learning models are utilized including extra tree classifier, multilayer perceptron, RF, decision trees, logistic regression, and XGB classifiers. To get the best performance, optimization of hyperparameter, and K-fold cross-validation procedures are performed. Experimental outcomes show that the proposed RFXG technique achieves a recommendation accuracy is 98%. Specifically, the proposed solution provides immediate recommendations to help farmers make timely decisions.",article,0,,,"Afzal, Hadeeqa;Amjad, Madiha;Raza, Ali;Munir, Kashif;Villar, Santos Gracia;Lopez, Luis Alonso Dzul;Ashraf, Imran",,,,,,,Scientific Reports,,,SCOPUS,"Afzal Hadeeqa, 2025, Scientific Reports",,"Afzal Hadeeqa, 2025, Scientific Reports"
+2025,41,https://app.dimensions.ai/details/publication/pub.1186534536,Machine Learning for Quantitative Prediction of Protein Adsorption on Well-Defined Polymer Brush Surfaces with Diverse Chemical Properties,7534,11,,Langmuir,10.1021/acs.langmuir.4c05151,2025-03-13,"Su, Shiwei;Masuda, Tsukuru;Takai, Madoka","Polymer informatics has attracted increasing attention because machine learning can establish quantitative structure-property relationships in polymer materials. Understanding and controlling protein adsorption on polymer surfaces are crucial for various applications, such as protein immobilization supports, biosensors, and antibiofouling surfaces. However, protein adsorption is a complex phenomenon that is difficult to predict quantitatively owing to the involvement of multiple factors. Therefore, this study aims to establish a machine learning model for protein adsorption on densely packed polymer brushes with various chemical structures, as these surfaces are well-suited for analyzing structure-property correlations between the polymer's chemical structure and adsorption amount during initial protein adsorption. Two proteins, bovine serum albumin (BSA) and lysozyme, are adopted as target proteins, with the expectation that differences in their charge profiles will be reflected in the resulting machine learning model. The descriptors of the polymer brush surfaces include their grafted structures (thickness) and chemical properties, which are described by the contact angle and ζ potential. This allows physicochemical knowledge to be incorporated into the machine learning model. Random forest exhibits the best performance in all situations, accurately predicting the amounts of adsorbed BSA and lysozyme. In addition, the prediction of the contact angle and ζ potential by machine learning also enables a quantitative and explainable prediction of protein adsorption based on theoretical molecular descriptors, ensuring that no characteristics are overlooked. Moreover, the model is used to analyze the contributions of electrostatic and hydrophobic interactions to protein adsorption. In conclusion, a machine learning model is developed to predict protein adsorption on polymer brush surfaces, incorporating descriptors such as the grafted structure, contact angle, and ζ potential. It provides quantitative predictions and analyzes the roles of electrostatic and hydrophobic interactions, advancing the design of functional polymer surfaces for applications in biosensors and antifouling technologies.",article,0,,,"Su, Shiwei;Masuda, Tsukuru;Takai, Madoka",,,,,,,Langmuir,7545,,SCOPUS,"Su Shiwei, 2025, Langmuir",,"Su Shiwei, 2025, Langmuir"
+2025,25,https://app.dimensions.ai/details/publication/pub.1186584986,Comparison and Optimization of Generalized Stamping Machine Fault Diagnosis Models Using Various Transfer Learning Methodologies,1779,6,,Sensors,10.3390/s25061779,2025-03-13,"Hwang, Po-Wen;Chang, Yuan-Jen;Tsai, Hsieh-Chih;Tu, Yu-Ta;Yang, Hung-Pin","The integration of artificial intelligence (AI) with stamping technology has become increasingly critical in smart manufacturing, driven by advancements in both fields. Total clearance, a crucial determinant of both process and product quality in stamping operations, significantly impacts cutting precision, material deformation, and the longevity of stamping equipment. Consequently, real-time monitoring and prediction of total clearance are essential for effective process control and fault diagnosis. However, the heterogeneity of stamping machine designs necessitates the development of numerous machine-specific models, posing a significant challenge for practical implementation. This research addresses this challenge by developing a generalized fault diagnosis model applicable across multiple stamping machine types. Specifically, the model is designed to monitor four distinct machine models: OCP-110, G2-110, G2-160, and ST1-110. Vibration data, acquired using accelerometers strategically placed at two distinct sensor locations on each machine, serve as the primary input for the model. Four prominent deep learning architectures-a 10-layer convolutional neural network (CNN), a CNN with residual connections (CNN-Res), VGG16, and ResNet50-were rigorously evaluated in conjunction with fine-tuning strategies to determine the optimal model architecture. The resulting generalized fault diagnosis model achieved an average accuracy, recall rate, and F1 score exceeding 99%, demonstrating its efficacy and reliability for real-world applications. This proposed approach offers the potential for scalability to additional stamping machine types and operational conditions, thereby streamlining the deployment of predictive maintenance systems by equipment manufacturers.",article,0,,,"Hwang, Po-Wen;Chang, Yuan-Jen;Tsai, Hsieh-Chih;Tu, Yu-Ta;Yang, Hung-Pin",,,,,,,Sensors,,,SCOPUS,"Hwang Po-Wen, 2025, Sensors",,"Hwang Po-Wen, 2025, Sensors"
+2025,25,https://app.dimensions.ai/details/publication/pub.1186636182,Use machine learning to predict treatment outcome of early childhood caries,389,1,,BMC Oral Health,10.1186/s12903-025-05768-y,2025-03-15,"Wu, Yafei;Jia, Maoni;Fang, Ya;Duangthip, Duangporn;Chu, Chun Hung;Gao, Sherry Shiqian","BackgroundEarly childhood caries (ECC) is a major oral health problem among preschool children that can significantly influence children’s quality of life. Machine learning can accurately predict the treatment outcome but its use in ECC management is limited. The aim of this study is to explore the application of machine learning in predicting the treatment outcome of ECC.MethodsThis study was a secondary analysis of a recently published clinical trial that recruited 1,070 children aged 3- to 4-year-old with ECC. Machine learning algorithms including Naive Bayes, logistic regression, decision tree, random forest, support vector machine, and extreme gradient boosting were adopted to predict the caries-arresting outcome of ECC at 30-month follow-up after receiving fluoride and silver therapy. Candidate predictors included clinical parameters (caries experience and oral hygiene status), oral health-related behaviours (toothbrushing habits, feeding history and snacking preference) and socioeconomic backgrounds of the children. Model performance was evaluated using discrimination and calibration metrics including accuracy, recall, precision, F1 score, area under the receiver operating characteristic curve (AUROC) and Brier score. Shapley additive explanations were deployed to identify the important predictors.ResultsAll machine learning models showed good performance in predicting the treatment outcome of ECC. The accuracy, recall, precision, F1 score, AUROC, and Brier score of the six models ranged from 0.674 to 0.740, 0.731 to 0.809, 0.762 to 0.802, 0.741 to 0.804, 0.771 to 0.859, and 0.134 to 0.227, respectively. The important predictors of the caries-arresting outcome were the surface and tooth location of the carious lesions, newly developed caries during follow-ups, baseline caries experience, whether the children had assisted toothbrushing and oral hygiene status.ConclusionsMachine learning can provide promising predictions of the treatment outcome of ECC. The identified key predictors would be particularly informative for targeted management of ECC.",article,0,,,"Wu, Yafei;Jia, Maoni;Fang, Ya;Duangthip, Duangporn;Chu, Chun Hung;Gao, Sherry Shiqian",,,,,,,BMC Oral Health,,,SCOPUS,"Wu Yafei, 2025, BMC Oral Health",,"Wu Yafei, 2025, BMC Oral Health"
+2025,20,https://app.dimensions.ai/details/publication/pub.1186669091,"Predicting treatment response to cognitive behavior therapy in social anxiety disorder on the basis of demographics, psychiatric history, and scales: A machine learning approach",e0313351,3,,PLOS One,10.1371/journal.pone.0313351,2025-03-18,"Bukhari, Qasim;Rosenfield, David;Hofmann, Stefan G.;Gabrieli, John D.E.;Ghosh, Satrajit S","Only about half of patients with social anxiety disorder (SAD) respond substantially to cognitive behavioral therapy (CBT). However, there has been little evidence available to clinicians or patients about whether any individual patient is more or less likely to have a positive response to CBT. Here, we used machine learning on data from 157 patients to examine whether individual patient responses to CBT can be predicted based on demographic information, psychiatric history, and self-reported or clinician-reported scales, subscales and questionnaires acquired prior to treatment. Machine learning models were able to explain about 26% of the variance in final treatment improvements. To assess generalizability, we evaluated multiple machine learning models using cross-validation and determined which input features were essential for prediction. While prediction accuracy was similar across models, the importance of specific features varied across models. In general, the combination of total scale score, subscale scores and responses to individual questions on a severity measure, the Liebowitz Social Anxiety Scale (LSAS), was the most informative in achieving the highest predictions that alone accounted for about 26% of the variance in treatment outcome. Demographic information, psychiatric history, personality measures, other self-reported or clinician-reported questionnaires, and clinical scales related to anxiety, depression, and quality of life provided no additional predictive power. These findings indicate that combining scaled and individual responses to LSAS questions are informative for predicting individual response to CBT in patients with SAD.",article,0,,,"Bukhari, Qasim;Rosenfield, David;Hofmann, Stefan G.;Gabrieli, John D.E.;Ghosh, Satrajit S",,,,,,,PLOS One,,,SCOPUS,"Bukhari Qasim, 2025, PLOS One",,"Bukhari Qasim, 2025, PLOS One"
+2025,209,https://app.dimensions.ai/details/publication/pub.1186682925,Progress in machine learning-supported electronic nose and hyperspectral imaging technologies for food safety assessment: A review,116285,,,Food Research International,10.1016/j.foodres.2025.116285,2025-03-17,"Girmatsion, Mogos;Tang, Xiaoqian;Zhang, Qi;Li, Peiwu","The growing concern over food safety, driven by threats such as food contaminations and adulterations has prompted the adoption of advanced technologies like electronic nose (e-nose) and hyperspectral imaging (HSI), which are increasingly enhanced by machine learning innovations. This paper aims to provide a comprehensive review on food safety, by combining insights from both e-nose and HSI technologies alongside machine learning algorithms. First, the basic principles of e-nose, HSI, and machine learning, with particular emphasis on artificial neural network (ANN) and deep learning (DL) are briefly discussed. The review then examines how machine learning enhances the performance of e-nose and HSI, followed by an exploration of recent applications in detecting food hazards, including drug residues, microbial contaminants, pesticide residues, toxins, and adulterants. Subsequently, key limitations encountered in the applications of machine learning, e-nose and HSI, along with future perspectives on the potential advancements of these technologies are highlighted. E-nose and HSI technologies have shown their great potential for applications in food safety assessment through machine learning assistance. Despite this, their use is primarily limited to laboratory environments, restricting their real-world applications. Additionally, the lack of standardized protocols hampers their acceptance and the reproducibility of tests in food safety assessments. Thus, further research is essential to address these limitations and enhance the effectiveness of e-nose and HSI technologies in practical applications. Ultimately, this paper offers a detailed understanding of both technologies, highlighting the pivotal role of machine learning and presenting insights into their innovative applications within food safety evaluation.",article,0,,,"Girmatsion, Mogos;Tang, Xiaoqian;Zhang, Qi;Li, Peiwu",,,,,,,Food Research International,,,SCOPUS,"Girmatsion Mogos, 2025, Food Research International",,"Girmatsion Mogos, 2025, Food Research International"
+2025,14,https://app.dimensions.ai/details/publication/pub.1186689972,Applications of Machine Learning (ML) in the context of marketing: a bibliometric approach,92,,,F1000Research,10.12688/f1000research.160010.2,2025-03-17,"Cardona-Acevedo, Sebastián;Agudelo-Ceballos, Erica;Arango-Botero, Diana;Valencia-Arias, Alejandro;De La Cruz Ramírez Dávila, Juana;Garcia, Jesus Alberto Jimenez;Goycochea, Carlos Flores;Rojas, Ezequiel Martínez","Currently, machine learning applications in marketing allow to optimize strategies, personalize experiences and improve decision making. However, there are still several research gaps, so the objective is to examine the research trends in the use of machine learning in marketing. A bibliometric analysis is proposed to assess the current scientific activity, following the parameters established by PRISMA-2020. Machine learning applications in marketing have experienced steady growth and increased attention in the academic community. Key references, such as Miklosik and Evans, and prominent journals, such as IEEE Access and Journal of Business Research, have been identified. A thematic evolution towards big data and digital marketing is observed, and thematic clusters such as ""digital marketing"", ""interpretation"", ""prediction"", and ""healthcare"" stand out. These findings demonstrate the continued importance and research potential of this evolving field.",article,0,,,"Cardona-Acevedo, Sebastián;Agudelo-Ceballos, Erica;Arango-Botero, Diana;Valencia-Arias, Alejandro;De La Cruz Ramírez Dávila, Juana;Garcia, Jesus Alberto Jimenez;Goycochea, Carlos Flores;Rojas, Ezequiel Martínez",,,,,,,F1000Research,,,SCOPUS,"Cardona-Acevedo Sebastián, 2025, F1000Research",,"Cardona-Acevedo Sebastián, 2025, F1000Research"
+2025,27,https://app.dimensions.ai/details/publication/pub.1186718158,Harnessing the leading edge: machine learning ventures in chemistry and materials science,8597,17,,Physical Chemistry Chemical Physics,10.1039/d5cp00373c,2025-04-30,"Li, Yuheng;Guo, Fengming;Lien, Shui-Yang;Bin Mohd Yusoff, Abd Rashid;Zheng, Zhihong;Zhang, Jingyun;Gao, Peng","The widespread application of machine learning (ML) is profoundly transforming traditional research methods in materials science and chemistry, bringing new opportunities while also posing significant challenges and risks. Improper use of ML methods can lead to biased and misleading research outcomes. This review outlines the application processes of ML in the fields of materials science and chemistry, providing an in-depth analysis of potential issues at each stage with case studies, including data management, model construction, evaluation, and shared risks in data reporting. We emphasize the necessity of standardized use of ML and highlight the current crises faced in ML applications in scientific research. This review also summarizes a series of strategies to ensure the reliability and scientific validity of research results. It aims to offer practical guidance to researchers, helping them leverage the advantages of ML while applying these tools in a scientifically sound and compliant manner, avoiding common pitfalls, and promoting more rigorous research practices in materials science and chemistry.",article,0,,,"Li, Yuheng;Guo, Fengming;Lien, Shui-Yang;Bin Mohd Yusoff, Abd Rashid;Zheng, Zhihong;Zhang, Jingyun;Gao, Peng",,,,,,,Physical Chemistry Chemical Physics,8634,,SCOPUS,"Li Yuheng, 2025, Physical Chemistry Chemical Physics",,"Li Yuheng, 2025, Physical Chemistry Chemical Physics"
+2025,47,https://app.dimensions.ai/details/publication/pub.1186731701,Systematic Bias of Machine Learning Regression Models and Correction,4974,6,,IEEE Transactions on Pattern Analysis and Machine Intelligence,10.1109/tpami.2025.3552368,2025-05-07,"Lee, Hwiyoung;Chen, Shuo","Machine learning models for continuous outcomes often yield systematically biased predictions, particularly for values that largely deviate from the mean. Specifically, predictions for large-valued outcomes tend to be negatively biased (underestimating actual values), while those for small-valued outcomes are positively biased (overestimating actual values). We refer to this linear central tendency warped bias as the ""systematic bias of machine learning regression"". In this paper, we first demonstrate that this systematic prediction bias persists across various machine learning regression models, and then delve into its theoretical underpinnings. To address this issue, we propose a general constrained optimization approach designed to correct this bias and develop computationally efficient implementation algorithms. Simulation results indicate that our correction method effectively eliminates the bias from the predicted outcomes. We apply the proposed approach to the prediction of brain age using neuroimaging data. In comparison to competing machine learning regression models, our method effectively addresses the longstanding issue of ""systematic bias of machine learning regression"" in neuroimaging-based brain age calculation, yielding unbiased predictions of brain age.",article,0,,,"Lee, Hwiyoung;Chen, Shuo",,,,,,,IEEE Transactions on Pattern Analysis and Machine Intelligence,4983,,SCOPUS,"Lee Hwiyoung, 2025, IEEE Transactions on Pattern Analysis and Machine Intelligence",,"Lee Hwiyoung, 2025, IEEE Transactions on Pattern Analysis and Machine Intelligence"
+2025,25,https://app.dimensions.ai/details/publication/pub.1186801005,Enhancing Security in 5G Edge Networks: Predicting Real-Time Zero Trust Attacks Using Machine Learning in SDN Environments,1905,6,,Sensors,10.3390/s25061905,2025-03-19,"Ashfaq, Fiza;Wasim, Muhammad;Shah, Mumtaz Ali;Ahad, Abdul;Pires, Ivan Miguel","The Internet has been vulnerable to several attacks as it has expanded, including spoofing, viruses, malicious code attacks, and Distributed Denial of Service (DDoS). The three main types of attacks most frequently reported in the current period are viruses, DoS attacks, and DDoS attacks. Advanced DDoS and DoS attacks are too complex for traditional security solutions, such as intrusion detection systems and firewalls, to detect. The combination of machine learning methods with AI-based machine learning has led to the introduction of several novel attack detection systems. Due to their remarkable performance, machine learning models, in particular, have been essential in identifying DDoS attacks. However, there is a considerable gap in the work on real-time detection of such attacks. This study uses Mininet with the POX Controller to simulate an environment to detect DDoS attacks in real-time settings. The CICDDoS2019 dataset identifies and classifies such attacks in the simulated environment. In addition, a virtual software-defined network (SDN) is used to collect network information from the surrounding area. When an attack occurs, the pre-trained models are used to analyze the traffic and predict the attack in real-time. The performance of the proposed methodology is evaluated based on two metrics: accuracy and detection time. The results reveal that the proposed model achieves an accuracy of 99% within 1 s of the detection time.",article,0,,,"Ashfaq, Fiza;Wasim, Muhammad;Shah, Mumtaz Ali;Ahad, Abdul;Pires, Ivan Miguel",,,,,,,Sensors,,,SCOPUS,"Ashfaq Fiza, 2025, Sensors",,"Ashfaq Fiza, 2025, Sensors"
+2025,66,https://app.dimensions.ai/details/publication/pub.1186829639,Early social interactions and young school‐aged children's behavioral problems: Converging evidence from theory‐ and data‐driven approaches,1539,10,,Journal of Child Psychology and Psychiatry,10.1111/jcpp.14166,2025-03-20,"Liang, Jiahao;Wang, Yiji","BACKGROUND: Although prior studies have established the relation between social interactions and behavioral adjustment, it remains unclear whether aspects of early social interactions are uniquely related to behavioral problems and the relative importance of each in predicting internalizing and externalizing problems. Using traditional theory-driven and novel data-driven perspectives, this longitudinal study simultaneously evaluated the role of preschool mother-child, teacher -child, and peer interactions in predicting internalizing and externalizing problems in early grade school.
+METHODS: At 36 months, the quality of children's social interactions with mothers, teachers, and peers were observed and coded (N = 1,028). Mothers later reported children's internalizing and externalizing problems in first grade. Theory-driven structural equation modeling (SEM) and data-driven machine learning models (i.e., random forests and support vector machines) were performed separately for data analysis.
+RESULTS: The results showed that machine learning models, particularly support vector machines, outperformed SEM in model performance. Regarding the relative importance of predictors, SEM suggested that indicators of early peer interactions uniquely predicted behavioral problems in early grade school when those of teacher-child and mother-child interactions were considered simultaneously. Machine learning models consistently demonstrated that indicators of early peer interactions had the highest feature importance and were among the highest ranking predictors of children's subsequent behavioral adjustment.
+CONCLUSIONS: The findings contribute converging evidence from theory- and data-driven approaches to better understand the longitudinal associations between preschoolers' social interactions and later behavioral adjustments in early grade school.",article,0,,,"Liang, Jiahao;Wang, Yiji",,,,,,,Journal of Child Psychology and Psychiatry,1550,,SCOPUS,"Liang Jiahao, 2025, Journal of Child Psychology and Psychiatry",,"Liang Jiahao, 2025, Journal of Child Psychology and Psychiatry"
+2025,190,https://app.dimensions.ai/details/publication/pub.1186896312,Which approach better predicts diabetes: Traditional econometric methods or machine learning? Evidence from a cross-sectional study in South Korea,110035,,,Computers in Biology and Medicine,10.1016/j.compbiomed.2025.110035,2025-03-23,"Wang, Jue;Yao, Xin","To prevent chronic disease from getting worse, it is important to detect and predict it at an early stage. Therefore, the accuracy of the prediction is particularly important. To investigate the accuracy of different methods, this study compares the out-of-sample errors of machine learning algorithms and traditional econometric methods in predicting diabetes. The object of prediction in this study is fasting blood glucose, and the machine learning algorithms used are stepwise selection, bagging, random forests and support vector machine (SVM). In addition, we demonstrate the linear combination of above machine learning algorithms in this study. The findings indicate that the combined model outperforms both traditional econometric models and individual machine learning algorithms. However, the predictive performance of individual machine learning models does not consistently surpass that of traditional econometric approaches. Based on the data characteristics analyzed in this study, a possible explanation for this finding is that traditional econometric methods may exhibit superior performance in linear data prediction. Finally, the analysis of variable importance suggests that medical indicators and physical condition may play a more significant role in determining fasting blood glucose compared to hereditary factors. To further validate our results, we applied the same methodology to predict hypertension using the same dataset. The findings similarly indicated that the predictive ability of individual machine learning algorithms does not always surpass that of traditional econometric models. And a linear combination of the four machine learning algorithms enhances the predictive accuracy for hypertension.",article,0,,,"Wang, Jue;Yao, Xin",,,,,,,Computers in Biology and Medicine,,,SCOPUS,"Wang Jue, 2025, Computers in Biology and Medicine",,"Wang Jue, 2025, Computers in Biology and Medicine"
+2025,139,https://app.dimensions.ai/details/publication/pub.1186930959,Automated ADHD detection using dual-modal sensory data and machine learning,104328,1,,Medical Engineering & Physics,10.1016/j.medengphy.2025.104328,2025-03-24,"Ji, Yanqing;Zhang-Lea, Janet;Tran, John","This study explores using dual-modal sensory data and machine learning to objectively identify Attention-Deficit/Hyperactivity Disorder (ADHD), a neurodevelopmental disorder traditionally diagnosed through subjective clinical evaluations. Six machine learning algorithms, including Logistic Regression (LR), Random Forest (RF), XGBoost (XGB), LightGBM (LGBM), Neural Network (NN), and Support Vector Machine (SVM), were evaluated using both activity and heart rate variability (HRV) data collected from 103 participants. The results show that both activity and HRV data performed similarly when analyzed individually. However, when the two datasets were combined, the highest F1-score increased by 12 % compared to the activity data and 23 % compared to the HRV data. This combination leverages the complementary strengths of both data, representing a key contribution of our work. With the combined data, the SVM model performed best, achieving an F1-Score of 0.87 and a Matthews Correlation Coefficient of 0.77. This study highlights the significant potential of interdisciplinary collaboration and the use of diverse data sources to advance ADHD detection through cutting-edge machine learning techniques.",article,0,,,"Ji, Yanqing;Zhang-Lea, Janet;Tran, John",,,,,,,Medical Engineering & Physics,,,SCOPUS,"Ji Yanqing, 2025, Medical Engineering & Physics",,"Ji Yanqing, 2025, Medical Engineering & Physics"
+2025,25,https://app.dimensions.ai/details/publication/pub.1186956294,Integration of Accelerometers and Machine Learning with BIM for Railway Tight- and Wide-Gauge Detection,1998,7,,Sensors,10.3390/s25071998,2025-03-22,"Sresakoolchai, Jessada;Manakul, Chayutpong;Cheputeh, Ni-Asri","Railway tight and wide gauges are critical factors affecting the safety and reliability of railway systems. Undetected tight and wide gauges can lead to derailments, posing significant risks to operations and passenger safety. This study explores a novel approach to detecting railway tight and wide gauges by integrating accelerometer data, machine-learning techniques, and building information modeling (BIM). Accelerometers installed on axle boxes provide real-time dynamic data, capturing anomalies indicative of tight and wide gauges. These data are processed and analyzed using supervised machine-learning algorithms to classify and predict potential tight- and wide-gauge events. The integration with BIM offers a spatial and temporal framework, enhancing the visualization and contextualization of detected issues. BIM's capabilities allow for the precise mapping of tight- and wide-gauge locations, streamlining maintenance workflows and resource allocation. Results demonstrate high accuracy in detecting and predicting tight and wide gauges, emphasizing the reliability of machine-learning models when coupled with accelerometer data. This research contributes to railway maintenance practices by providing an automated, data-driven methodology that enhances the proactive identification of tight and wide gauges, reducing the risk of derailments and maintenance costs. Additionally, the integration of machine learning and BIM highlights the potential for comprehensive digital solutions in railway asset management.",article,0,,,"Sresakoolchai, Jessada;Manakul, Chayutpong;Cheputeh, Ni-Asri",,,,,,,Sensors,,,SCOPUS,"Sresakoolchai Jessada, 2025, Sensors",,"Sresakoolchai Jessada, 2025, Sensors"
+2025,23,https://app.dimensions.ai/details/publication/pub.1187019736,The Current Research Landscape on the Machine Learning Application in Autism Spectrum Disorder: A Bibliometric Analysis From 1999 to 2023,1442,11,,Current Neuropharmacology,10.2174/011570159x332833241222191422,2025-01-01,"Li, Xinyu;Huang, Wei;Tan, Rongrong;Xu, Caijuan;Chen, Xi;Zhang, Qian;Li, Sixin;Liu, Ying;Qiu, Huiwen;Bi, Changlong;Cao, Hui","BACKGROUND: Language deficits, restricted and repetitive interests, and social difficulties are among the characteristics of autism spectrum disorder (ASD). Machine learning and neuroimaging have also been combined to examine ASD. Utilizing bibliometric analysis, this study examines the current state and hot topics in machine learning for ASD.
+OBJECTIVE: A research bibliometric analysis of the machine learning application in ASD trends, including research trends and the most popular topics, as well as proposed future directions for research.
+METHODS: From 1999 to 2023, the Web of Science Core Collection (WoSCC) was searched for publications relating to machine learning and ASD. Authors, articles, journals, institutions, and countries were characterized using Microsoft Excel 2021 and VOSviewer. Analysis of knowledge networks, collaborative maps, hotspots, and trends was conducted using VOSviewer and CiteSpace.
+RESULTS: A total of 1357 papers were identified between 1999 and 2023. There was a slow growth in publications until 2016; then, between 2017 and 2023, a sharp increase was recorded. Among the most important contributors to this field were the United States, China, India, and England. Among the top major research institutions with numerous publications were Stanford University, Harvard Medical School, the University of California, the University of Pennsylvania, and the Chinese Academy of Sciences. Wall, Dennis P. was the most productive and highest-cited author. Scientific Reports, Frontiers In Neuroscience Autism Research, and Frontiers In Psychiatry were the three productive journals. ""autism spectrum disorder"", ""machine learning"", ""children"", ""classification"" and ""deep learning"" are the central topics in this period.
+CONCLUSION: Cooperation and communication between countries/regions need to be enhanced in future research. A shift is taking place in the research hotspot from ""Alzheimer's Disease"", ""Mild Cognitive Impairment"" and ""cortex"" to ""artificial intelligence"", ""deep learning"", ""electroencephalography"" and ""pediatrics"". Crowdsourcing machine learning applications and electroencephalography for ASD diagnosis should be the future development direction. Future research about these hot topics would promote understanding in this field.",article,0,,,"Li, Xinyu;Huang, Wei;Tan, Rongrong;Xu, Caijuan;Chen, Xi;Zhang, Qian;Li, Sixin;Liu, Ying;Qiu, Huiwen;Bi, Changlong;Cao, Hui",,,,,,,Current Neuropharmacology,1462,,SCOPUS,"Li Xinyu, 2025, Current Neuropharmacology",,"Li Xinyu, 2025, Current Neuropharmacology"
+2025,18,https://app.dimensions.ai/details/publication/pub.1187052696,Innovative Machine Learning Approaches for Predicting the Asphalt Content During Marshall Design of Asphalt Mixtures,1474,7,,Materials,10.3390/ma18071474,2025-03-26,"Al-Ammari, Mutahar;Dong, Ruikun;Nasser, Mohammed;Al-Maswari, Abdullah","A flexible pavement with a proper Marshall mix design is essential for ensuring driving longevity, safety, and comfort. The increasing labor demands, costs, and time consumption for evaluating the Marshall mix design properties are due to extensive sample preparation, testing procedures, and material requirements. Consequently, this study aims to compare the conventional method of calculating the optimum asphalt content in Marshall mix design with machine learning approaches. This study focused on identifying the optimal asphalt content through the use of advanced machine learning methods, aiming to improve the accuracy of predicting the performance of asphalt mixtures. Therefore, this research investigates the application of various machine learning-based regression techniques to predict the properties of asphalt mixtures, focusing on evaluating their effectiveness in modeling this complex relationship. The main properties of interest include the Marshall stability, flow, VMA, VFA, and unit weight, all of which adhere to the Marshall mix design. A substantial database comprising 60 datasets was curated to aid in the development of these predictive models. Two stages were carried out in this research. The first stage was focused on determining the ideal asphalt content through conventional techniques, while the second stage involved comparing various algorithms to improve the prediction capabilities for asphalt pavement performance. At the end of the study, the comparisons of the various algorithms for the asphalt mixture parameters revealed that the neural network model outperformed all the others, achieving the highest accuracy based on R2 and MSE values. This highlights the neural network's effectiveness in capturing the complexities of asphalt mixtures and its superior predictive capabilities compared to conventional methods, emphasizing its advantages in enhancing accuracy and reliability in asphalt mixture analysis.",article,0,,,"Al-Ammari, Mutahar;Dong, Ruikun;Nasser, Mohammed;Al-Maswari, Abdullah",,,,,,,Materials,,,SCOPUS,"Al-Ammari Mutahar, 2025, Materials",,"Al-Ammari Mutahar, 2025, Materials"
+2025,18,https://app.dimensions.ai/details/publication/pub.1187149247,Machine Learning-Based Prediction of First Trimester Down Syndrome Risk in East Asian Populations,1109,0,,Risk Management and Healthcare Policy,10.2147/rmhp.s511035,2025-03,"Chen, Yen-Tin;Chen, Gina Jinna;Lin, Yu-Shiang","Purpose: Down syndrome is the most common chromosomal abnormality in newborns, often leading to developmental delays and congenital structural anomalies. This study employed multiple machine learning models to perform risk prediction and result exploration for first-trimester Down syndrome in East Asian populations, aiming to identify an optimal risk prediction model that will enhance future predictions of Down syndrome risk and improve the efficiency of the screening process.
+Patients and Methods: This study collected data from the Down syndrome screening database at Taipei Chang Gung Memorial Hospital from May 1, 2018, to February 29, 2024. The dataset included 3,812 cases available for analysis, comprising 165 high-risk cases and 3,647 low-risk cases. Fourteen features (including maternal age, nuchal translucency thickness, serum markers, etc.) were input into the twelve machine learning models, along with seven data-balancing algorithms, to explore the risk prediction outcomes. The performance of these models was thoroughly evaluated using AUC (Area Under the Curve), accuracy, precision, recall, and F1 scores.
+Results: Among the twelve machine learning models, the highest recall of 0.84 for high-risk cases was achieved by LightGBM combined with the RUS (Random Undersampling) data balancing algorithm. The highest AUC of 0.939 was attained by the ANN and LSTM models when combined with the ROS (Random Oversampling) data balancing algorithm.
+Conclusion: The proposed ANN machine learning model, based on deep neural networks and combined with the ROS data balancing method, achieved an impressive AUC of 0.939 for classifying first-trimester Down syndrome risk in the East Asian population. Notably, this model also achieved an outstanding classification accuracy of 0.97. These results demonstrate the potential of the proposed ANN machine learning model for the accurate prediction of first-trimester Down syndrome risk.",article,0,,,"Chen, Yen-Tin;Chen, Gina Jinna;Lin, Yu-Shiang",,,,,,,Risk Management and Healthcare Policy,1120,,SCOPUS,"Chen Yen-Tin, 2025, Risk Management and Healthcare Policy",,"Chen Yen-Tin, 2025, Risk Management and Healthcare Policy"
+2025,26,https://app.dimensions.ai/details/publication/pub.1187150067,Enhancing Personalized Chemotherapy for Ovarian Cancer: Integrating Gene Expression Data with Machine Learning,959,3,,Asian Pacific Journal of Cancer Prevention : APJCP,10.31557/apjcp.2025.26.3.959,2025-03-01,"Khalsan, Mahmood;Al-Alloosh, Fawaz;Al-Khafaji, Ahmed SK","OBJECTIVE: Ovarian cancer's complexity and heterogeneity pose significant challenges in treatment, often resulting in suboptimal chemotherapy outcomes. This study aimed to leverage machine learning algorithms, gene selection, and gene expression data to improve chemotherapy results.
+METHODS: The mutual_info_classif approach was employed to identify the most informative genes for predicting treatment responses. Ten machine learning techniques were used to assess and optimize the predictive potential of these genes.
+RESULT: By examining the reciprocal relationships between gene expression and chemotherapy outcomes, the study identified a subset of 20 critical genes essential for treatment efficacy. Among the selected genes, the Random Forest classifier demonstrated the highest accuracy, achieving 97% accuracy, 98% precision, 97% recall, and a 97.5% F1-score in predicting treatment responses. With statistical significance (p = 0.019), the carboplatin predictor successfully distinguished between platinum-sensitive and platinum-resistant patients. Additionally, the combined predictor for the platinum-taxane regimen revealed a significant difference in survival between predicted responders and non-responders, with median survival times of 12.9 months and 8.1 months, respectively (p < 0.045).
+CONCLUSION: The exceptional performance of this model highlights its ability to integrate complex gene expression data, facilitating the development of personalized chemotherapy regimens.",article,0,,,"Khalsan, Mahmood;Al-Alloosh, Fawaz;Al-Khafaji, Ahmed SK",,,,,,,Asian Pacific Journal of Cancer Prevention : APJCP,967,,SCOPUS,"Khalsan Mahmood, 2025, Asian Pacific Journal of Cancer Prevention : APJCP",,"Khalsan Mahmood, 2025, Asian Pacific Journal of Cancer Prevention : APJCP"
+2025,20,https://app.dimensions.ai/details/publication/pub.1187176717,Predicting a failure of postoperative thromboprophylaxis in non-small cell lung cancer: A stacking machine learning approach,e0320674,4,,PLOS One,10.1371/journal.pone.0320674,2025-04-01,"Hao, Ligang;Zhang, Junjie;Di, Yonghui;Qi, Zheng;Zhang, Peng","BACKGROUND: Non-small-cell lung cancer (NSCLC) and its surgery significantly increase the venous thromboembolism (VTE) risk. This study explored the VTE risk factors and established a machine-learning model to predict a failure of postoperative thromboprophylaxis.
+METHODS: This retrospective study included patients with NSCLC who underwent surgery between January 2018 and November 2022. The patients were randomized 7:3 to the training and test sets. Nine machine learning models were constructed. The three most predictive machine-learning classifiers were chosen as the first layer of the stacking machine-learning model, and logistic regression was the second layer of the meta-learning model.
+RESULTS: This study included 362 patients, including 58 (16.0%) with VTE. Based on the multivariable logistic regression analysis, age, platelets, D-dimers, albumin, smoking history, and epidermal growth factor receptor (EGFR) exon 21 mutation were used to develop the nine machine-learning models. LGBM Classifier, RandomForest Classifier, and GNB were chosen for the first layer of the stacking machine learning model. The area under the received operating characteristics curve (ROC-AUC), accuracy, sensitivity, and specificity of the stacking machine learning model in the training/test set were 0.984/0.979, 0.949/0.954, 0.935/1.000, and 0.958/0.887, respectively. In the validation set, the final stacking machine learning model demonstrated an ROC AUC of 0.983, accuracy of 0.937, sensitivity of 0.978, and specificity of 0.947. The decision curve analyses revealed high benefits.
+CONCLUSION: The stacking machine learning model based on EGFR mutation and clinical characteristics had a predictive value for postoperative VTE in patients with NSCLC.",article,0,,,"Hao, Ligang;Zhang, Junjie;Di, Yonghui;Qi, Zheng;Zhang, Peng",,,,,,,PLOS One,,,SCOPUS,"Hao Ligang, 2025, PLOS One",,"Hao Ligang, 2025, PLOS One"
+2025,11,https://app.dimensions.ai/details/publication/pub.1187221116,Applications and Considerations of Artificial Intelligence in Veterinary Sciences: A Narrative Review,e70315,3,,Veterinary Medicine and Science,10.1002/vms3.70315,2025-04-02,"Akbarein, Hesameddin;Taaghi, Mohammad Hussein;Mohebbi, Mahyar;Soufizadeh, Parham","In recent years, artificial intelligence (AI) has brought about a significant transformation in healthcare, streamlining manual tasks and allowing professionals to focus on critical responsibilities while AI handles complex procedures. This shift is not limited to human healthcare; it extends to veterinary medicine as well, where AI's predictive analytics and diagnostic abilities are improving standards of animal care. Consequently, healthcare systems stand to gain notable advantages, such as enhanced accessibility, treatment efficacy, and optimized resource allocation, owing to the seamless integration of AI. This article presents a comprehensive review of the manifold applications of AI within the domain of veterinary science, categorizing them into four domains: clinical practice, biomedical research, public health, and administration. It also examines the primary machine learning algorithms used in relevant studies, highlighting emerging trends in the field. The research serves as a valuable resource for scholars, offering insights into current trends and serving as a starting point for those new to the field.",article,0,,,"Akbarein, Hesameddin;Taaghi, Mohammad Hussein;Mohebbi, Mahyar;Soufizadeh, Parham",,,,,,,Veterinary Medicine and Science,,,SCOPUS,"Akbarein Hesameddin, 2025, Veterinary Medicine and Science",,"Akbarein Hesameddin, 2025, Veterinary Medicine and Science"
+2025,20,https://app.dimensions.ai/details/publication/pub.1187221251,Enlightened prognosis: Hepatitis prediction with an explainable machine learning approach,e0319078,4,,PLOS One,10.1371/journal.pone.0319078,2025-04-02,"Das, Niloy;Hossain, Bipul;Adhikary, Apurba;Raha, Avi Deb;Qiao, Yu;Hassan, Mehedi;Bairagi, Anupam Kumar","Hepatitis is a widespread inflammatory condition of the liver, presenting a formidable global health challenge. Accurate and timely detection of hepatitis is crucial for effective patient management, yet existing methods exhibit limitations that underscore the need for innovative approaches. Early-stage detection of hepatitis is now possible with the recent adoption of machine learning and deep learning approaches. With this in mind, the study investigates the use of traditional machine learning models, specifically classifiers such as logistic regression, support vector machines (SVM), decision trees, random forest, multilayer perceptron (MLP), and other models, to predict hepatitis infections. After extensive data preprocessing including outlier detection, dataset balancing, and feature engineering, we evaluated the performance of these models. We explored three modeling approaches: machine learning with default hyperparameters, hyperparameter-tuned models using GridSearchCV, and ensemble modeling techniques. The SVM model demonstrated outstanding performance, achieving 99.25% accuracy and a perfect AUC score of 1.00 with consistency in other metrics with 99.27% precision, and 99.24% for both recall and F1-measure. The MLP and Random Forest proved to be in pace with the superior performance of SVM exhibiting an accuracy of 99.00%. To ensure robustness, we employed a 5-fold cross-validation technique. For deeper insight into model interpretability and validation, we employed an explainability analysis of our best-performed models to identify the most effective feature for hepatitis detection. Our proposed model, particularly SVM, exhibits better prediction performance regarding different performance metrics compared to existing literature.",article,0,,,"Das, Niloy;Hossain, Bipul;Adhikary, Apurba;Raha, Avi Deb;Qiao, Yu;Hassan, Mehedi;Bairagi, Anupam Kumar",,,,,,,PLOS One,,,SCOPUS,"Das Niloy, 2025, PLOS One",,"Das Niloy, 2025, PLOS One"
+2025,12,https://app.dimensions.ai/details/publication/pub.1187257015,Explainable AI for Chronic Kidney Disease Prediction in Medical IoT: Integrating GANs and Few-Shot Learning,356,4,,Bioengineering,10.3390/bioengineering12040356,2025-03-29,"Rezk, Nermeen Gamal;Alshathri, Samah;Sayed, Amged;Hemdan, Ezz El-Din","According to recent global public health studies, chronic kidney disease (CKD) is becoming more and more recognized as a serious health risk as many people are suffering from this disease. Machine learning techniques have demonstrated high efficiency in identifying CKD, but their opaque decision-making processes limit their adoption in clinical settings. To address this, this study employs a generative adversarial network (GAN) to handle missing values in CKD datasets and utilizes few-shot learning techniques, such as prototypical networks and model-agnostic meta-learning (MAML), combined with explainable machine learning to predict CKD. Additionally, traditional machine learning models, including support vector machines (SVM), logistic regression (LR), decision trees (DT), random forests (RF), and voting ensemble learning (VEL), are applied for comparison. To unravel the ""black box"" nature of machine learning predictions, various techniques of explainable AI, such as SHapley Additive exPlanations (SHAP) and local interpretable model-agnostic explanations (LIME), are applied to understand the predictions made by the model, thereby contributing to the decision-making process and identifying significant parameters in the diagnosis of CKD. Model performance is evaluated using predefined metrics, and the results indicate that few-shot learning models integrated with GANs significantly outperform traditional machine learning techniques. Prototypical networks with GANs achieve the highest accuracy of 99.99%, while MAML reaches 99.92%. Furthermore, prototypical networks attain F1-score, recall, precision, and Matthews correlation coefficient (MCC) values of 99.89%, 99.9%, 99.9%, and 100%, respectively, on the raw dataset. As a result, the experimental results clearly demonstrate the effectiveness of the suggested method, offering a reliable and trustworthy model to classify CKD. This framework supports the objectives of the Medical Internet of Things (MIoT) by enhancing smart medical applications and services, enabling accurate prediction and detection of CKD, and facilitating optimal medical decision making.",article,0,,,"Rezk, Nermeen Gamal;Alshathri, Samah;Sayed, Amged;Hemdan, Ezz El-Din",,,,,,,Bioengineering,,,SCOPUS,"Rezk Nermeen Gamal, 2025, Bioengineering",,"Rezk Nermeen Gamal, 2025, Bioengineering"
+2025,20,https://app.dimensions.ai/details/publication/pub.1187347247,Supervised Machine Learning and Physics Machine Learning approach for prediction of peak temperature distribution in Additive Friction Stir Deposition of Aluminium Alloy,e0309751,4,,PLOS One,10.1371/journal.pone.0309751,2025-04-04,"Mishra, Akshansh;Jatt, Vijaykumar;Sefene, Eyob Messele;Salunkhe, Sachin;Cep, Robert;Nasr, Emad Abouel","Additive friction stir deposition (AFSD) is a novel solid-state additive manufacturing technique that circumvents issues of porosity, cracking, and properties anisotropy that plague traditional powder bed fusion and directed energy deposition approaches. However, correlations between process parameters, thermal profiles, and resulting microstructure in AFSD still need to be better understood. This hinders process optimization for properties. This work employs a framework combining supervised machine learning (SML) and physics-informed neural networks (PINNs) to predict peak temperature distribution in AFSD from process parameters. Eight regression algorithms were implemented for SML modeling, while four PINNs leveraged governing equations for transport, wave propagation, heat transfer, and quantum mechanics. Across multiple statistical measures, ensemble techniques like gradient boosting proved superior for SML, with the lowest MSE of 165.78. The integrated ML approach was also applied to classify deposition quality from process factors, with logistic regression delivering robust accuracy. By fusing data-driven learning and fundamental physics, this dual methodology provides comprehensive insights into tailoring microstructure through thermal management in AFSD. The work demonstrates the power of bridging statistical and physics-based modeling for elucidating AM process-property relationships.",article,0,,,"Mishra, Akshansh;Jatt, Vijaykumar;Sefene, Eyob Messele;Salunkhe, Sachin;Cep, Robert;Nasr, Emad Abouel",,,,,,,PLOS One,,,SCOPUS,"Mishra Akshansh, 2025, PLOS One",,"Mishra Akshansh, 2025, PLOS One"
+2025,17,https://app.dimensions.ai/details/publication/pub.1187357179,Machine Learning Insight: Unveiling Overlooked Risk Factors for Postoperative Complications in Gastric Cancer,1225,7,,Cancers,10.3390/cancers17071225,2025-04-04,"Lee, Sejin;Oh, Hyo-Jung;Yoo, Hosuon;Kim, Chan-Young","BACKGROUND: Since postoperative complications after gastrectomy for gastric cancer are associated with poor clinical outcomes, it is important to predict and prepare for the occurrence of complications preoperatively. Conventional models for predicting complications have limitations, prompting interest in machine learning algorithms. Machine learning models have a superior ability to identify complex interactions among variables and nonlinear relationships, potentially revealing new risk factors. This study aimed to explore previously overlooked risk factors for postoperative complications and compare machine learning models with linear regression.
+MATERIALS AND METHODS: We retrospectively reviewed data from 865 patients who underwent gastrectomy for gastric cancer from 2018 to 2022. A total of 85 variables, including demographics, clinical features, laboratory values, intraoperative parameters, and pathologic results, were used to conduct the machine learning model. The dataset was partitioned into 80% for training and 20% for validation. To identify the most accurate prediction model, missing data handling, variable selection, and hyperparameter tuning were performed.
+RESULTS: Machine learning models performed notably well when using the backward elimination method and a moderate missing data strategy, achieving the highest area under the curve values (0.744). A total of 15 variables associated with postoperative complications were identified using a machine learning algorithm. Operation time was the most impactful variable, followed closely by pre-operative levels of albumin and mean corpuscular hemoglobin. Machine learning models, especially Random Forest and XGBoost, outperformed linear regression.
+CONCLUSIONS: Machine learning, coupled with advanced variable selection techniques, showed promise in enhancing risk prediction of postoperative complications for gastric cancer surgery.",article,0,,,"Lee, Sejin;Oh, Hyo-Jung;Yoo, Hosuon;Kim, Chan-Young",,,,,,,Cancers,,,SCOPUS,"Lee Sejin, 2025, Cancers",,"Lee Sejin, 2025, Cancers"
+2025,6,https://app.dimensions.ai/details/publication/pub.1187367810,AMRLearn: Protocol for a machine learning pipeline for characterization of antimicrobial resistance determinants in microbial genomic data,103733,2,,STAR Protocols,10.1016/j.xpro.2025.103733,2025-04-05,"Zhang, Xi;Hu, Yining;Cheng, Zhenyu;Archibald, John M.","Single-nucleotide polymorphisms (SNPs) are useful biomarkers for linking genotype to phenotype. Machine learning is powerful for predicting antimicrobial resistance (AMR) from bacterial genome sequence data. Here, we present AMRLearn, a machine learning pipeline to assist users in the prediction and visualization of AMR phenotypes associated with SNP genotypes. We describe the steps needed for input data preparation, prediction model selection, and result visualization. AMRLearn is useful for researchers wanting to extract information relevant to AMR from whole-genome sequence data.",article,0,,,"Zhang, Xi;Hu, Yining;Cheng, Zhenyu;Archibald, John M.",,,,,,,STAR Protocols,,,SCOPUS,"Zhang Xi, 2025, STAR Protocols",,"Zhang Xi, 2025, STAR Protocols"
+2025,25,https://app.dimensions.ai/details/publication/pub.1187374688,Evaluation of machine learning methods for prediction of heart failure mortality and readmission: meta-analysis,264,1,,BMC Cardiovascular Disorders,10.1186/s12872-025-04700-0,2025-04-07,"Hajishah, Hamed;Kazemi, Danial;Safaee, Ehsan;Amini, Mohammad Javad;Peisepar, Maral;Tanhapour, Mohammad Mahdi;Tavasol, Arian","BackgroundHeart failure (HF) impacts nearly 6 million individuals in the U.S., with a projected 46% increase by 2030, is creating significant healthcare burdens. Predictive models, particularly machine learning (ML)-based models, offer promising solutions to identify patients at greater risk of adverse outcomes, such as mortality and hospital readmission. This review aims to assess the effectiveness of ML models in predicting HF-related outcomes, with a focus on their potential to improve patient care and clinical decision-making. We aim to assess how effectively machine learning models predict mortality and readmission in heart failure patients to improve clinical outcomes.MethodThe study followed PRISMA 2020 guidelines and was registered in the PROSPERO database (CRD42023481167). We conducted a systematic search in PubMed, Scopus, and Web of Science databases using specific keywords related to heart failure, machine learning, mortality and readmission. Extracted data focused on study characteristics, machine learning details, and outcomes, with AUC or c-index used as the primary outcomes for pooling analysis. The PROBAST tool was used to assess bias risk, evaluating models based on participants, predictors, outcomes, and statistical analysis. The meta-analysis pooled AUCs for different machine learning models predicting mortality and readmission. Prediction accuracy data was categorized by timeframes, with high heterogeneity determined by an I² value above 50%, leading to a random-effects model when applicable. Publication bias was assessed using Egger’s and Begg’s tests, with a p-value below 0.05 considered significantResultA total of 4,505 studies were identified, and after screening, 64 were included in the final analysis, covering 943,941 patients. Of these, 40 studies focused on mortality, 17 on readmission, and 7 on both outcomes. In total, 346 machine learning models were evaluated, with the most common algorithms being random forest, logistic regression, and gradient boosting. The neural network model achieved the highest overall AUC for mortality prediction (0.808), while the support vector machine performed best for readmission prediction (AUC 0.733). The analysis revealed a significant risk of bias, primarily due to reliance on retrospective data and inadequate sample size justification.ConclusionIn conclusion, this review emphasizes the strong potential of ML models in predicting HF readmission and mortality. ML algorithms show promise in improving prognostic accuracy and enabling personalized patient care. However, challenges like model interpretability, generalizability, and clinical integration persist. Overcoming these requires refined ML techniques and a robust regulatory framework to enhance HF outcomes.",article,0,,,"Hajishah, Hamed;Kazemi, Danial;Safaee, Ehsan;Amini, Mohammad Javad;Peisepar, Maral;Tanhapour, Mohammad Mahdi;Tavasol, Arian",,,,,,,BMC Cardiovascular Disorders,,,SCOPUS,"Hajishah Hamed, 2025, BMC Cardiovascular Disorders",,"Hajishah Hamed, 2025, BMC Cardiovascular Disorders"
+2025,130,https://app.dimensions.ai/details/publication/pub.1187498569,Predicting host-pathogen interactions with machine learning algorithms: A scoping review,105751,,,"Infection, Genetics and Evolution",10.1016/j.meegid.2025.105751,2025-04-10,"Sahragard, Rasool;Arabfard, Masoud;Najafi, Ali","BACKGROUND: Diseases caused by pathogenic microorganisms pose a persistent global health challenge. Pathogens exploit host mechanisms through intricate molecular interactions. Understanding these host-pathogen interactions (HPIs), particularly protein-protein interactions (PPIs), is crucial for developing therapeutic strategies. While experimental approaches are essential, they are often labor-intensive and costly. Researchers have been able to predict HPIs more efficiently due to recent advances in artificial intelligence and machine learning. However, existing reviews lack a systematic evaluation of different machine learning methodologies and their effectiveness.
+METHODS: This scoping review critically examines recent studies on machine learning-based Host-Pathogen Interaction (HPI) prediction, categorizing them by host and pathogen types, machine learning algorithms, and key evaluation metrics. The methodology is based on the study beginning with a preliminary search in reputable using key phrases related to host-pathogen interactions from 2019 to 2024. This process yielded 46 relevant articles, from which 30 were selected for review after evaluating titles and abstracts.
+RESULTS: Our findings indicate that tree-based algorithms, particularly Random Forest and Gradient Boosting, are the most prevalent in Host-Pathogen Interaction (HPI) prediction. The filter articles were categorized by host and pathogen type and further subdivided into four subcategories based on the prediction type and machine learning algorithms: classic, tree-based, vector-based, and neural network algorithms. Convolutional and recurrent neural networks are among the deep learning models that demonstrate promising accuracy, but they require a lot of labeled data for effective training. Additionally, the analysis uncovers significant gaps in dataset standardization and model interpretability, which pose challenges to the broader applicability of these predictive models.
+CONCLUSION: In this review, we emphasize the potential of machine learning in HPI prediction and highlight the important challenges that must be addressed to improve predictive accuracy. Unlike previous reviews, our study systematically compares different computational approaches, offering a roadmap for future research. The findings emphasize the importance of dataset quality, feature selection, and model transparency in advancing AI-driven pathogen research.",article,0,,,"Sahragard, Rasool;Arabfard, Masoud;Najafi, Ali",,,,,,,"Infection, Genetics and Evolution",,,SCOPUS,"Sahragard Rasool, 2025, Infection, Genetics and Evolution",,"Sahragard Rasool, 2025, Infection, Genetics and Evolution"
+2025,10,https://app.dimensions.ai/details/publication/pub.1187504272,Data-Driven Approach Considering Imbalance in Data Sets and Experimental Conditions for Exploration of Photocatalysts,14626,15,,ACS Omega,10.1021/acsomega.4c06997,2025-04-10,"Takahara, Wataru;Baba, Ryuto;Harashima, Yosuke;Takayama, Tomoaki;Takasuka, Shogo;Yamaguchi, Yuichi;Kudo, Akihiko;Fujii, Mikiya","In the field of data-driven material development, an imbalance in data sets where data points are concentrated in certain regions often causes difficulties in building regression models when machine learning methods are applied. One example of inorganic functional materials facing such difficulties is photocatalysts. Therefore, advanced data-driven approaches are expected to help efficiently develop novel photocatalytic materials even if an imbalance exists in data sets. We propose a two-stage machine learning model aimed at handling imbalanced data sets without data thinning. In this study, we used two types of data sets that exhibit the imbalance: the Materials Project data set (openly shared due to its public domain data) and the in-house metal-sulfide photocatalyst data set (not openly shared due to the confidentiality of experimental data). This two-stage machine learning model consists of the following two parts: the first regression model, which predicts the target quantitatively, and the second classification model, which determines the reliability of the values predicted by the first regression model. We also propose a search scheme for variables related to the experimental conditions based on the proposed two-stage machine learning model. This scheme is designed for photocatalyst exploration, taking experimental conditions into account as the optimal set of variables for these conditions is unknown. The proposed two-stage machine learning model improves the prediction accuracy of the target compared with that of the one-stage model.",article,0,,,"Takahara, Wataru;Baba, Ryuto;Harashima, Yosuke;Takayama, Tomoaki;Takasuka, Shogo;Yamaguchi, Yuichi;Kudo, Akihiko;Fujii, Mikiya",,,,,,,ACS Omega,14639,,SCOPUS,"Takahara Wataru, 2025, ACS Omega",,"Takahara Wataru, 2025, ACS Omega"
+2025,18,https://app.dimensions.ai/details/publication/pub.1187622088,Application of Machine Learning in Amorphous Alloys,1771,8,,Materials,10.3390/ma18081771,2025-04-13,"Zhang, Like;Zhang, Huangyou;Ji, Boyan;Liu, Leqing;Liu, Xianlan;Chen, Ding","In the past few decades, traditional methods for developing amorphous alloys, such as empirical trial-and-error approaches and density functional theory (DFT)-based calculations, have enabled researchers to explore numerous amorphous alloy systems and investigate their properties. However, these methods are increasingly unable to meet the demands of modern research due to their long development cycles and low efficiency. In contrast, machine learning (ML) has gained widespread adoption in the design, analysis, and property prediction of amorphous alloys due to its advantages of low experimental cost, powerful performance, and short development cycles. This review focuses on four key applications of ML in amorphous alloys: (1) prediction of amorphous alloy phases, (2) prediction of amorphous composite phases, (3) prediction of glass-forming ability (GFA), and (4) prediction of material properties. Finally, we outline future directions for ML in materials science, including the development of more sophisticated models, integration with high-throughput experimentation, and the creation of standardized data-sharing platforms. These insights provide potential research directions and frameworks for subsequent studies in this field.",article,0,,,"Zhang, Like;Zhang, Huangyou;Ji, Boyan;Liu, Leqing;Liu, Xianlan;Chen, Ding",,,,,,,Materials,,,SCOPUS,"Zhang Like, 2025, Materials",,"Zhang Like, 2025, Materials"
+2025,24,https://app.dimensions.ai/details/publication/pub.1187666110,A Novel Linear Machine Learning Method Based on DNA Hybridization Reaction Circuit,374,3,,IEEE Transactions on NanoBioscience,10.1109/tnb.2025.3559480,2025-04-15,"Zou, Chengye;Zhang, Qiang;Wang, Bin;Zhou, Changjun;Yang, Yongwei;Zhang, Xuncai","DNA hybridization reaction is a significant technology in the field of semi-synthetic biology and holds great potential for use in biological computation. In this study, we propose a novel machine learning model based on a DNA hybridization reaction circuit. This circuit comprises a computation training component, a test component, and a learning algorithm. Compared to conventional machine learning models based on semiconductors, the proposed machine learning model harnesses the power of DNA hybridization reaction, with the learning algorithm implemented based on the unique properties of DNA computation, enabling parallel computation for the acquisition of learning results. In contrast to existing machine learning models based on DNA circuits, our proposed model constitutes a complete synthetic biology computation system, and utilizes the ""dual-rail"" mechanism to achieve the DNA compilation of the learning algorithm, which allows the weights to be updated to negative values. The proposed machine learning model based on DNA hybridization reaction demonstrates the ability to predict and fit linear functions. As such, this study is expected to make significant contributions to the development of machine learning through DNA hybridization reaction circuits.",article,0,,,"Zou, Chengye;Zhang, Qiang;Wang, Bin;Zhou, Changjun;Yang, Yongwei;Zhang, Xuncai",,,,,,,IEEE Transactions on NanoBioscience,385,,SCOPUS,"Zou Chengye, 2025, IEEE Transactions on NanoBioscience",,"Zou Chengye, 2025, IEEE Transactions on NanoBioscience"
+2025,25,https://app.dimensions.ai/details/publication/pub.1187859994,Optimizing machine learning models for predicting anemia among under-five children in Ethiopia: insights from Ethiopian demographic and health survey data,311,1,,BMC Pediatrics,10.1186/s12887-025-05659-9,2025-04-22,"Yimer, Ali;Yesuf, Hassen Ahmed;Ahmed, Sada;Zemariam, Alemu Birara;Mussa, Endris;Sirage, Nurye;Yesuf, Adem;Kassaw, Abdulaziz Kebede","BackgroundHealthcare practitioners require a robust predictive system to accurately diagnose diseases, especially in young children with conditions such as anemia. Delays in diagnosis and treatment can have severe consequences, potentially leading to serious complications and childhood mortality. By leveraging machine learning methods with extensive datasets, valuable and scientifically sound insights can be generated to address pressing health and healthcare-related challenges.ObjectivesThe primary objective of this study was to identify the most effective machine-learning algorithm for predicting anemia among under five children in Ethiopia.MethodsThe data utilized in this study were sourced from the 2016 Ethiopian Demographic and Health Survey. Six machine-learning models, comprising a classic logistic regression model along with random forest, decision tree, support vector machine, Naïve Bayes, and K-nearest neighbors, were employed to predict factors influencing anemia in children under five. The predictive capacities of each machine-learning model were evaluated using receiver operating characteristic curves and various measures of model accuracy.ResultsThe random forest model demonstrated the highest accuracy among the algorithms tested, achieving an overall accuracy of 81.16%. The accuracy rates for the decision tree, support vector machines, Naïve Bayes, K-nearest neighbors, and classical logistic regression models were 68.40%, 59.94%, 53.06%, 69.96%, and 54.79%, respectively.ConclusionIn general, the random forest algorithm emerged as the preferred model for predicting anemia in children under five. The model exhibited a specificity of 79.26%, sensitivity of 83.07%, positive predictive value of 80.02%, negative predictive value of 82.40%, and an area under the curve of 81.80%.",article,0,,,"Yimer, Ali;Yesuf, Hassen Ahmed;Ahmed, Sada;Zemariam, Alemu Birara;Mussa, Endris;Sirage, Nurye;Yesuf, Adem;Kassaw, Abdulaziz Kebede",,,,,,,BMC Pediatrics,,,SCOPUS,"Yimer Ali, 2025, BMC Pediatrics",,"Yimer Ali, 2025, BMC Pediatrics"
+2025,241,https://app.dimensions.ai/details/publication/pub.1187877209,Application of Interpretable Machine Learning Algorithm to Predict Lymph Node Metastasis in Cutaneous Malignant Melanoma,240,3,,Dermatology,10.1159/000545959,2025-04-21,"Wang, Xinyue;Liu, Wentao;Wei, Wei;Mao, Runkai;Li, Dan;Lu, Menglin;Shen, Xiao;Chen, Peng","INTRODUCTION: Cutaneous malignant melanoma (CMM) is the most lethal form of skin cancer worldwide. The precise prediction of lymph node metastasis is critical for personalized treatment and improved patient outcomes. However, no prior study has employed interpretable machine learning techniques to predict lymph node metastasis in CMM. This study aimed to utilize interpretable machine learning to integrate multidimensional data from the Surveillance, Epidemiology, and End Results (SEER) database - encompassing clinical characteristics, pathological information, and biomarkers of CMM - to construct various predictive models for lymph node metastasis.
+METHODS: We constructed six machine learning models to predict lymph node metastasis using clinical, pathological, and biomarker data from 2,448 patients with CMM in the SEER database. These models comprise a support vector machine, random forest (RF), XGBoost, LightGBM, adaptive boosting, and gradient boosting decision tree. The primary influential factors were identified using Gaussian Naive Bayes and gradient boosting algorithms. Shapley additive explanations (SHAP) analysis facilitates visual interpretation in individual patients. Model performance was evaluated based on accuracy, sensitivity, specificity, Brier score, and area under the receiver operating characteristic curve (AUC).
+RESULTS: The RF algorithm exhibited the highest predictive performance with an AUC of 0.897, accuracy of 0.821, sensitivity of 0.876, specificity of 0.765, and Brier score of 0.086. The primary influential variables were T stage, chemotherapy, ulceration, pretreatment lactate dehydrogenase (LDH) levels, and radiation therapy. SHAP analysis confirmed a significant association and highlighted the critical function of (LDH) as a predictive biomarker.
+CONCLUSION: This study successfully established an accurate predictive model for lymph node metastasis in patients with CMM using machine learning techniques, offering a significant reference to aid clinician treatment decisions.",article,0,,,"Wang, Xinyue;Liu, Wentao;Wei, Wei;Mao, Runkai;Li, Dan;Lu, Menglin;Shen, Xiao;Chen, Peng",,,,,,,Dermatology,253,,SCOPUS,"Wang Xinyue, 2025, Dermatology",,"Wang Xinyue, 2025, Dermatology"
+2025,12,https://app.dimensions.ai/details/publication/pub.1187959040,A scoping review of advancements in machine learning for glaucoma: current trends and future direction,1573329,,,Frontiers in Medicine,10.3389/fmed.2025.1573329,2025-04-24,"Zhang, Jiatong;Tian, Bocheng;Tian, Mingke;Si, Xinxin;Li, Jiani;Fan, Ting","Introduction: Machine learning technology has demonstrated significant potential in glaucoma research, particularly in early diagnosis, predicting disease progression, evaluating treatment responses, and developing personalized treatment strategies. The application of machine learning not only enhances the understanding of the pathological mechanism of glaucoma and optimizes the diagnostic process but also provides patients with accurate medical services.
+Methods: This study aimed to describe the current state of research, highlight directions for further development, and identify potential trends for improvement. This review was conducted following the scoping review of the Preferred Reporting Items for Systematic Reviews and Meta-Analyses (PRISMA) extension to showcase advancements in the application of machine learning in glaucoma research and treatment.
+Results: We employed a comprehensive search strategy to retrieve literature from the Web of Science Core Collection database, ultimately including 3,581 articles in the analysis. Through data analysis, we identified current research hotspots, noted differences in researchers' attitudes and opinions, and predicted potential future development trends.
+Discussion: We divided the research topics into six categories, clearly identifying ""eye diseases"", ""retinal fundus imaging"" and ""risk factors"" as the key terms for the development of this field. These findings signify the promising prospects of machine learning, particularly when integrated with multimodal technologies and large language models, to enhance the diagnosis and treatment of glaucoma.",article,0,,,"Zhang, Jiatong;Tian, Bocheng;Tian, Mingke;Si, Xinxin;Li, Jiani;Fan, Ting",,,,,,,Frontiers in Medicine,,,SCOPUS,"Zhang Jiatong, 2025, Frontiers in Medicine",,"Zhang Jiatong, 2025, Frontiers in Medicine"
+2025,95,https://app.dimensions.ai/details/publication/pub.1188047620,A systematic review of machine learning algorithms for breast cancer detection,102929,,,Tissue and Cell,10.1016/j.tice.2025.102929,2025-04-25,"Boddu, Aryan Sai;Jan, Aatifa","Breast cancer is one of the leading causes of death and morbidity among women worldwide. Identifying cancerous cells remains a complex and time-consuming task, particularly when performed manually by radiologists or pathologists, contributing to high diagnostic costs. The absence of a reliable, standardized predictive model often hinders timely and accurate diagnosis. This systematic review explores various machine learning approaches - including eXtreme Gradient Boosting (XGBoost), Naïve Bayes, Support Vector Machine (SVM), Logistic Regression, Decision Tree, and k-Nearest Neighbors (KNN) - for classifying breast tumors as malignant or benign. It synthesizes findings from existing literature, comparing model performance based on key evaluation metrics such as accuracy, precision, recall, and F1-score. Multiple reviewed studies report that machine learning models can achieve high diagnostic accuracy. These models may improve diagnostic confidence and accelerate result interpretation. This review also highlights common limitations, such as dataset availability, class imbalance, model interpretability, and generalizability across diverse populations. The paper concludes by outlining future directions to enhance the clinical applicability, trustworthiness, and integration of ML-based diagnostic systems.",article,0,,,"Boddu, Aryan Sai;Jan, Aatifa",,,,,,,Tissue and Cell,,,SCOPUS,"Boddu Aryan Sai, 2025, Tissue and Cell",,"Boddu Aryan Sai, 2025, Tissue and Cell"
+2025,28,https://app.dimensions.ai/details/publication/pub.1188048340,Status and opportunities of machine learning applications in obstructive sleep apnea: A narrative review,167,,,Computational and Structural Biotechnology Journal,10.1016/j.csbj.2025.04.033,2025-01,"Araujo, Matheus Lima Diniz;Winger, Trevor;Ghosn, Samer;Saab, Carl;Srivastava, Jaideep;Kazaglis, Louis;Mathur, Piyush;Mehra, Reena","Background: Obstructive sleep apnea (OSA) is a prevalent and potentially severe sleep disorder characterized by repeated interruptions in breathing during sleep. Machine learning models have been increasingly applied in various aspects of OSA research, including diagnosis, treatment optimization, and developing biomarkers for endotypes and disease mechanisms.
+Objective: This narrative review evaluates the application of machine learning in OSA research, focusing on model performance, dataset characteristics, demographic representation, and validation strategies. We aim to identify trends and gaps to guide future research and improve clinical decision-making that leverages machine learning.
+Methods: This narrative review examines data extracted from 254 scientific publications published in the PubMed database between January 2018 and March 2023. Studies were categorized by machine learning applications, models, tasks, validation metrics, data sources, and demographics.
+Results: Our analysis revealed that most machine learning applications focused on OSA classification and diagnosis, utilizing various data sources such as polysomnography, electrocardiogram data, and wearable devices. We also found that study cohorts were predominantly overweight males, with an underrepresentation of women, younger obese adults, individuals over 60 years old, and diverse racial groups. Many studies had small sample sizes and limited use of robust model validation.
+Conclusion: Our findings highlight the need for more inclusive research approaches, starting with adequate data collection in terms of sample size and bias mitigation for better generalizability of machine learning models in OSA research. Addressing these demographic gaps and methodological opportunities is critical for ensuring more robust and equitable applications of artificial intelligence in healthcare.",article,0,,,"Araujo, Matheus Lima Diniz;Winger, Trevor;Ghosn, Samer;Saab, Carl;Srivastava, Jaideep;Kazaglis, Louis;Mathur, Piyush;Mehra, Reena",,,,,,,Computational and Structural Biotechnology Journal,174,,SCOPUS,"Araujo Matheus Lima Diniz, 2025, Computational and Structural Biotechnology Journal",,"Araujo Matheus Lima Diniz, 2025, Computational and Structural Biotechnology Journal"
+2025,16,https://app.dimensions.ai/details/publication/pub.1188134859,Machine Learning in Automated Food Processing: A Mini Review,25,1,,Annual Review of Food Science and Technology,10.1146/annurev-food-111523-122039,2025-04-28,"Zhang, Lu;Boom, Remko M;Ma, Yizhou","Industrial food processing is rapidly transforming into automation and digitalization. Automated food processing systems adapt to variations in raw materials and product quality requirements. Implementing automated processing systems can potentially improve the sustainability of our food systems by improving productivity while reducing environmental impacts. Nevertheless, the adoption of automated food processing systems is still relatively low. In this review, we discuss the concept of automated food processing and summarize the recent advances in applications of machine learning technologies to enable automated food processing. Machine learning can find its applications in formulation development, process control, and product quality assessment. We share our vision on the potential of automated food processing systems to adapt to complex raw materials, mass customization, personalized nutrition, and human-machine interaction. Finally, we pinpoint relevant research questions and stress that future research on automated food processing requires multidisciplinary approaches.",article,0,,,"Zhang, Lu;Boom, Remko M;Ma, Yizhou",,,,,,,Annual Review of Food Science and Technology,37,,SCOPUS,"Zhang Lu, 2025, Annual Review of Food Science and Technology",,"Zhang Lu, 2025, Annual Review of Food Science and Technology"
+2025,15,https://app.dimensions.ai/details/publication/pub.1188210240,The application of machine learning in clinical microbiology and infectious diseases,1545646,,,Frontiers in Cellular and Infection Microbiology,10.3389/fcimb.2025.1545646,2025-05-01,"Xu, Cheng;Zhao, Ling-Yun;Ye, Cun-Si;Xu, Ke-Chen;Xu, Ke-Yang","With the development of artificial intelligence(AI) in computer science and statistics, it has been further applied to the medical field. These applications include the management of infectious diseases, in which machine learning has created inroads in clinical microbiology, radiology, genomics, and the analysis of electronic health record data. Especially, the role of machine learning in microbiology has gradually become prominent, and it is used in etiological diagnosis, prediction of antibiotic resistance, association between human microbiome characteristics and complex host diseases, prognosis judgment, and prevention and control of infectious diseases. Machine learning in the field of microbiology mainly adopts supervised learning and unsupervised learning, involving algorithms from classification and regression to clustering and dimensionality reduction. This Review explains crucial concepts in machine learning for unfamiliar readers, describes machine learning's current applications in clinical microbiology and infectious diseases, and summarizes important approaches clinicians must be aware of when evaluating research using machine learning.",article,0,,,"Xu, Cheng;Zhao, Ling-Yun;Ye, Cun-Si;Xu, Ke-Chen;Xu, Ke-Yang",,,,,,,Frontiers in Cellular and Infection Microbiology,,,SCOPUS,"Xu Cheng, 2025, Frontiers in Cellular and Infection Microbiology",,"Xu Cheng, 2025, Frontiers in Cellular and Infection Microbiology"
+2025,11,https://app.dimensions.ai/details/publication/pub.1188257647,Human pose estimation in physiotherapy fitness exercise correction using novel transfer learning approach,e2854,,,PeerJ Computer Science,10.7717/peerj-cs.2854,2025-04-29,"Naseer, Aisha;Raza, Ali;Afzal, Hadeeqa;Smerat, Aseel;Fitriyani, Norma Latif;Gu, Yeonghyeon;Syafrudin, Muhammad","Objective: To introduce and evaluate an efficient neural network approach for human pose estimation and correction during physical therapy exercises using wearable sensor data.
+Methods: We leveraged benchmark data consisting of 276,625 records from wearable inertial and magnetic sensors. A novel method termed Random Forest Long Short-Term Memory (RFL), which integrates long short-term memory and Random Forest neural networks, was implemented for transfer feature engineering. The smartphone sensor data was used to generate new temporal and probabilistic features. These features were then utilized in machine learning methods to classify physical therapy exercises. Rigorous experiments, including k-fold validation and hyperparameter optimization, were conducted to validate the performance of the RFL approach.
+Results: The RFL approach demonstrated superior performance, achieving a remarkable 99% accuracy with the Random Forest method. The rigorous experiments confirmed the efficacy and reliability of the method in classifying physical therapy exercises.
+Conclusions: The proposed RFL method introduces a novel feature generation approach enhancing the accuracy of physical therapy exercise classification and correction. This innovative integration not only improves rehabilitation monitoring but also paves the way for more adaptive and intelligent physiotherapy assistance systems. By leveraging sensor data and advanced machine learning techniques, it has the potential to mitigate risks associated with disabilities and major diseases, thereby offering a feasible alternative to frequent clinic visits for consistent therapist guidance.",article,0,,,"Naseer, Aisha;Raza, Ali;Afzal, Hadeeqa;Smerat, Aseel;Fitriyani, Norma Latif;Gu, Yeonghyeon;Syafrudin, Muhammad",,,,,,,PeerJ Computer Science,,,SCOPUS,"Naseer Aisha, 2025, PeerJ Computer Science",,"Naseer Aisha, 2025, PeerJ Computer Science"
+2025,65,https://app.dimensions.ai/details/publication/pub.1188269297,Machine Learning Classification of Chirality and Optical Rotation Using a Simple One-Hot Encoded Cartesian Coordinate Molecular Representation,4281,9,,Journal of Chemical Information and Modeling,10.1021/acs.jcim.4c02374,2025-05-01,"Zhou, Yilin;Zhu, Haoran;Yuan, Yijie;Song, Ziyu;Mort, Brendan C.","Absolute stereochemical configurations and optical rotations were computed for 121,416 molecular structures from the QM9 quantum chemistry data set using density functional theory. A representation for the molecules was developed using Cartesian coordinate geometries and encoded atom types to serve as input for various machine learning algorithms. Classifiers were developed and trained to predict the chirality and signs of optical rotations using a variety of machine learning methods. These methods are compared, and the results demonstrate that machine learning is a viable tool for making predictions of the stereochemical properties of molecules.",article,0,,,"Zhou, Yilin;Zhu, Haoran;Yuan, Yijie;Song, Ziyu;Mort, Brendan C.",,,,,,,Journal of Chemical Information and Modeling,4292,,SCOPUS,"Zhou Yilin, 2025, Journal of Chemical Information and Modeling",,"Zhou Yilin, 2025, Journal of Chemical Information and Modeling"
+2025,45,https://app.dimensions.ai/details/publication/pub.1188347962,Adopting machine learning to predict nomogram for small incision lenticule extraction (SMILE),175,1,,International Ophthalmology,10.1007/s10792-025-03520-7,2025-05-05,"Liu, Pan;Gu, Xiaochen;Jiao, Yexuan;Ye, Xinqi;Zhou, Yu-Hang;Wang, Xinlin;Zhou, Yongjin;Shao, Zhengbo","PurposeTo predict nomogram for small incision lenticule extraction (SMILE) using machine learning technology and preoperative clinical data.MethodsA total of 1025 eyes with postoperative spherical equivalent within ± 0.50D after SMILE were included in this study. The XGBoost, gradient boosting regression (GBR), random forest (RF), LightGBM, linear regression (LR) and support vector regression (SVR) were applied to predict the nomogram. The performance of six machine learning methods was assessed by calculating the root mean absolute error (RMSE) and the mean absolute error (MAE). Four junior residents were selected to design the nomogram based on preoperative clinical data in testing set, and were compared with the machine learning models by calculating the accuracy of eyes within three specific thresholds (± 0.05D, ± 0.15D, ± 0.25D).ResultsThe actual nomogram was not significantly different from the nomogram predicted machine learning methods (P > 0.05). The RMSE of six models ranged from 0.075 to 0.110, and MAE were 0.055 to 0.085 on nomogram prediction. The XGBoost provided significantly higher accuracy within 0.05 to 0.25 D than the SVR and junior residents (McNemar test, P < 0.001). However, there were no statistically significant differences in accuracy within 0.05 to 0.25 D that the XGBoost, GBR, RF, LightGBM, and LR achieved (P > 0.05).ConclusionsMachine learning of the preoperative clinical data could accurately predict nomogram for SMILE. The machine learning methods may assist the refractive surgeons and shorten the learning curve of junior residents while making the nomogram adjustment.",article,0,,,"Liu, Pan;Gu, Xiaochen;Jiao, Yexuan;Ye, Xinqi;Zhou, Yu-Hang;Wang, Xinlin;Zhou, Yongjin;Shao, Zhengbo",,,,,,,International Ophthalmology,,,SCOPUS,"Liu Pan, 2025, International Ophthalmology",,"Liu Pan, 2025, International Ophthalmology"
+2025,15,https://app.dimensions.ai/details/publication/pub.1188351821,Editorial for the Special Issue “Medical Data Processing and Analysis—2nd Edition”,1170,9,,Diagnostics,10.3390/diagnostics15091170,2025-05-04,"Mustafa, Wan Azani;Alquran, Hiam","Medical data processing and analysis have become central to advancements in healthcare, driven largely by the need for accurate diagnosis, personalized treatment, and efficient healthcare system management [...].",article,0,,,"Mustafa, Wan Azani;Alquran, Hiam",,,,,,,Diagnostics,,,SCOPUS,"Mustafa Wan Azani, 2025, Diagnostics",,"Mustafa Wan Azani, 2025, Diagnostics"
+2025,20,https://app.dimensions.ai/details/publication/pub.1188418326,Application of machine learning in predicting consumer behavior and precision marketing,e0321854,5,,PLOS One,10.1371/journal.pone.0321854,2025-05-06,"Lin, Jin","with the intensification of market competition and the complexity of consumer behavior, enterprises are faced with the challenge of how to accurately identify potential customers and improve user conversion rate. This paper aims to study the application of machine learning in consumer behavior prediction and precision marketing. Four models, namely support vector machine (SVM), extreme gradient boosting (XGBoost), categorical boosting (CatBoost), and backpropagation artificial neural network (BPANN), are mainly used to predict consumers' purchase intention, and the performance of these models in different scenarios is verified through experiments. The results show that CatBoost and XGBoost have the best prediction results when dealing with complex features and large-scale data, F1 scores are 0.93 and 0.92 respectively, and CatBoost's ROC AUC reaches the highest value of 0.985. while SVM has an advantage in accuracy rate, but slightly underperformance when dealing with large-scale data. Through feature importance analysis, we identify the significant impact of page views, residence time and other features on purchasing behavior. Based on the model prediction results, this paper proposes the specific application of optimization marketing strategies such as recommendation system, dynamic pricing and personalized advertising. Future research could improve the predictive power of the model by introducing more kinds of unstructured data, such as consumer reviews, images, videos, and social media data. In addition, the use of deep learning models, such as Transformers or Self-Attention Mechanisms, can better capture complex patterns in long time series data.",article,0,,,"Lin, Jin",,,,,,,PLOS One,,,SCOPUS,"Lin Jin, 2025, PLOS One",,"Lin Jin, 2025, PLOS One"
+2025,73,https://app.dimensions.ai/details/publication/pub.1188440566,Comparing the influence of social risk factors on machine learning model performance across racial and ethnic groups in home healthcare,102431,3,,Nursing Outlook,10.1016/j.outlook.2025.102431,2025-05-07,"Hobensack, Mollie;Davoudi, Anahita;Song, Jiyoun;Cato, Kenrick;Bowles, Kathryn H;Topaz, Maxim","This study examined the impact of social risk factors on machine learning model performance for predicting hospitalization and emergency department visits in home healthcare. Using retrospective data from one U.S. home healthcare agency, four models were developed with unstructured social information documented in clinical notes. Performance was compared with and without social factors. A subgroup analyses was conducted by race and ethnicity to assess for fairness. LightGBM performed best overall. Social factors had a modest effect, but findings highlight the feasibility of integrating unstructured social information into machine learning models and the importance of fairness evaluation in home healthcare.",article,0,,,"Hobensack, Mollie;Davoudi, Anahita;Song, Jiyoun;Cato, Kenrick;Bowles, Kathryn H;Topaz, Maxim",,,,,,,Nursing Outlook,,,SCOPUS,"Hobensack Mollie, 2025, Nursing Outlook",,"Hobensack Mollie, 2025, Nursing Outlook"
+2025,15,https://app.dimensions.ai/details/publication/pub.1188518085,Prediction of Auditory Performance in Cochlear Implants Using Machine Learning Methods: A Systematic Review,56,3,,Audiology Research,10.3390/audiolres15030056,2025-05-08,"Demirtaş Yılmaz, Beyza","Background/Objectives: Cochlear implantation is an advantageous procedure for individuals with severe to profound hearing loss in many aspects related to auditory performance, social communication and quality of life. As machine learning applications have been used in the field of Otorhinolaryngology and Audiology in recent years, signal processing, speech perception and personalised optimisation of cochlear implantation are discussed. Methods: A comprehensive literature review was conducted in accordance with the PRISMA guidelines. PubMed, Scopus, Web of Science, Google Scholar and IEEE databases were searched for studies published between 2010 and 2025. We analyzed 59 articles that met the inclusion criteria. Rayyan AI software was used to classify the studies so that the risk of bias was reduced. Study design, machine learning algorithms, and audiological measurements were evaluated in the data analysis. Results: Machine learning applications were classified as preoperative evaluation, speech perception, and speech understanding in noise and other studies. The success rates of the articles are presented together with the number of articles changing over the years. It was observed that Random Forest, Decision Trees (96%), Bayesian Linear Regression (96.2%) and Extreme machine learning (99%) algorithms reached high accuracy rates. Conclusions: In cochlear implantation applications in the field of audiology, it has been observed that studies have been carried out with a variable number of people and data sets in different subfields. In machine learning applications, it is seen that a high amount of data, data diversity and long training times contribute to achieving high performance. However, more research is needed on deep learning applications in complex problems such as comprehension in noise that require time series processing. Funding and other resources: This study was not funded by any institution or organization. No registration was performed for this study.",article,0,,,"Demirtaş Yılmaz, Beyza",,,,,,,Audiology Research,,,SCOPUS,"Demirtaş Yılmaz Beyza, 2025, Audiology Research",,"Demirtaş Yılmaz Beyza, 2025, Audiology Research"
+2025,192,https://app.dimensions.ai/details/publication/pub.1188584829,A study on heart data analysis and prediction using advanced machine learning methods,110308,Pt B,,Computers in Biology and Medicine,10.1016/j.compbiomed.2025.110308,2025-05-12,"Değer, Serbun Ufuk","Cardiovascular diseases comprise a diverse array of disorders impacting the cardiac structure and vascular system and rank among the predominant factors contributing to mortality on a global scale. Every day, a significant number of individuals die from various heart-related issues. Therefore, early detection of heart diseases is of critical importance. Especially following these diagnoses, providing a more accurate diagnosis for individuals at high risk and subsequent extra treatments outline an essential roadmap for preventing heart attacks. This paper compares the performance of classic machine learning (ClassicML) and automated machine learning (AutoML) models across different variations that incorporate feature engineering and balancing techniques, thereby identifying which machine learning model is more successful in the development and implementation of patient-centered systems for the early prediction of cardiovascular diseases. The models used in this study utilize a combined dataset from Swiss, Hungarian, Cleveland, and Long Beach VA universities. This dataset consists of 14 main features, of which we used 12 features to analyze the individual experiencing a heart attack. The result of this classification problem is validated by accuracy. The accuracy result obtained is supported by the F1 score, precision, and recall results. The research encompasses nine traditional machine-learning algorithms as well as seven automated machine-learning algorithms. The findings of this investigation demonstrate that the performance of AutoML tools is not necessarily superior to traditional machine learning methodologies. Moreover, they highlight that effective feature extraction, when combined with an appropriate data balancing technique and a suitable machine learning model, can yield the best performance.",article,0,,,"Değer, Serbun Ufuk",,,,,,,Computers in Biology and Medicine,,,SCOPUS,"Değer Serbun Ufuk, 2025, Computers in Biology and Medicine-a",,"Değer Serbun Ufuk, 2025, Computers in Biology and Medicine"
+2025,139,https://app.dimensions.ai/details/publication/pub.1188593272,Swimming into the future: Machine learning in zebrafish behavioral research,111398,,,Progress in Neuro-Psychopharmacology and Biological Psychiatry,10.1016/j.pnpbp.2025.111398,2025-05-12,"Fontana, Barbara D;Canzian, Julia;Rosemberg, Denis B","The zebrafish (Danio rerio) has emerged as a powerful organism in behavioral neuroscience, offering invaluable insights into the neural circuits and molecular pathways underlying complex behaviors. Although the knowledge of zebrafish behavioral repertoire is expanding rapidly, fundamental questions regarding complex behaviors remain poorly explored. Recent advances in machine learning offer potential for enhancing zebrafish behavioral analysis, enabling more precise, scalable, and unbiased assessments when compared to the traditional method. Thus, machine learning automates tracking and pattern recognition, uncovering new behavioral phenotypes and streamlining analysis typically manually assessed. Here, we highlight the potential use of machine learning tools in zebrafish-based models uncovering nuanced behavioral phenotypes to accelerate discoveries in translational neurobehavioral research, addressing the challenges and ethical considerations in the field. We emphasize that associating machine learning with zebrafish behavioral research, significant advances to elucidate neural and molecular mechanisms driving complex behaviors are expected. Collectively, the progressive refinement of these methods by enabling more detailed and efficient analysis will not only enhance the utility of zebrafish in translational neuroscience, but also contribute to develop more effective models of human disorders and in the search of potential neuroprotective strategies.",article,0,,,"Fontana, Barbara D;Canzian, Julia;Rosemberg, Denis B",,,,,,,Progress in Neuro-Psychopharmacology and Biological Psychiatry,,,SCOPUS,"Fontana Barbara D, 2025, Progress in Neuro-Psychopharmacology and Biological Psychiatry",,"Fontana Barbara D, 2025, Progress in Neuro-Psychopharmacology and Biological Psychiatry"
+2025,16,https://app.dimensions.ai/details/publication/pub.1188692892,A Basic Machine Learning Primer for Surgical Research in Congenital Heart Disease,571,5,,World Journal for Pediatric and Congenital Heart Surgery,10.1177/21501351251335643,2025-05-14,"Staffa, Steven J.;Zurakowski, David","Artificial intelligence and machine learning are rapidly transforming medicine, healthcare, and surgery. Machine learning is a valuable tool for surgeons and researchers in pediatric cardiovascular and thoracic surgery, with innovative applications constantly evolving and expanding. Utilizing machine learning in addition to traditional statistical methods can gain insights into the data and develop more powerful prediction models for improving surgical management and patient outcomes. We provide an accessible introduction to machine learning for surgeons to become familiar with its key essential concepts and architecture, along with a five-step strategy for performing machine learning analyses. With careful study planning using high-quality data, active collaboration between surgeons, researchers, statisticians, and data scientists, and real-world implementation of machine learning algorithms in the clinical setting, machine learning can be a strategic tool for gaining insights into the data in order to improve surgical decision-making, patient risk management, and surgical outcomes.",article,0,,,"Staffa, Steven J.;Zurakowski, David",,,,,,,World Journal for Pediatric and Congenital Heart Surgery,577,,SCOPUS,"Staffa Steven J., 2025, World Journal for Pediatric and Congenital Heart Surgery",,"Staffa Steven J., 2025, World Journal for Pediatric and Congenital Heart Surgery"
+2025,33,https://app.dimensions.ai/details/publication/pub.1188708470,Using Machine Learning Technique in Managing Emergency Triage Flow,152,2,,Acta Informatica Medica,10.5455/aim.2025.33.152-157,2025,"Almulhim, Mohammed;Alfaraj, Dunya;Alabbad, Dina;Alghamdi, Faisal A;AlKhudair, Mubarak A;AlKatout, Khalid A;AlShehri, Saud A;Alsulaibaikh, Amal","Background: Triage is a critical component of Emergency department care. Erroneous patient classification and mis-triaging are common in present triage systems worldwide. Therefore, several institutes worldwide have developed artificial intelligence-based algorithms that use machine learning approaches to sort and triage patients effectively.
+Objective: This study aims were to propose a machine learning model to predict the triage level for emergency medicine department patients and compare its performance to the standard nursing triage system.
+Methods: This retrospective pilot study collected the dataset of emergency department records from King Fahad Hospital of the University in khobar, between January 1, 2020, and December 31, 2022. A sample of 998 randomly selected patients was included in this cohort. The machine learning model was trained using 10-fold cross-validation. Two experiments were conducted, including five triage levels, and the second combing triage levels 2, 3, 4, and 5.
+Results: The machine learning model achieved an accuracy of 84% in experiment 1 and 64% in experiment 2. The mis-triage rates of the machine learning model were significantly lower than those of the standard nursing triage system.
+Conclusion: The machine learning model achieved higher accuracy and lower mis-triage rates than the standard nursing triage system. Thus, the proposed machine learning model can be a helpful tool for emergency department triage, enabling more efficient and accurate patient management.",article,0,,,"Almulhim, Mohammed;Alfaraj, Dunya;Alabbad, Dina;Alghamdi, Faisal A;AlKhudair, Mubarak A;AlKatout, Khalid A;AlShehri, Saud A;Alsulaibaikh, Amal",,,,,,,Acta Informatica Medica,157,,SCOPUS,"Almulhim Mohammed, 2025, Acta Informatica Medica",,"Almulhim Mohammed, 2025, Acta Informatica Medica"
+2025,30,https://app.dimensions.ai/details/publication/pub.1188719336,Applications of machine learning and deep learning in musculoskeletal medicine: a narrative review,386,1,,European Journal of Medical Research,10.1186/s40001-025-02511-9,2025-05-15,"Feierabend, Martina;Wolfgart, Julius Michael;Praster, Maximilian;Danalache, Marina;Migliorini, Filippo;Hofmann, Ulf Krister","Artificial intelligence (AI), with its technologies such as machine perception, robotics, natural language processing, expert systems, and machine learning (ML) with its subset deep learning, have transformed patient care and administration in all fields of modern medicine. For many clinicians, however, the nature, scope, and resulting possibilities of ML and deep learning might not yet be fully clear. This narrative review provides an overview of the application of ML and deep learning in musculoskeletal medicine. It first introduces the concept of AI and machine learning and its associated fields. Different machine concepts such as supervised, unsupervised and reinforcement learning will then be presented with current applications and clinical perspective. Finally deep learning applications will be discussed. With significant improvements over the last decade, ML and its subset deep learning today offer potent tools for numerous applications to implement in clinical practice. While initial setup costs are high, these investments can reduce workload and cost globally. At the same time, many challenges remain, such as standardisation in data labelling and often insufficient validity of the obtained results. In addition, legal aspects still will have to be clarified. Until good analyses and predictions are obtained by an ML tool, patience in training and suitable data sets are required. Awareness of the strengths of ML and the limitations that lie within it will help put this technique to good use.",article,0,,,"Feierabend, Martina;Wolfgart, Julius Michael;Praster, Maximilian;Danalache, Marina;Migliorini, Filippo;Hofmann, Ulf Krister",,,,,,,European Journal of Medical Research,,,SCOPUS,"Feierabend Martina, 2025, European Journal of Medical Research",,"Feierabend Martina, 2025, European Journal of Medical Research"
+2025,25,https://app.dimensions.ai/details/publication/pub.1188728342,A meta-analysis of the diagnostic test accuracy of artificial intelligence predicting emergency department dispositions,187,1,,BMC Medical Informatics and Decision Making,10.1186/s12911-025-03010-x,2025-05-15,"Kuo, Kuang-Ming;Chang, Chao Sheng","BackgroundThe rapid advancement of Artificial Intelligence (AI) has led to its widespread application across various domains, showing encouraging outcomes. Many studies have utilized AI to forecast emergency department (ED) disposition, aiming to forecast patient outcomes earlier and to allocate resources better; however, a dearth of comprehensive review literature exists to assess the objective performance standards of these predictive models using quantitative evaluations. This study aims to conduct a meta-analysis to assess the diagnostic accuracy of AI in predicting ED disposition, encompassing admission, critical care, and mortality.MethodsMultiple databases, including Scopus, Springer, ScienceDirect, PubMed, Wiley, Sage, and Google Scholar, were searched until December 31, 2023, to gather relevant literature. Risk of bias was assessed using the Prediction Model Risk of Bias Assessment Tool. Pooled estimates of sensitivity, specificity, and area under the receiver operating characteristic curve (AUROC) were calculated to evaluate AI’s predictive performance. Sub-group analyses were performed to explore covariates affecting AI predictive model performance.ResultsThe study included 88 articles possessed with 117 AI models, among which 39, 45, and 33 models predicted admission, critical care, and mortality, respectively. The reported statistics for sensitivity, specificity, and AUROC represent pooled summary measures derived from the component studies included in this meta-analysis. AI’s summary sensitivity, specificity, and AUROC for predicting admission were 0.81 (95% Confidence Interval [CI] 0.74–0.86), 0.87 (95% CI 0.81–0.91), and 0.87 (95% CI 0.84–0.93), respectively. For critical care, the values were 0.86 (95% CI 0.79–0.91), 0.89 (95% CI 0.83–0.93), and 0.93 (95% CI 0.89–0.95), respectively, and for mortality, they were 0.85 (95% CI 0.80–0.89), 0.94 (95% CI 0.90–0.96), and 0.93 (95% CI 0.89–0.96), respectively. Emergent sample characteristics and AI techniques showed evidence of significant covariates influencing the heterogeneity of AI predictive models for ED disposition.ConclusionsThe meta-analysis indicates promising performance of AI in predicting ED disposition, with certain potential for improvement, especially in sensitivity. Future research could explore advanced AI techniques such as ensemble learning and cross-validation with hyper-parameter tuning to enhance predictive model efficacy.Trial registrationThis systematic review was not registered with PROSPERO or any other similar registry because the review was completed prior to the opportunity for registration, and PROSPERO currently does not accept registrations for reviews that are already completed. We are committed to transparency and have adhered to best practices in systematic review methodology throughout this study.",article,0,,,"Kuo, Kuang-Ming;Chang, Chao Sheng",,,,,,,BMC Medical Informatics and Decision Making,,,SCOPUS,"Kuo Kuang-Ming, 2025, BMC Medical Informatics and Decision Making",,"Kuo Kuang-Ming, 2025, BMC Medical Informatics and Decision Making"
+2025,20,https://app.dimensions.ai/details/publication/pub.1188829656,"AI-driven educational transformation in ICT: Improving adaptability, sentiment, and academic performance with advanced machine learning",e0317519,5,,PLOS One,10.1371/journal.pone.0317519,2025-05-19,"Imran, Azhar;Li, Jianqiang;Alshammari, Ahmad","This study significantly contributes to the sphere of educational technology by deploying state-of-the-art machine learning and deep learning strategies for meaningful changes in education. The hybrid stacking approach did an excellent implementation using Decision Trees, Random Forest, and XGBoost as base learners with Gradient Boosting as a meta-learner, which managed to record an accuracy of 90%. That indeed puts into great perspective the huge potential it possesses for accuracy measures while predicting in educational setups. The CNN model, which predicted with an accuracy of 89%, showed quite impressive capability in sentiment analysis to acquire further insight into the emotional status of the students. RCNN, Random Forests, and Decision Trees contribute to the possibility of educational data complexity with valuable insight into the complex interrelationships within ML models and educational contexts. The application of the bagging XGBoost algorithm, which attained a high accuracy of 88%, further stamps its utility toward enhancement of academic performance through strong robust techniques of model aggregation. The dataset that was used in this study was sourced from Kaggle, with 1205 entries of 14 attributes concerning adaptability, sentiment, and academic performance; the reliability and richness of the analytical basis are high. The dataset allows rigorous modeling and validation to be done to ensure the findings are considered robust. This study has several implications for education and develops on the key dimensions: teacher effectiveness, educational leadership, and well-being of the students. From the obtained information about student adaptability and sentiment, the developed system helps educators to make modifications in instructional strategy more efficiently for a particular student to enhance effectiveness in teaching. All these aspects could provide critical insights for the educational leadership to devise data-driven strategies that would enhance the overall school-wide academic performance, as well as create a caring learning atmosphere. The integration of sentiment analysis within the structure of education brings an inclusive, responsive attitude toward ensuring students' well-being and, thus, a caring educational environment. The study is closely aligned with sustainable ICT in education objectives and offers a transformative approach to integrating AI-driven insights with practice in this field. By integrating notorious ML and DL methodologies with educational challenges, the research puts the basis for future innovations and technology in this area. Ultimately, it contributes to sustainable improvement in the educational system.",article,0,,,"Imran, Azhar;Li, Jianqiang;Alshammari, Ahmad",,,,,,,PLOS One,,,SCOPUS,"Imran Azhar, 2025, PLOS One",,"Imran Azhar, 2025, PLOS One"
+2025,16,https://app.dimensions.ai/details/publication/pub.1188879602,Machine learning applied to mild cognitive impairment: bibliometric and visual analysis from 2015 to 2024,1587441,,,Frontiers in Neurology,10.3389/fneur.2025.1587441,2025-05-21,"Liu, Huan;Huo, Qing;Li, Feng;Luo, Xu;Deng, Renli","Background: At present, the world is in the background of severe aging population challenges. Mild cognitive impairment (MCI), an intermediate state between normal aging and dementia, is a syndrome of cognitive impairment. Early recognition and intervention of MCI have great value for delaying the decline of cognitive function and improving the quality of life in the elderly. Machine learning (ML) is the core sub-branch direction in the field of artificial intelligence. In recent years, evaluating the potential application of machine learning in medicine has been popular, including the field of mild cognitive impairment. However, there is currently no bibliometrics to evaluate the scientific advances in this field.
+Objective: This study aims to visually analyze the current research trends regarding the application of machine learning in the field of MCI through bibliometry and visualization techniques.
+Methods: Using the Web of Science Core Collection database (Wo SCC), relevant articles and reviews of the collection database 2015-2024. Subsequently, the collected papers were subjected to bibliometric analysis utilizing CiteSpace, VOSviewer, and the ""bibliometric"" package in R language.
+Results: A total of 2056 papers related to machine learning in patients with MCI were retrieved from the Wo SCC database. The number of papers is increasing year by year. These papers are mainly from 9,577 organizations in 498 countries, most of which are from the United States and China. The journal with the largest number of publications is the FRONTIERS IN AGING NEUROSCIENCE. Folstein M is an authoritative author from the Johns Hopkins University School of Medicine. His paper ""Mini-mental state: A practical method for grading the cognitive state of patients for the clinician"" is the most cited article in this field. Literature and keyword analysis indicate that MCI prediction, automated monitoring of MCI, continuous evaluation and remote monitoring of cognitive function in individuals with MCI, and interdisciplinary data integration and personalized medicine are current research hotspots and development directions.
+Conclusion: This study is the first to use bibliometric methods to visualize and analyze the application field of machine learning in MCI, revealing research trends and frontiers in this field. This information will provide a useful reference for researchers focusing on machine learning applications in the field of MCI.",article,0,,,"Liu, Huan;Huo, Qing;Li, Feng;Luo, Xu;Deng, Renli",,,,,,,Frontiers in Neurology,,,SCOPUS,"Liu Huan, 2025, Frontiers in Neurology",,"Liu Huan, 2025, Frontiers in Neurology"
+2025,197,https://app.dimensions.ai/details/publication/pub.1188885665,Machine Learning Empowering Microbial Cell Factory: A Comprehensive Review,4897,8,,Applied Biochemistry and Biotechnology,10.1007/s12010-025-05260-x,2025-05-21,"Kong, Dechun;Qian, Jinyi;Gao, Cong;Wang, Yuetong;Shi, Tianqiong;Ye, Chao","The wide application of machine learning has provided more possibilities for biological manufacturing, and the combination of machine learning and synthetic biology technology has ignited even more brilliant sparks, which has created an unpredictable value for the upgrading of microbial cell factories. The review delves into the synergies between machine learning and synthetic biology to create research worth investigating in biotechnology. We explore relevant databases, toolboxes, and machine learning–derived models. Furthermore, we examine specific applications of this combined approach in chemical production, human health, and environmental remediation. By elucidating these successful integrations, this review aims to provide valuable guidance for future research at the intersection of biomanufacturing and artificial intelligence.Graphical Abstract",article,0,,,"Kong, Dechun;Qian, Jinyi;Gao, Cong;Wang, Yuetong;Shi, Tianqiong;Ye, Chao",,,,,,,Applied Biochemistry and Biotechnology,4913,,SCOPUS,"Kong Dechun, 2025, Applied Biochemistry and Biotechnology",,"Kong Dechun, 2025, Applied Biochemistry and Biotechnology"
+2025,14,https://app.dimensions.ai/details/publication/pub.1188928151,Application of Machine Learning and Emerging Health Technologies in the Uptake of HIV Testing: Bibliometric Analysis of Studies Published From 2000 to 2024,e64829,,,Interactive Journal of Medical Research,10.2196/64829,2025-05-22,"Jaiteh, Musa;Phalane, Edith;Shiferaw, Yegnanew A;Amusa, Lateef Babatunde;Twinomurinzi, Hossana;Phaswana-Mafuya, Refilwe Nancy","Background: The global targets for HIV testing for achieving the Joint United Nations Programme on HIV/AIDS (UNAIDS) 95-95-95 targets are still short. Identifying gaps and opportunities for HIV testing uptake is crucial in fast-tracking the second (initiate people living with HIV on antiretroviral therapy) and third (viral suppression) UNAIDS goals. Machine learning and health technologies can precisely predict high-risk individuals and facilitate more effective and efficient HIV testing methods. Despite this advancement, there exists a research gap regarding the extent to which such technologies are integrated into HIV testing strategies worldwide.
+Objective: The study aimed to examine the characteristics, citation patterns, and contents of published studies applying machine learning and emerging health technologies in HIV testing from 2000 to 2024.
+Methods: This bibliometric analysis identified relevant studies using machine learning and emerging health technologies in HIV testing from the Web of Science database using synonymous keywords. The Bibliometrix R package was used to analyze the characteristics, citation patterns, and contents of 266 articles. The VOSviewer software was used to conduct network visualization. The analysis focused on the yearly growth rate, citation analysis, keywords, institutions, countries, authorship, and collaboration patterns. Key themes and topics were driven by the authors' most frequent keywords, which aided the content analysis.
+Results: The analysis revealed a scientific annual growth rate of 15.68%, with an international coauthorship of 8.22% and an average citation count of 17.47 per document. The most relevant sources were from high-impact journals such as the Journal of Internet Medicine Research, JMIR mHealth and uHealth, JMIR Research Protocols, mHealth, AIDS Care-Psychological and Socio-Medical Aspects of AI, and BMC Public Health, and PLOS One. The United States of America, China, South Africa, the United Kingdom, and Australia produced the highest number of contributions. Collaboration analysis showed significant networks among universities in high-income countries, including the University of North Carolina, Emory University, the University of Michigan, San Diego State University, the University of Pennsylvania, and the London School of Hygiene and Tropical Medicine. The discrepancy highlights missed opportunities in strategic partnerships between high-income and low-income countries. The results further demonstrate that machine learning and health technologies enhance the effective and efficient implementation of innovative HIV testing methods, including HIV self-testing among priority populations.
+Conclusions: This study identifies trends and hotspots of machine learning and health technology research in relation to HIV testing across various countries, institutions, journals, and authors. The trends are higher in high-income countries with a greater focus on technology applications for HIV self-testing among young people and priority populations. These insights will inform future researchers about the dynamics of research outputs and help them make scholarly decisions to address research gaps in this field.",article,0,,,"Jaiteh, Musa;Phalane, Edith;Shiferaw, Yegnanew A;Amusa, Lateef Babatunde;Twinomurinzi, Hossana;Phaswana-Mafuya, Refilwe Nancy",,,,,,,Interactive Journal of Medical Research,,,SCOPUS,"Jaiteh Musa, 2025, Interactive Journal of Medical Research",,"Jaiteh Musa, 2025, Interactive Journal of Medical Research"
+2025,213,https://app.dimensions.ai/details/publication/pub.1188989882,Role of machine learning in molecular pathology for breast cancer: A review on gene expression profiling and RNA sequencing application,104780,,,Critical Reviews in Oncology/Hematology,10.1016/j.critrevonc.2025.104780,2025-05-24,"Rezaei, Sahar;Hamedani, Zeinab;Ahmadi, Kousar;Ghannadikhosh, Parna;Motamedi, Alireza;Athari, Maedeh;Yousefi, Hengameh;Rajabi, Amir Hossein;Abbasi, Alireza;Arabi, Hossein","INTRODUCTION: Breast cancer is the most prevalent cancer among women, with growing incidence and mortality rates. Regardless of remarkable progress in cancer research, breast cancer remains a major concern due to its complex nature. These factors underscore the necessity of innovative research and diagnostic tools. Attention to gene signatures and biotechnology methods have shown significant performance in the diagnosis and management of breast cancer. Currently, artificial intelligence (AI) is known as a revolutionary tool to analyze data, identify biomarkers, and enrich diagnostic and prognostic accuracy. Therefore, the integration of breast cancer datasets with artificial intelligence can play a crucial role in the control of breast cancer. This review explores advanced machine learning techniques to analyze transcriptomic data while focusing on breast cancer subtype classification and its potential impact and limitations.
+METHOD: A comprehensive literature search was performed in PubMed, Scopus, WoS, Embase, and IEEE Xplore. Duplicates were removed, two reviewers screened articles, and two additional reviewers resolved conflicts. Data extraction included details on molecular methods, AI techniques, clinical targets, study populations, and data analysis methods which were used to categorize relevant studies into RNA sequencing and gene expression profiling groups.
+RESULT: In the initial stage, 7287 articles were identified, and 54 were retained following further screening, 24 in RNA sequencing and 30 in gene expression profiling. A review of these studies showed how artificial intelligence is advancing breast cancer research by using RNA sequencing and gene expression profiling. AI algorithms, including Random Forest, CNNs, SVMs, and LASSO, were the most applied techniques that showed significant potential to identify biomarkers, prognostic survival, and optimize drug responses to manage breast cancer.
+CONCLUSION: The methods of artificial intelligence hold very great potential for change in the field of breast cancer. This promising progress can be seen in every aspect including diagnosis, prognosis, and treatment. However, it is important to note that we are still in the early stages of progress, and larger-scale studies and interdisciplinary collaborations in this field are needed.",article,0,,,"Rezaei, Sahar;Hamedani, Zeinab;Ahmadi, Kousar;Ghannadikhosh, Parna;Motamedi, Alireza;Athari, Maedeh;Yousefi, Hengameh;Rajabi, Amir Hossein;Abbasi, Alireza;Arabi, Hossein",,,,,,,Critical Reviews in Oncology/Hematology,,,SCOPUS,"Rezaei Sahar, 2025, Critical Reviews in Oncology/Hematology",,"Rezaei Sahar, 2025, Critical Reviews in Oncology/Hematology"
+2025,193,https://app.dimensions.ai/details/publication/pub.1188996182,Machine learning in biofluid mechanics: A review of recent developments,110410,,,Computers in Biology and Medicine,10.1016/j.compbiomed.2025.110410,2025-05-24,"Sattari, Amirmohammad","This review paper comprehensively examines recent advancements in machine learning (ML) applications within biofluid mechanics, with a targeted focus on enabling clinically actionable diagnostics and simulations. It demonstrates how ML, and in particular physics-informed ML methods, are used to enhance the analysis and understanding of intricate biofluid dynamics. The review systematically analyzes various ML techniques, detailing their strengths and limitations in modeling biofluid behaviors. By integrating physics-informed ML methods, such as Physics-Informed Neural Networks (PINNs), this work addresses critical challenges in translating complex biofluid dynamics into practical clinical tools. Differentiating itself from previous literature, this review not only summarizes current methods but also proposes potential solutions-including data augmentation, transfer learning, and hybrid modeling approaches (e.g., PINNs)-to overcome challenges related to limited datasets and the integration of complex physics. The review emphasizes ML's ability to enhance diagnostic accuracy, enable personalized treatment strategies, and accelerate computational simulations for applications like cardiovascular disease detection and respiratory disorder diagnosis, with findings showing that ML-driven approaches can reduce diagnostic errors by up to 30 % in cardiovascular applications and improve early detection rates in metabolomics-based diagnostics. Findings indicate that while ML techniques have significantly improved predictive capabilities in biofluid dynamics, challenges such as data scarcity and multi-scale physical integration remain critical. By outlining strategies to bridge the gap between ML advancements and clinical implementation, this review provides a robust framework for future research aimed at integrating ML with biofluid mechanics to revolutionize healthcare delivery. The paper concludes by identifying future research directions aimed at further integrating ML with domain-specific physical insights to achieve more reliable and accurate biofluid models.",article,0,,,"Sattari, Amirmohammad",,,,,,,Computers in Biology and Medicine,,,SCOPUS,"Sattari Amirmohammad, 2025, Computers in Biology and Medicine",,"Sattari Amirmohammad, 2025, Computers in Biology and Medicine"
+2025,50,https://app.dimensions.ai/details/publication/pub.1189071588,Machine learning algorithms for heart disease diagnosis: A systematic review,103082,8,,Current Problems in Cardiology,10.1016/j.cpcardiol.2025.103082,2025-05-24,"Mao, Yian;Jimma, Bahiru Legesse;Mihretie, Tefera Belsty","BACKGROUND: The heart is a vital organ that pumps blood throughout the body. Its proper functioning is crucial for maintaining overall health, and any malfunction can significantly impact other bodily systems. Recently, machine learning has emerged as a valuable tool in cardiology, enhancing the prediction and diagnosis of heart diseases. By analyzing clinical data, these algorithms reveal patterns that traditional methods might miss, aiding in early detection and personalized treatment. This study aimed to evaluate the most widely used and accurate supervised machine-learning algorithms for predicting and diagnosing heart disease.
+METHODS: A systematic analysis was conducted using research articles obtained from six reputable academic databases: Scopus, PubMed, ScienceDirect, Dimensions, ProQuest, and IEEE. The review covers the years from 2013 to 2024. The focus was on the application of various supervised machine-learning algorithms for diagnosing heart disease.
+RESULT: The study identified twenty-four relevant studies that examined the use of supervised machine learning algorithms for diagnosing and predicting heart disease. Among these, five algorithms were prominent: Decision Trees, Logistic Regression, Naive Bayes, Random Forests, and Artificial Neural Networks. Decision Trees were found to be the most commonly applied and best-performing algorithm, followed by Logistic Regression and Naive Bayes. However, Artificial Neural Networks and Random Forests received less attention despite their potential for high accuracy in certain contexts.
+CONCLUSION: The research findings highlight important trends in heart disease prediction models using supervised machine learning. By examining these trends, researchers can identify algorithms that improve forecasting accuracy, guiding future research objectives and advancing the effectiveness of heart disease diagnosis.",article,0,,,"Mao, Yian;Jimma, Bahiru Legesse;Mihretie, Tefera Belsty",,,,,,,Current Problems in Cardiology,,,SCOPUS,"Mao Yian, 2025, Current Problems in Cardiology",,"Mao Yian, 2025, Current Problems in Cardiology"
+2025,387,https://app.dimensions.ai/details/publication/pub.1189149594,A scientometric analysis of machine learning in schizophrenia neuroimaging: Trends and insights (2012–2024),119485,,,Journal of Affective Disorders,10.1016/j.jad.2025.119485,2025-05-27,"Wang, Xingsong;Chen, Xiaoqun;Yan, Miaomiao;Kong, Li","Machine learning applications in schizophrenia neuroimaging research have undergone significant evolution since 2012. However, a comprehensive scientometric analysis of this field has not yet been conducted. This study analyzed 315 original research articles, accumulating 10,181 citations, from the Web of Science Core Collection (WOSCC) (2012-2024) using R-bibliometrix and CiteSpace. The annual publication output showed steady growth, reaching a peak of 57 publications in 2021, followed by a gradual decline. Network analysis revealed a thematic evolution from conventional machine learning applications toward explainable artificial intelligence, and a methodlogical shift from single-modality imaging to integrated multimodal approaches (modularity Q = 0.7536, silhouette S = 0.9039). China led in publication count (115), whereas the United States had the highest citation impact (4414 citations). Recent research clusters (2021-2024) highlighted areas such as risk assessment, brain age prediction, and treatment response monitoring. These findings provide strategic guidance for future research directions in neuroimaging-based machine learning applications for schizophrenia, emphasizing the critical need for methodological standardization to enhance clinical application.",article,0,,,"Wang, Xingsong;Chen, Xiaoqun;Yan, Miaomiao;Kong, Li",,,,,,,Journal of Affective Disorders,,,SCOPUS,"Wang Xingsong, 2025, Journal of Affective Disorders",,"Wang Xingsong, 2025, Journal of Affective Disorders"
+2025,26,https://app.dimensions.ai/details/publication/pub.1189200358,Identification of Factors Affecting Prostate Cancer Using Machine Learning Methods: A Systematic Review,1519,5,,Asian Pacific Journal of Cancer Prevention : APJCP,10.31557/apjcp.2025.26.5.1519,2025-05-01,"Mohammadi, Serveh;Imani, Behzad;Saeedi, Soheila;Amirzargar, Mohammad Ali","BACKGROUND: Prostate cancer is identified as the second cause of malignancy worldwide and the fifth cause of death among men. Considering the upward trend in cancer incidence and mortality rate due to this disease, the identification of risk factors can be of great help in prevention and conservative measures. Also, due to the significant growth in artificial intelligence and machine learning methods, many risk factors can be studied by identifying the most commonly used methods.
+METHODS: The articles reviewed in this study were from 4 main databases: PubMed, Scopus, Web of Science, and IEEE Xplore. This systematic review was based on Preferred Reporting Items for Systematic Reviews and Meta-Analyses (PRISMA) guidelines. Searching the databases was conducted from the beginning of 2015 to February 17, 2024 were included. Only the articles investigating factors affecting prostate cancer using machine learning are included in this systematic review. Non-English language studies, studies that did not involve human participants, review studies, meta-analyses, letters to editors, and commentary were excluded.
+RESULTS: The findings showed that China had the most research in identifying prostate cancer risk factors with machine learning algorithms. Age, PSA level (prostate-specific antigen), tPSA (total PSA), fPSA (free PSA), and PSAD (PSA density) were identified as the most important risk factors in prostate cancer. R-software and Python were most employed in the data analysis. Random forest, support vector machine, and logistic regression were utilized more than other machine learning methods. Among data sources, MCC-Spain, SEER (surveillance, Epidemiology, and End Results), PLCO (National Cancer Institute's Prostate, Lung, Colorectal, and Ovarian Cancer Screening Trial), and NCBI (National Center for Biotechnology Information) were registries that were used in the studies.
+CONCLUSION: This research can help researchers use machine learning methods with better performance and registered data sources and identify the most influential risk factors for prostate cancer prevention and screening.",article,0,,,"Mohammadi, Serveh;Imani, Behzad;Saeedi, Soheila;Amirzargar, Mohammad Ali",,,,,,,Asian Pacific Journal of Cancer Prevention : APJCP,1528,,SCOPUS,"Mohammadi Serveh, 2025, Asian Pacific Journal of Cancer Prevention : APJCP",,"Mohammadi Serveh, 2025, Asian Pacific Journal of Cancer Prevention : APJCP"
+2025,12,https://app.dimensions.ai/details/publication/pub.1189292985,Scoping Review of Machine Learning Techniques in Marker-Based Clinical Gait Analysis,591,6,,Bioengineering,10.3390/bioengineering12060591,2025-05-30,"Dibbern, Kevin N.;Krzak, Maddalena G.;Olivas, Alejandro;Albert, Mark V.;Krzak, Joseph J.;Kruger, Karen M.","The recent proliferation of novel machine learning techniques in quantitative marker-based 3D gait analysis (3DGA) has shown promise for improving interpretations of clinical gait analysis. The objective of this study was to characterize the state of the literature on using machine learning in the analysis of marker-based 3D gait analysis to provide clinical insights that may be used to improve clinical analysis and care.
+METHODS: A scoping review of the literature was conducted using the PubMed and Web of Science databases. Search terms from eight relevant articles were identified by the authors and added to by experts in clinical gait analysis and machine learning. Inclusion was decided by the adjudication of three reviewers.
+RESULTS: The review identified 4324 articles matching the search terms. Adjudication identified 105 relevant papers. The most commonly applied techniques were the following: support vector machines, neural networks (NNs), and logistic regression. The most common clinical conditions evaluated were cerebral palsy, Parkinson's disease, and post-stroke.
+CONCLUSIONS: ML has been used broadly in the literature and recent advances in deep learning have been more successful in larger datasets while traditional techniques are robust in small datasets and can outperform NNs in accuracy and explainability. XAI techniques can improve model interpretability but have not been broadly used.",article,0,,,"Dibbern, Kevin N.;Krzak, Maddalena G.;Olivas, Alejandro;Albert, Mark V.;Krzak, Joseph J.;Kruger, Karen M.",,,,,,,Bioengineering,,,SCOPUS,"Dibbern Kevin N., 2025, Bioengineering",,"Dibbern Kevin N., 2025, Bioengineering"
+2025,39,https://app.dimensions.ai/details/publication/pub.1189347456,Performance Comparison of Machine Learning Using Radiomic Features and CNN-Based Deep Learning in Benign and Malignant Classification of Vertebral Compression Fractures Using CT Scans,1113,2,,Journal of Imaging Informatics in Medicine,10.1007/s10278-025-01553-z,2025-06-02,"Yeom, Jong Chan;Park, So Hyun;Kim, Young Jae;Ahn, Tae Ran;Kim, Kwang Gi","Distinguishing benign from malignant vertebral compression fractures is critical for clinical management but remains challenging on contrast-enhanced abdominal CT, which lacks the soft tissue contrast of MRI. This study evaluates and compares radiomic feature-based machine learning and convolutional neural network-based deep learning models for classifying VCFs using abdominal CT. A retrospective cohort of 447 vertebral compression fractures (196 benign, 251 malignant) from 286 patients was analyzed. Radiomic features were extracted using PyRadiomics, with Recursive Feature Elimination selecting six key texture-based features (e.g., Run Variance, Dependence Non-Uniformity Normalized), highlighting textural heterogeneity as a malignancy marker. Machine learning models (XGBoost, SVM, KNN, Random Forest) and a 3D CNN were trained on CT data, with performance assessed via precision, recall, F1 score, accuracy, and AUC. The deep learning model achieved marginally superior overall performance, with a statistically significant higher AUC (77.66% vs. 75.91%, p < 0.05) and better precision, F1 score, and accuracy compared to the top-performing machine learning model (XGBoost). Deep learning’s attention maps localized diagnostically relevant regions, mimicking radiologists’ focus, whereas radiomics lacked spatial interpretability despite offering quantifiable biomarkers. This study underscores the complementary strengths of machine learning and deep learning: radiomics provides interpretable features tied to tumor heterogeneity, while DL autonomously extracts high-dimensional patterns with spatial explainability. Integrating both approaches could enhance diagnostic accuracy and clinician trust in abdominal CT-based VCF assessment. Limitations include retrospective single-center data and potential selection bias. Future multi-center studies with diverse protocols and histopathological validation are warranted to generalize these findings.",article,0,,,"Yeom, Jong Chan;Park, So Hyun;Kim, Young Jae;Ahn, Tae Ran;Kim, Kwang Gi",,,,,,,Journal of Imaging Informatics in Medicine,1121,,SCOPUS,"Yeom Jong Chan, 2025, Journal of Imaging Informatics in Medicine",,"Yeom Jong Chan, 2025, Journal of Imaging Informatics in Medicine"
+2025,987,https://app.dimensions.ai/details/publication/pub.1189354480,A review of the application of machine learning in carbon emission assessment studies: prediction optimization and driving factor selection,179678,,,Science of The Total Environment,10.1016/j.scitotenv.2025.179678,2025-06-02,"Zhao, Chen;Zhang, Min;Bai, Jiandong;Wu, Jing;Chang, I-Shin","With growing global concerns over the greenhouse effect and its impacts, developing effective carbon emission prediction models has become an imperative for addressing climate change. Machine learning (ML) excels at extracting potential patterns and correlations from a wide range of datasets, playing an indispensable role in this research field. This study conducted a systematic literature review of 126 peer-reviewed papers applying machine learning to carbon accounting, aiming to synthesize research progress, identify knowledge gaps and propose future directions. Key findings indicate that: single-model prediction frameworks dominate current methodologies, with decision tree-based ML models exhibiting the highest prevalence; energy types and consumption structures are recognized as the most critical determinants of carbon emissions; while existing research predominantly emphasizes economic drivers (e.g., GDP and industrial structure), demographic factors such as population dynamics and aging are anticipated to become focal points due to global demographic shifts. Despite ML's demonstrated advantages in predictive accuracy, pattern identification and computational efficiency, persistent challenges remain. Future endeavors should prioritize: standardization of data formats and interoperability protocols, pen-access sharing of datasets and analytical code and fostering interdisciplinary collaboration. This review establishes a systematic framework for advancing carbon accounting research, offering insights to catalyze cross-disciplinary innovation in the field.",article,0,,,"Zhao, Chen;Zhang, Min;Bai, Jiandong;Wu, Jing;Chang, I-Shin",,,,,,,Science of The Total Environment,,,SCOPUS,"Zhao Chen, 2025, Science of The Total Environment",,"Zhao Chen, 2025, Science of The Total Environment"
+2025,57,https://app.dimensions.ai/details/publication/pub.1189356310,Predicting genetic merit in Harnali sheep using machine learning techniques,241,5,,Tropical Animal Health and Production,10.1007/s11250-025-04495-4,2025-06-03,"Dash, Spandan Shashwat;Bangar, Yogesh C.;Magotra, Ankit;Patil, C. S.","Machine learning techniques offer promising avenues for enhancing animal breeding programs by leveraging genomic and phenotypic data to predict valuable traits accurately. In this study, we evaluated seven machine learning algorithms viz., K-nearest Network (KNN), Multiple Linear Regression (MLR), Bayesian Regression (BR), Support Vector Machine (SVM), Artificial Neural Network (ANN), Random Forest (RF), and Gradient Boosting Machine (GBM) for predicting genetic merits of Harnali sheep using pedigree and phenotypic information. The dataset comprised records of 2036 Harnali lambs spanning from 1998 to 2021, with predictors including pedigree records, birth year, sex, weight at lambing, birth weight, weaning weight, average daily gain, and six-month body weight. Breeding values for six-month body weight were estimated using the restricted maximum likelihood method under Wombat software. Machine learning algorithms were trained and tested on a 75% train set and 25% test set, respectively. The algorithms were compared based on goodness of fit criteria including coefficient of determination (R2), root mean square error (RMSE), mean absolute error (MAE), Akaike Information Criterion (AIC) and Bayesian Information Criterion (BIC) and bias. The results revealed GBM as the top-performing model, achieving an R2 value of 0.64 and demonstrating superior predictive accuracy (r = 0.80) with lower values of RMSE, MAE, AIC, BIC and bias. This model consistently outperformed others, showcasing its effectiveness in accurately predicting breeding values for Harnali sheep. The study underscores the potential of machine learning algorithms especially GBM in optimizing breeding programs and accelerating genetic progress in Harnali sheep.",article,0,,,"Dash, Spandan Shashwat;Bangar, Yogesh C.;Magotra, Ankit;Patil, C. S.",,,,,,,Tropical Animal Health and Production,,,SCOPUS,"Dash Spandan Shashwat, 2025, Tropical Animal Health and Production",,"Dash Spandan Shashwat, 2025, Tropical Animal Health and Production"
+2025,282,https://app.dimensions.ai/details/publication/pub.1189393843,Predicting surgical intervention in paediatric cervical abscesses using machine learning: a comparative analysis,4335,8,,European Archives of Oto-Rhino-Laryngology,10.1007/s00405-025-09505-7,2025-06-03,"Koshu, Ryota;Noda, Masao;Nakamoto, Haruna;Fukuhara, Takahiro;Ito, Makoto","BackgroundPaediatric cervical abscesses necessitate careful assessment to determine appropriate treatment strategies. Some patients require surgical intervention, although conservative management is effective. However, the criteria for the surgical indications remain unclear. Machine learning models have demonstrated promise in improving diagnostic accuracy across different medical fields.ObjectiveThis study aimed to assess the use of machine learning models in predicting the requirement for surgical intervention in paediatric cervical abscesses and compare their performance with that of traditional logistic regression.MethodsA retrospective analysis was conducted on 55 paediatric patients diagnosed with cervical abscesses between 2010 and 2024. The patient demographics, clinical findings, laboratory data, and imaging characteristics were examined. Six predictive models were developed: logistic regression, Random Forest, Lasso regression, Support Vector Machine (SVM), Extreme Gradient Boosting (XGBoost), and Light Gradient Boosting Machine. Model performance was evaluated using the area under the curve (AUC), accuracy, precision, recall, and F1-score. Feature importance was examined to identify the main predictive factors.ResultsAmong all the factors, abscess size was the most significant predictor of surgical intervention. Machine-learning models, especially XGBoost, outperformed logistic regression, achieving the highest AUC, accuracy, and recall. Inflammatory markers, including neutrophil-to-lymphocyte ratio and neutrophil count, also substantially contributed to the prediction accuracy.ConclusionMachine learning models, particularly XGBoost, provide superior predictive performance compared with logistic regression, providing a valuable tool for optimising treatment decisions in paediatric cervical abscesses. These models improve clinical decision-making by integrating multiple factors, decreasing unnecessary surgeries, and enhancing patient outcomes.",article,0,,,"Koshu, Ryota;Noda, Masao;Nakamoto, Haruna;Fukuhara, Takahiro;Ito, Makoto",,,,,,,European Archives of Oto-Rhino-Laryngology,4342,,SCOPUS,"Koshu Ryota, 2025, European Archives of Oto-Rhino-Laryngology",,"Koshu Ryota, 2025, European Archives of Oto-Rhino-Laryngology"
+2026,13,https://app.dimensions.ai/details/publication/pub.1189507565,Leveraging machine learning models in evaluating ADMET properties for drug discovery and development: Original scientific paper,2772,3,,ADMET and DMPK,10.5599/admet.2772,2026-06-07,"Venkataraman, Magesh;Rao, Gopi Chand;Madavareddi, Jeevan Karthik;Maddi, Srinivas Rao","Background and purpose: The evaluation of ADMET properties remains a critical bottleneck in drug discovery and development, contributing significantly to the high attrition rate of drug candidates. Traditional experimental approaches are often time-consuming, cost-intensive, and limited in scalability. This review aims to investigate how recent advances in machine learning (ML) models are revolutionizing ADMET prediction by enhancing accuracy, reducing experimental burden, and accelerating decision-making during early-stage drug development.
+Experimental approach: This article systematically examines the current landscape of ML applications in ADMET prediction, including the types of algorithms employed, common molecular descriptors and datasets used, and model development workflows. It also explores public databases, model evaluation metrics, and regulatory considerations relevant to computational toxicology. Emphasis is placed on supervised and deep learning techniques, model validation strategies, and the challenges of data imbalance and model interpretability.
+Key results: ML-based models have demonstrated significant promise in predicting key ADMET endpoints, outperforming some traditional quantitative structure - activity relationship (QSAR) models. These approaches provide rapid, cost-effective, and reproducible alternatives that integrate seamlessly with existing drug discovery pipelines. Case studies discussed in this review illustrate the successful deployment of ML models for solubility, permeability, metabolism, and toxicity predictions.
+Conclusion: Machine learning has emerged as a transformative tool in ADMET prediction, offering new opportunities for early risk assessment and compound prioritization. While challenges such as data quality, algorithm transparency, and regulatory acceptance persist, continued integration of ML with experimental pharmacology holds the potential to substantially improve drug development efficiency and reduce late-stage failures.",article,0,,,"Venkataraman, Magesh;Rao, Gopi Chand;Madavareddi, Jeevan Karthik;Maddi, Srinivas Rao",,,,,,,ADMET and DMPK,2772,,SCOPUS,"Venkataraman Magesh, 2026, ADMET and DMPK",,"Venkataraman Magesh, 2026, ADMET and DMPK"
+2025,47,https://app.dimensions.ai/details/publication/pub.1189547391,Implications From the Analogous Relationship Between Evolutionary and Learning Processes,e70027,8,,BioEssays,10.1002/bies.70027,2025-06-08,"Leong, Jason Cheok Kuan;Imaizumi, Masaaki;Innan, Hideki;Irie, Naoki","Organismal evolution is a process of discovering better-fitting phenotypes through trial and error across generations. This iterative process resembles learning processes, an analogy recognized since the 1950s. Recognizing this parallel suggests that evolutionary biology and machine learning can mutually benefit from each other; however, ample opportunities for research into their corresponding concepts remain. In this review, we aim to enhance predictive capabilities and theoretical developments in both fields by exploring their conceptual parallels through specific examples that have emerged from recent advances. We focus on the importance of moving beyond predictions by machine learning approaches for specific cases, but instead advocate for interpretable machine learning approaches for discovering common laws for predicting evolutionary outcomes. This approach seeks to establish a theoretical framework that can transform evolutionary science into a field enriched with predictive theory while also inspiring new modeling and algorithmic strategies in machine learning.",article,0,,,"Leong, Jason Cheok Kuan;Imaizumi, Masaaki;Innan, Hideki;Irie, Naoki",,,,,,,BioEssays,,,SCOPUS,"Leong Jason Cheok Kuan, 2025, BioEssays",,"Leong Jason Cheok Kuan, 2025, BioEssays"
+2025,36,https://app.dimensions.ai/details/publication/pub.1189578882,Machine learning is changing osteoporosis detection: an integrative review,1313,8,,Osteoporosis International,10.1007/s00198-025-07541-x,2025-06-10,"Zhang, Yuji;Ma, Ming;Huang, Xingchun;Liu, Jinmin;Tian, Cong;Duan, Zhenkun;Fu, Hongyin;Huang, Lei;Geng, Bin","Machine learning drives osteoporosis detection and screening with higher clinical accuracy and accessibility than traditional osteoporosis screening tools. This review takes a step-by-step view of machine learning for osteoporosis detection, providing insights into today’s osteoporosis detection and the outlook for the future. The early diagnosis and risk detection of osteoporosis have always been crucial and challenging issues in the medical field. With the in-depth application of artificial intelligence technology, especially machine learning technology in the medical field, significant breakthroughs have been made in the application of early diagnosis and risk detection of osteoporosis. Machine learning is a multidimensional technical system that encompasses a wide variety of algorithm types. Machine learning algorithms have become relatively mature and developed over many years in medical data processing. They possess stable and accurate detection performance, laying a solid foundation for the detection and diagnosis of osteoporosis. As an essential part of the machine learning technical system, deep-learning algorithms are complex algorithm models based on artificial neural networks. Due to their robust image recognition and feature extraction capabilities, deep learning algorithms have become increasingly mature in the early diagnosis and risk assessment of osteoporosis in recent years, opening new ideas and approaches for the early and accurate diagnosis and risk detection of osteoporosis. This paper reviewed the latest research over the past decade, ranging from relatively basic and widely adopted machine learning algorithms combined with clinical data to more advanced deep learning techniques integrated with imaging data such as X-ray, CT, and MRI. By analyzing the application of algorithms at different stages, we found that these basic machine learning algorithms performed well when dealing with single structured data but encountered limitations when handling high-dimensional and unstructured imaging data. On the other hand, deep learning can significantly improve detection accuracy. It does this by automatically extracting image features, especially in image histological analysis. However, it faces challenges. These include the “black-box” problem, heavy reliance on large amounts of labeled data, and difficulties in clinical interpretability. These issues highlighted the importance of model interpretability in future machine learning research. Finally, we expect to develop a predictive model in the future that combines multimodal data (such as clinical indicators, blood biochemical indicators, imaging data, and genetic data) integrated with electronic health records and machine learning techniques. This model aims to present a skeletal health monitoring system that is highly accessible, personalized, convenient, and efficient, furthering the early detection and prevention of osteoporosis.",article,0,,,"Zhang, Yuji;Ma, Ming;Huang, Xingchun;Liu, Jinmin;Tian, Cong;Duan, Zhenkun;Fu, Hongyin;Huang, Lei;Geng, Bin",,,,,,,Osteoporosis International,1326,,SCOPUS,"Zhang Yuji, 2025, Osteoporosis International",,"Zhang Yuji, 2025, Osteoporosis International"
+2025,62,https://app.dimensions.ai/details/publication/pub.1189581206,Machine learning-based error detection in the clinical laboratory: a critical review,535,7,,Critical Reviews in Clinical Laboratory Sciences,10.1080/10408363.2025.2512468,2025-06-11,"Lin, Yanchun;Mensah, Isaiah K.;Doering, Michelle;Shean, Ryan C.;Spies, Nicholas C.","Laboratory test results play a crucial role in the modern medical decision-making process. As such, errors in any phase of the testing process can have substantial clinical and operational impacts. While the development of increasingly robust quality assurance systems has enhanced the reliability of laboratory results, opportunities for improvement still exist. Machine learning approaches offer the potential to evaluate complex patterns and discriminate physiological variation from laboratory errors. In this work, we critically evaluate the current state of published machine learning solutions to laboratory errors, while highlighting unmet needs and potential barriers to widespread implementation.",article,0,,,"Lin, Yanchun;Mensah, Isaiah K.;Doering, Michelle;Shean, Ryan C.;Spies, Nicholas C.",,,,,,,Critical Reviews in Clinical Laboratory Sciences,547,,SCOPUS,"Lin Yanchun, 2025, Critical Reviews in Clinical Laboratory Sciences",,"Lin Yanchun, 2025, Critical Reviews in Clinical Laboratory Sciences"
+2025,55,https://app.dimensions.ai/details/publication/pub.1189663510,Comparison of machine learning and human prediction to identify trauma patients in need of hemorrhage control resuscitation (ShockMatrix study): a prospective observational study,101340,,,The Lancet Regional Health - Europe,10.1016/j.lanepe.2025.101340,2025-06-12,"Gauss, Tobias;James, Arthur;Colas, Clelia;Delhaye, Nathalie;Holleville, Mathilde;Bijok, Benjamin;Werner, Marie;Meyer, Alain;Ramonda, Véronique;Cesareo, Eric;de Cherisey, Hugues;Medjkoune, Sofiane;Salah, Samia;Nadal, Jean-Pierre;Moyer, Jean-Denis;Vilotitch, Antoine;Bouzat, Pierre;Josse, Julie;Group, Traumabase;Caroline, Jeantrelle;Anatole, Harrois;Mathieu, Raux;Jean, Pasqueron;Christophe, Quesnel;Nathalie, Delhaye;Anne, Godier;Mathieu, Boutonnet;Olivier, Duranteau;Delphine, Garrigue;Alexandre, Bourgeois;Julien, Pottecher;Gauss, Tobias;Montalescaut, Etienne;Meaudre, Eric;Hanouz, Jean-Luc;Lefrancois, Valentin;Audibert, Gérard;Leone, Marc;Hammad, Emmanuelle;Duclos, Gary;Legros, Vincent;Floch, Thierry;Perez, Pauline;Lukaszewicz, Anne-Claire;Jean, François-Xavier;Ramonda, Véronique;Geeraerts, Thomas;Bounes, Fanny;Bouillon, Jean Baptiste;Brieu, Benjamin;Gettes, Sébastien;Mellati, Nouchan;David, Jean-Stéphane;Yordanov, Youri;Dussau, Leslie;Gaertner, Elisabeth;Popoff, Benjamin;Clavier, Thomas;Lepêtre, Perrine;Scotto, Marion;Rotival, Julie;Malec, Loan;Jaillette, Claire;Blondin, Romain Mermillod;Escudier, Etienne;Gay, Samuel;Gosset, Pierre;Collard, Clément;Pujo, Jean;Kallel, Hatem;Fremery, Alexis;Higel, Nicolas;Willig, Mathieu;Cohen, Benjamin;Abback, Paer Selim;Morel, Jerome;Bouhours, Guillaume","Background: Machine learning could improve the timely identification of trauma patients in need of hemorrhage control resuscitation (HCR), but the real-life performance remains unknown. The ShockMatrix study aimed to compare the predictive performance of a machine learning algorithm with that of clinicians in identifying the need for HCR.
+Methods: Prospective, observational study in eight level-1 trauma centers. Upon receiving a prealert call, trauma clinicians in the resuscitation room entered nine predictor variables into a dedicated smartphone app and provided a subjective prediction of the need for HCR. These predictors matched those used in the machine learning model. The primary outcome, need for HCR, was defined as: transfusion in the resuscitation room, transfusion of more than four red blood cell units in 6 h of admission, any hemorrhage control procedure within 6 h, or death from hemorrhage within 24 h. The human and machine learning performances were assessed by sensitivity, specificity, positive likelihood ratio, negative likelihood ratio, and net clinical benefit. Human and machine learning agreement was assessed with Cohen's kappa coefficient.
+Findings: Between August 2022 and June 2024, out of 5550 potential eligible patients, 1292 were ultimately included in the analyses. The need for HCR occurred in 170/1292 patients (13%). The results showed a positive likelihood ratio of 3.74 (95% confidence interval [CI]: 3.20-4.36) and a negative likelihood ratio of 0.36 (95% CI: 0.29-0.46) for the human prediction and a positive likelihood ratio of 4.01 (95% CI: 3.43-4.70) and negative likelihood ratio of 0.35 (95% CI: 0.38-0.44) for the machine learning prediction. The combined use of human and machine learning prediction yielded a sensitivity of 83% (95% CI: 77-88%) and a specificity of 73% (95% CI: 70-75%). The Cohen's kappa coefficient showed an agreement of 0.51 (95% CI: 0.48-0.55).
+Interpretation: The prospective ShockMatrix temporal validation study suggests a comparable human and machine learning performance to predict the need for HCR using real-life and real-time information with a moderate level of agreement between the two. Machine learning enhanced decision awareness could potentially improve the detection of patients in need of HCR if used by clinicians.
+Funding: The study received no funding.",article,0,,,"Gauss, Tobias;James, Arthur;Colas, Clelia;Delhaye, Nathalie;Holleville, Mathilde;Bijok, Benjamin;Werner, Marie;Meyer, Alain;Ramonda, Véronique;Cesareo, Eric;de Cherisey, Hugues;Medjkoune, Sofiane;Salah, Samia;Nadal, Jean-Pierre;Moyer, Jean-Denis;Vilotitch, Antoine;Bouzat, Pierre;Josse, Julie;Group, Traumabase;Caroline, Jeantrelle;Anatole, Harrois;Mathieu, Raux;Jean, Pasqueron;Christophe, Quesnel;Nathalie, Delhaye;Anne, Godier;Mathieu, Boutonnet;Olivier, Duranteau;Delphine, Garrigue;Alexandre, Bourgeois;Julien, Pottecher;Gauss, Tobias;Montalescaut, Etienne;Meaudre, Eric;Hanouz, Jean-Luc;Lefrancois, Valentin;Audibert, Gérard;Leone, Marc;Hammad, Emmanuelle;Duclos, Gary;Legros, Vincent;Floch, Thierry;Perez, Pauline;Lukaszewicz, Anne-Claire;Jean, François-Xavier;Ramonda, Véronique;Geeraerts, Thomas;Bounes, Fanny;Bouillon, Jean Baptiste;Brieu, Benjamin;Gettes, Sébastien;Mellati, Nouchan;David, Jean-Stéphane;Yordanov, Youri;Dussau, Leslie;Gaertner, Elisabeth;Popoff, Benjamin;Clavier, Thomas;Lepêtre, Perrine;Scotto, Marion;Rotival, Julie;Malec, Loan;Jaillette, Claire;Blondin, Romain Mermillod;Escudier, Etienne;Gay, Samuel;Gosset, Pierre;Collard, Clément;Pujo, Jean;Kallel, Hatem;Fremery, Alexis;Higel, Nicolas;Willig, Mathieu;Cohen, Benjamin;Abback, Paer Selim;Morel, Jerome;Bouhours, Guillaume",,,,,,,The Lancet Regional Health - Europe,,,SCOPUS,"Gauss Tobias, 2025, The Lancet Regional Health - Europe",,"Gauss Tobias, 2025, The Lancet Regional Health - Europe"
+2025,24,https://app.dimensions.ai/details/publication/pub.1189839135,"Evolution of diabetes prediction using the fusion of ANOVA, ADASYN technique and XGBoost based on body composition data",151,2,,Journal of Diabetes & Metabolic Disorders,10.1007/s40200-025-01661-1,2025-06-17,"Nematollahi, Mohammad Ali;Joloudari, Javad Hassannataj;Zare, Omid;Maftoun, Mohammad;Shadkam, Nima;Sharifrazi, Danial;Alizadehsani, Roohallah;Asadollahi, Arefeh","Diabetes is known as a chronic illness with severe consequences. The rising morbidity rates predict a stunning growth in the global diabetes population, approaching 642 million by 2040, implying that one out of every ten people will be affected. This worrying number highlights the critical need for collaborative efforts from industry and academics to accelerate innovation and foster growth in diabetes risk prediction, eventually saving lives. As the frequency of life-threatening diseases, such as diabetes, rises, Medical Decision Support Systems (MDSS) continue to prove their usefulness in supporting healthcare professionals, particularly physicians, in clinical decision-making procedures. Due to the advancement of technology, machine-learning techniques have made headlines in the early prediction of diabetes. In this paper, we employed machine learning techniques and the Analysis of Variance (ANOVA) method to explore associations between regional body fat distribution and diabetes mellitus in a community adult population, aiming to assess predictive capabilities. We used individual standard classifiers and ensemble learning methods to conduct a retrospective analysis of a portion of data based on body composition. To address the class imbalance problem in the target variable, we also applied three oversampling methods to provide more accurate predictions via learning algorithms. The results demonstrate that XGBoost, based on the Adaptive Synthetic Sampling (ADASYN) method, outperforms the state-of-the-art by achieving an accuracy value of 92.04%. This model exhibits more effectiveness for diabetes prediction compared to other models.",article,0,,,"Nematollahi, Mohammad Ali;Joloudari, Javad Hassannataj;Zare, Omid;Maftoun, Mohammad;Shadkam, Nima;Sharifrazi, Danial;Alizadehsani, Roohallah;Asadollahi, Arefeh",,,,,,,Journal of Diabetes & Metabolic Disorders,,,SCOPUS,"Nematollahi Mohammad Ali, 2025, Journal of Diabetes & Metabolic Disorders",,"Nematollahi Mohammad Ali, 2025, Journal of Diabetes & Metabolic Disorders"
+2025,15,https://app.dimensions.ai/details/publication/pub.1189921981,Predictive modeling of adolescent suicidal behavior using machine learning: Key features and algorithmic insights,103454,,,MethodsX,10.1016/j.mex.2025.103454,2025-06-19,"Metri, Priya;Kukreja, Swetta","Suicidal ideation prevalence among students is a growing concern that requires urgent attention. This review systematically analyzes 28 studies on the application of machine learning techniques for the early detection of suicidal ideation. Among these, Random Forest and SVM emerged as the most commonly used algorithms, featured in 35 % and 27 % of studies respectively. Reported model accuracies ranged from 70 % to 95 %, with deep learning approaches showing slightly higher average precision and recall values. Most studies relied on survey-based data (68 %) and employed PHQ-9 or GAD-7 scales for input features. This review highlights existing gaps in cross-cultural generalization and calls for the development of interpretable and hybrid models for improved risk prediction.This review aims to conduct a comprehensive examination of the etiological factors contributing to the development of suicidal thoughts in students, with the goal of enabling early detection through the application of AI and machine learning techniques.This paper aims to review the current state-of-the-art, highlight the limitations, and emphasizes the need to shift toward hybrid and ensemble deep learning models, which have shown early promise but lack extensive analysis in current literature.",article,0,,,"Metri, Priya;Kukreja, Swetta",,,,,,,MethodsX,,,SCOPUS,"Metri Priya, 2025, MethodsX",,"Metri Priya, 2025, MethodsX"
+2025,,https://app.dimensions.ai/details/publication/pub.1189937505,Data Representation Bias and Conditional Distribution Shift Drive Predictive Performance Disparities in Multi-Population Machine Learning,2025.06.18.658431,,,bioRxiv,10.1101/2025.06.18.658431,2025-06-19,"Kumar, Sandeep;Cui, Yan","Machine learning frequently encounters challenges when applied to population-stratified datasets, where data representation bias and data distribution shifts substantially impact model performance and generalizability across different population groups. These challenges are well illustrated in the context of polygenic prediction for diverse ancestry groups, and the underlying mechanisms are broadly applicable to machine learning with population-stratified data across domains. Using synthetic genotype-phenotype datasets representing five continental populations, we evaluate three approaches for utilizing population-stratified data, mixture learning, independent learning, and transfer learning, to systematically investigate how data representation bias and distribution shifts influence multi-population machine learning. Our results show that conditional distribution shifts, in combination with data representation bias, significantly influence machine learning performance across diverse populations and the effectiveness of transfer learning as a disparity mitigation strategy, while the effect of marginal distribution shifts is limited. The joint effects of data representation bias and distribution shifts demonstrate distinct patterns under different multi-population machine learning approaches, providing critical insights for the development of effective and equitable machine learning models for population-stratified data.",article,0,,,"Kumar, Sandeep;Cui, Yan",,,,,,,bioRxiv,,,SCOPUS,"Kumar Sandeep, 2025, bioRxiv",,"Kumar Sandeep, 2025, bioRxiv"
+2025,18,https://app.dimensions.ai/details/publication/pub.1189987515,Advances in Machine Learning for Mechanically Ventilated Patients,3301,0,,International Journal of General Medicine,10.2147/ijgm.s515170,2025-06,"Xu, Yue;Xue, Jingjing;Deng, Yunfeng;Tu, Lili;Ding, Yu;Zhang, Yibing;Yuan, Xinrui;Xu, Kexin;Guo, Liangmei;Gao, Na","Background: Mechanical ventilation, a key ICU life-support tech, carries risks. ML can optimize patient management, improving clinical decisions, patient outcomes, and resource use.
+Objective: This review aims to summarize the current applications, challenges, and future directions of machine learning in managing mechanically ventilated patients, focusing on prediction models for extubation readiness, oxygenation management, ventilator parameter optimization, clinical prognosis, and pulmonary function assessment.
+Methods: Multiple databases, including PubMed, Web of Science, CNKI and Wanfang Data were systematically searched for studies on machine learning in mechanical ventilation management. Keywords included mechanical ventilation, machine learning, weaning, etc. We reviewed recent studies on using machine learning to predict successful extubation, optimize oxygenation targets, personalize ventilator settings, forecast mechanical ventilation duration and clinical outcomes. The review also examined challenges of integrating machine learning into clinical practice, such as data integration, model interpretability, and real - time performance requirements.
+Results: Machine learning models have demonstrated significant potential in predicting successful extubation, optimizing oxygenation strategies through non-invasive blood gas prediction, and dynamically adjusting ventilator parameters using reinforcement learning. These models have also shown promise in predicting mechanical ventilation duration, clinical prognosis and pulmonary function parameters. However, challenges remain, including data heterogeneity, model generalizability, workflow integration, and the need for multicenter validation.
+Conclusion: Machine learning shows great potential for improving intensive care quality and efficiency in mechanically ventilated patients. However, challenges like model interpretability, real-time performance, clinical and validation remain. Future research needs to focus on these limitations via large-scale, multicenter trials, better data standardization, and improved physician training to safely and effectively integrate ML into clinical practice. Collaboration among medical, engineering, and ethical experts is also essential for advancing this promising field.",article,0,,,"Xu, Yue;Xue, Jingjing;Deng, Yunfeng;Tu, Lili;Ding, Yu;Zhang, Yibing;Yuan, Xinrui;Xu, Kexin;Guo, Liangmei;Gao, Na",,,,,,,International Journal of General Medicine,3311,,SCOPUS,"Xu Yue, 2025, International Journal of General Medicine",,"Xu Yue, 2025, International Journal of General Medicine"
+2025,6,https://app.dimensions.ai/details/publication/pub.1190012441,Historical Data Mining Deep Dive into Machine Learning-Aided 2D Materials Research in Electrochemical Applications,28,1,,ACS Materials Au,10.1021/acsmaterialsau.5c00030,2025-06-23,"Deshsorn, Krittapong;Chavalekvirat, Panwad;Deepaisarn, Somrudee;Chuang, Ho-Chiao;Iamprasertkun, Pawin","Machine learning transforms the landscape of 2D materials design, particularly in accelerating discovery, optimization, and screening processes. This review has delved into the historical and ongoing integration of machine learning in 2D materials for electrochemical energy applications, using the Knowledge Discovery in Databases (KDD) approach to guide the research through data mining from the Scopus database using analysis of citations, keywords, and trends. The topics will first focus on a ""macro"" scope, where hundreds of literature reports are computer analyzed for key insights, such as year analysis, publication origin, and word co-occurrence using heat maps and network graphs. Afterward, the focus will be narrowed down into a more specific ""micro"" scope obtained from the ""macro"" overview, which is intended to dive deep into machine learning usage. From the gathered insights, this work highlights how machine learning, density functional theory (DFT), and traditional experimentation are jointly advancing the field of materials science. Overall, the resulting review offers a comprehensive analysis, touching on essential applications such as batteries, fuel cells, supercapacitors, and synthesis processes while showcasing machine learning techniques that enhance the identification of critical material properties.",article,0,,,"Deshsorn, Krittapong;Chavalekvirat, Panwad;Deepaisarn, Somrudee;Chuang, Ho-Chiao;Iamprasertkun, Pawin",,,,,,,ACS Materials Au,56,,SCOPUS,"Deshsorn Krittapong, 2025, ACS Materials Au",,"Deshsorn Krittapong, 2025, ACS Materials Au"
+2025,56,https://app.dimensions.ai/details/publication/pub.1190302207,Artificial intelligence in orthopedic trauma: a comprehensive review,112570,8,,Injury,10.1016/j.injury.2025.112570,2025-07-01,"Misir, Abdulhamit","Artificial intelligence (AI) has emerged as a transformative technology in healthcare, with significant applications in orthopedic trauma. This comprehensive review analyzes 217 studies published between 2015 and 2025 to evaluate the current state, applications, and future directions of AI in orthopedic trauma. The field has experienced exponential growth, with 52.5 % of all studies published in 2024 alone. Deep learning approaches (43.3 %) and traditional machine learning methods (39.2 %) dominated the research landscape. Fracture detection (24.4 %) and classification (12.0 %) were the most common applications, followed by prediction (21.2 %) and segmentation (8.3 %). Hip/femur (19.4 %), spine (18.9 %), and wrist fractures (12.0 %) represented the most frequently studied anatomical sites. AI systems frequently matched or exceeded specialist performance in detection and classification tasks, with sensitivities and specificities above 90 % commonly reported. Predictive models for complications and mortality consistently outperformed traditional scoring systems, with improvements in AUC typically between 0.10-0.15. However, only 14.5 % of studies underwent external validation, and just 3.2 % reported prospective clinical validation. Despite remarkable progress in developing accurate AI systems for orthopedic trauma, significant challenges remain in clinical integration, data standardization, and validation across diverse populations. Future development should focus on multimodal approaches integrating diverse data sources, transparent algorithms providing rationales for predictions, and rigorous clinical validation. Point-of-care applications and integration with emerging technologies offer promising directions for clinical impact. As these challenges are addressed, AI has the potential to significantly enhance orthopedic trauma care by improving diagnostic accuracy, optimizing treatment selection, and identifying high-risk patients for targeted interventions.",article,0,,,"Misir, Abdulhamit",,,,,,,Injury,,,SCOPUS,"Misir Abdulhamit, 2025, Injury",,"Misir Abdulhamit, 2025, Injury"
+2025,17,https://app.dimensions.ai/details/publication/pub.1190488074,Machine Learning in Nursing: A Cross-Disciplinary Review,e87181,7,,Cureus,10.7759/cureus.87181,2025-07-02,"Kosmidis, Dimitrios;Simopoulos, Dimitrios;Anastasopoulos, Konstantinos;Koutsouki, Sotiria","Rapid advancement of artificial intelligence (AI) and machine learning (ML) is transforming healthcare, and nursing practice is inevitably affected. Yet limited formal education leaves many nurses hesitant to integrate such tools into everyday care. This cross‑disciplinary review (i) introduces the fundamental concepts, core types and common evaluation metrices, illustrated with nursing-specific examples; (ii) catalogues the main algorithmic applications in nursing research; and (iii) describes ethical and practical challenges in their clinical use. A structured search of PubMed, Embase, Scopus, IEEE Xplore and ACM Digital Library (2015-2024) retrieved 1445 records; after de-duplication and screening against inclusion criteria (peer-reviewed, English-language studies that developed, implemented or evaluated an ML method in a clinical, community-health or educational nursing context), 61 papers were analyzed. Supervised approaches predominated, while unsupervised and semi-supervised techniques were less common. Models were evaluated mainly with accuracy, area under the receiver operating characteristic curve (AUROC), precision-recall and F1-score for classification, or mean-absolute/squared error for regression. Applications spanned eight main categories: (1) predictive risk assessment and early‑warning systems; (2) clinical decision support and diagnostic aid; (3) continuous patient monitoring; (4) workflow, staffing and operational optimizations; (5) documentation and information extraction via natural‑language processing; (6) education and competency development; and (7) other niche applications. Key barriers to wider adoption remain regulatory and ethical constraints, data quality, model transparency and engagement issues, data challenges, lack of ML-specific training in nursing curricula, and operational limitations. The utilization of ML in nursing is based on three core pillars: strong interdisciplinary collaboration, systematic integration of ML at all levels of nursing education, and a guiding framework that maps human-centered nursing interventions to interpretable ML tools. Such a foundation will enable nurses to safely leverage the results of algorithms, avoid biases and risks, and integrate ethical responsibility into technology-enhanced care.",article,0,,,"Kosmidis, Dimitrios;Simopoulos, Dimitrios;Anastasopoulos, Konstantinos;Koutsouki, Sotiria",,,,,,,Cureus,,,SCOPUS,"Kosmidis Dimitrios, 2025, Cureus",,"Kosmidis Dimitrios, 2025, Cureus"
+2025,43,https://app.dimensions.ai/details/publication/pub.1190491072,Artificial Intelligence in Cardiovascular and Thoracic Anesthesia,471,3,,Anesthesiology clinics,10.1016/j.anclin.2025.05.003,2025-07-03,"Dabbagh, Ali;Sabouri, A Sassan;Madadi, Firoozeh","Recent breakthroughs in artificial intelligence (AI) have particularly shone in cardiothoracic anesthesia, where its ability to efficiently analyze complex datasets and process vast amounts of information in mere moments has captured considerable attention. For cardiothoracic anesthesiologists, the challenge of swiftly evaluating myriad variables is paramount to minimizing complications and optimizing patient outcomes. This article explores the current state of AI in cardiac anesthesia, illuminating the compelling evidence supporting its use and charting potential future paths for researchers and clinicians alike. We will also delve into the challenges in this dynamic field and propose inventive concepts for seamlessly integrating AI into future research initiatives.",article,0,,,"Dabbagh, Ali;Sabouri, A Sassan;Madadi, Firoozeh",,,,,,,Anesthesiology clinics,489,,SCOPUS,"Dabbagh Ali, 2025, Anesthesiology clinics",,"Dabbagh Ali, 2025, Anesthesiology clinics"
+2025,17,https://app.dimensions.ai/details/publication/pub.1190550141,Machine Learning in Predicting and Optimizing Polymer Printability for 3D Bioprinting,1873,13,,Polymers,10.3390/polym17131873,2025-07-04,"Yu, Junjie;Yao, Danyu;Wang, Ling;Xu, Mingen","Three-dimensional (3D) bioprinting has emerged as a highly promising technology within the realms of tissue engineering and regenerative medicine. The assessment of printability is essential for ensuring the quality of bio-printed constructs and the functionality of the resultant tissues. Polymer materials, extensively utilized as bioink materials in extrusion-based bioprinting, have garnered significant attention from researchers due to the critical need for evaluating and optimizing their printability. Machine learning, a powerful data-driven technology, has attracted increasing attention in the evaluation and optimization of 3D bioprinting printability in recent years. This review provides an overview of the application of machine learning in the printability research of polymers for 3D bioprinting, encompassing the analysis of factors influencing printability (such as material and printing parameters), the development of predictive models, and the formulation of optimization strategies. Additionally, the review briefly explores the utilization of machine learning in predicting cell viability, evaluates the advanced nature and developmental potential of machine learning in 3D bioprinting, and examines the current challenges and future trends.",article,0,,,"Yu, Junjie;Yao, Danyu;Wang, Ling;Xu, Mingen",,,,,,,Polymers,,,SCOPUS,"Yu Junjie, 2025, Polymers",,"Yu Junjie, 2025, Polymers"
+2025,,https://app.dimensions.ai/details/publication/pub.1190571818,Recent Advances in Machine Learning‐Assisted Design and Development of Polymer Materials,e00361,,,Macromolecular Rapid Communications,10.1002/marc.202500361,2025-07-07,"Ma, Longyu;Li, Wenjing;Yuan, Jian;Zhu, Jian;Wu, Yan;He, Hanliang;Pan, Xiangqiang","The traditional research paradigm for polymer materials relies heavily on time-consuming and inefficient trial-and-error methods, which are no longer sufficient to meet the demands of modern research and development. With the rapid advancement of big data and artificial intelligence technologies, machine learning has emerged as a powerful data analysis tool, revolutionizing polymer material research and development. This paper provides an overview of machine learning techniques, summarizes common machine learning algorithms, and reviews recent progress in machine learning-assisted polymer material design and development. Key areas include polymer sequence design, material property prediction, classification and identification, and applications leveraging computer vision technologies. Furthermore, this study discusses several critical challenges currently faced by the field and offers perspectives on future directions .",article,0,,,"Ma, Longyu;Li, Wenjing;Yuan, Jian;Zhu, Jian;Wu, Yan;He, Hanliang;Pan, Xiangqiang",,,,,,,Macromolecular Rapid Communications,,,SCOPUS,"Ma Longyu, 2025, Macromolecular Rapid Communications",,"Ma Longyu, 2025, Macromolecular Rapid Communications"
+2025,13,https://app.dimensions.ai/details/publication/pub.1190628409,Machine Learning in Primary Health Care: The Research Landscape,1629,13,,Healthcare,10.3390/healthcare13131629,2025-07-07,"Završnik, Jernej;Kokol, Peter;Žlahtič, Bojan;Vošner, Helena Blažun","Background: Artificial intelligence and machine learning are playing crucial roles in digital transformation, aiming to improve the efficiency, effectiveness, equity, and responsiveness of primary health systems and their services. Method: Using synthetic knowledge synthesis and bibliometric and thematic analysis triangulation, we identified the most productive and prolific countries, institutions, funding sponsors, source titles, publications productivity trends, and principal research categories and themes. Results: The United States and the United Kingdom were the most productive countries; Plos One and BJM Open were the most prolific journals; and the National Institutes of Health, USA, and the National Natural Science Foundation of China were the most productive funding sponsors. The publication productivity trend is positive and exponential. The main themes are related to natural language processing in clinical decision-making, primary health care optimization focusing on early diagnosis and screening, improving health-based social determinants, and using chatbots to optimize communications with patients and between health professionals. Conclusions: The use of machine learning in primary health care aims to address the significant global burden of so-called ""missed diagnostic opportunities"" while minimizing possible adverse effects on patients.",article,0,,,"Završnik, Jernej;Kokol, Peter;Žlahtič, Bojan;Vošner, Helena Blažun",,,,,,,Healthcare,,,SCOPUS,"Završnik Jernej, 2025, Healthcare",,"Završnik Jernej, 2025, Healthcare"
+2025,112,https://app.dimensions.ai/details/publication/pub.1190686157,Sustainable environmental education: Some machine learning algorithms in the classification of sustainable environmental attitudes,102652,,,Evaluation and Program Planning,10.1016/j.evalprogplan.2025.102652,2025-07-10,"Benzer, Semra;Garabaghi, Farid Hassanbaki;Benzer, Recep;Güni, Hicret Çimen","Since the industrial revolution, human beings has shown a great unconscientiousness about the sustainable environment by polluting the air, water, and soil and rapidly consuming natural resources. Therefore, in the name of sustainable development, sustainable environmental education has become the center of attention of governments and consequently raising individuals with the necessary attitudes, values, understanding and skills in sustainable environment has become an important mission. This study was designed to firstly evaluate the students' attitude towards a sustainable environment and secondly classify the target students based on their attitudes towards sustainable environment using machine learning methods based on a weighted score system based on a 5-point Likert type. The SVM-SMO classifier demonstrated superior performance compared to MLPNN, RBF Network, and Logistic Regression, especially when the training data was limited.",article,0,,,"Benzer, Semra;Garabaghi, Farid Hassanbaki;Benzer, Recep;Güni, Hicret Çimen",,,,,,,Evaluation and Program Planning,,,SCOPUS,"Benzer Semra, 2025, Evaluation and Program Planning",,"Benzer Semra, 2025, Evaluation and Program Planning"
+2025,24,https://app.dimensions.ai/details/publication/pub.1190697753,Automated rowing event assignment: a machine learning approach,3557,12,,Sports Biomechanics,10.1080/14763141.2025.2528885,2025-07-11,"Li, Yumeng;Koldenhoven, Rachel M.;Jiwan, Nigel C.;Zhan, Jieyun;Liu, Ting","The purpose of the study was to assign rowers to different rowing events based on their demographics and rowing kinematics using machine learning models. A total of 55 elite athletes from the Chinese National Rowing Team participated, each instructed to row on a rowing ergometer for one minute at three stroke rates: 18, 26, and 32 strokes/min. Trunk and upper arm 3D kinematics were collected using an inertia measurement unit system at a sampling rate of 100 Hz. Trunk and upper arm segmental and joint range of motion were generated. Trunk segments and upper arm motion coordination were analysed using the vector coding method. Six supervised machine learning models were trained using the collected demographics and kinematic data to classify rowers' groups (i.e. coxed eight and single/pair event group). The machine learning models successfully classified rowers' groups, with the top-performing models (decision tree, extreme gradient boosting, and random forest) achieving high classification performance (accurate rate = 0.89-0.93). The rowing event assignment automated by machine learning may help coaches make more informed and objective decisions. By minimising subjective biases, this approach enhances the accuracy and fairness of athlete selection processes, thereby potentially optimising team composition and performance outcomes.",article,0,,,"Li, Yumeng;Koldenhoven, Rachel M.;Jiwan, Nigel C.;Zhan, Jieyun;Liu, Ting",,,,,,,Sports Biomechanics,3569,,SCOPUS,"Li Yumeng, 2025, Sports Biomechanics",,"Li Yumeng, 2025, Sports Biomechanics"
+2025,30,https://app.dimensions.ai/details/publication/pub.1190763742,Use of artificial intelligence in healthcare in South Africa: A scoping review,10,0,,Health SA Gesondheid,10.4102/hsag.v30i0.2977,2025-07-14,"Chipps, Jennifer;Sibindi, Thandazile;Cromhout, Amanda;Bagula, Antoine","Background: Artificial intelligence (AI) transformed healthcare worldwide and has the potential to address challenges faced in the South African healthcare sector, such as limited public institutional capacity, staff shortages, and variability in skills levels that exacerbate the demand on the healthcare system that can lead to compromised care and patient safety.
+Aim: This study aimed to describe how AI, especially machine learning is used in healthcare in South Africa over the last 5 years.
+Method: The Joanna Briggs Institute (JBI) methodology for scoping reviews was used. Peer-reviewed articles in English, which were published from 2020 to date were sourced and reviewed using the Population, Concept, Context (PCC) framework.
+Results: A total of 35 articles were selected. The results showed a focus on conventional machine learning, a health focus on HIV and/or tuberculosis (TB) and cancer, and a lack of big data in fields other than cancer.
+Conclusion: There has been an increase in the use of machine learning in the analysis of health data, but access to big data appears to be a challenge.
+Contribution: There is a need to have access to high-quality big data, inclusive policies that promote access to the benefits of using machine learning in healthcare, and AI literacy in the health sector to understand and address ethical implications.",article,0,,,"Chipps, Jennifer;Sibindi, Thandazile;Cromhout, Amanda;Bagula, Antoine",,,,,,,Health SA Gesondheid,,,SCOPUS,"Chipps Jennifer, 2025, Health SA Gesondheid",,"Chipps Jennifer, 2025, Health SA Gesondheid"
+2025,13,https://app.dimensions.ai/details/publication/pub.1190904873,Exploring machine learning classification for community based health insurance enrollment in Ethiopia,1549210,,,Frontiers in Public Health,10.3389/fpubh.2025.1549210,2025-07-18,"Yilema, Seyifemickael Amare;Shiferaw, Yegnanew A.;Moyehodie, Yikeber Abebaw;Fenta, Setegn Muche;Belay, Denekew Bitew;Fenta, Haile Mekonnen;Nigussie, Teshager Zerihun;Chen, Ding-Geng","Background: Community-based health insurance (CBHI) is a vital tool for achieving universal health coverage (UHC), a key global health priority outlined in the sustainable development goals (SDGs). Sub-Saharan Africa continues to face challenges in achieving UHC and protecting individuals from the financial burden of disease. As a result, CBHI has become popular in low- and middle-income countries, including Ethiopia. Therefore, this study aimed to identify the ML algorithm with the best predictive accuracy for CBHI enrollment and to determine the most influential predictors among the dataset.
+Methods: The 2019 Ethiopian Mini Demographic and Health Survey (EMDHS) data were used. The CBHI were predicted using seven machine learning models: linear discriminant analysis (LDA), support vector machine with radial basis function (SVM), k-nearest neighbors (KNN), classification and regression tree (CART), and random forest (RF). Receiver operating characteristic curves and other metrics were used to evaluate each model's accuracy.
+Results: The RF algorithm was determined to be the best machine learning model based on different performance assessments. The result indicates that age, wealth index, household members, and land usage all significantly affect CBHI in Ethiopia.
+Conclusion: This study found that RF machine learning models could improve the ability to classify CBHI in Ethiopia with high accuracy. Age, wealth index, household members, and land utilization are some of the most significant variables associated with CBHI that were determined by feature importance. The results of the study can help health professionals and policymakers create focused strategies to improve CBHI enrollment in Ethiopia.",article,0,,,"Yilema, Seyifemickael Amare;Shiferaw, Yegnanew A.;Moyehodie, Yikeber Abebaw;Fenta, Setegn Muche;Belay, Denekew Bitew;Fenta, Haile Mekonnen;Nigussie, Teshager Zerihun;Chen, Ding-Geng",,,,,,,Frontiers in Public Health,,,SCOPUS,"Yilema Seyifemickael Amare, 2025, Frontiers in Public Health",,"Yilema Seyifemickael Amare, 2025, Frontiers in Public Health"
+2025,13,https://app.dimensions.ai/details/publication/pub.1190911658,Machine learning for diabetic foot care: accuracy trends and emerging directions in healthcare AI,1613946,,,Frontiers in Public Health,10.3389/fpubh.2025.1613946,2025-07-18,"Lin, Pei-Chun;Li, Tsai-Chung;Huang, Tzu-Hsuan;Hsu, Ying-Lin;Ho, Wen-Chao;Xu, Jia-Lang;Hsieh, Ching-Liang;Jhang, Zih-En","Background: Diabetic foot is a common and debilitating complication of diabetes that significantly impacts patients' quality of life and frequently leads to amputation. In parallel, artificial intelligence (AI), particularly machine learning (ML), has emerged as a powerful tool in healthcare, offering novel solutions for disease prediction, monitoring, and management. Despite growing interest, a systematic overview of machine learning applications in diabetic foot research is still lacking.
+Objective: This study aims to systematically analyze recent literature to identify key trends, focus areas, and methodological approaches in the application of machine learning to diabetic foot research.
+Data sources: A comprehensive literature search was conducted across three major databases: Web of Science (WoS), IEEE Xplore, and PubMed. The search targeted peer-reviewed journal articles published between 2020 and 2024 that focused on the intersection of machine learning and diabetic foot management.
+Eligibility criteria and study selection: Articles were included if they were indexed in the Science Citation Index (SCI) or Social Sciences Citation Index (SSCI), published in English. They explored the use of machine learning in diabetic foot-related applications. After removing duplicates and irrelevant entries, 25 original research articles were included for review.
+Results: There has been a steady increase in publications related to machine learning in diabetic foot research over the past 5 years. Among the 25 studies included, image analysis was the most prevalent theme (12 articles), dominated by thermal imaging applications (10 articles). General clinical imaging was less common (2 articles). Seven studies focused on structured clinical data analysis, while six explored IoT-based approaches such as smart insoles with integrated sensors for real-time foot monitoring. Citation analysis showed that Computers in Biology and Medicine and Sensors had the highest average citation rates among journals publishing multiple relevant studies.
+Conclusion: The integration of machine learning into diabetic foot research is rapidly evolving; it is characterized by growing diversity in data modalities and analytical techniques. Thermal imaging remains a key area of interest, while IoT innovations show promise for clinical translation. Future studies should aim to incorporate deep learning, genomic data, and large language models to further enhance the scope and clinical utility of diabetic foot research.",article,0,,,"Lin, Pei-Chun;Li, Tsai-Chung;Huang, Tzu-Hsuan;Hsu, Ying-Lin;Ho, Wen-Chao;Xu, Jia-Lang;Hsieh, Ching-Liang;Jhang, Zih-En",,,,,,,Frontiers in Public Health,,,SCOPUS,"Lin Pei-Chun, 2025, Frontiers in Public Health",,"Lin Pei-Chun, 2025, Frontiers in Public Health"
+2025,48,https://app.dimensions.ai/details/publication/pub.1191001579,Machine learning techniques in the diagnosis of meibomian glands related alterations from clinical indicators,102479,6,,Contact Lens and Anterior Eye,10.1016/j.clae.2025.102479,2025-07-21,"Fernández-Jiménez, Elena;Diz-Arias, Elena;Gomez-Pedrero, Jose A;Peral, Assumpta","PURPOSE: There is no ""Gold Standard"" test that allows the diagnosis and classification of alterations and pathologies related to Meibomian glands (MG). A global evaluation of objective and subjective tests is necessary to determine the final diagnosis. In recent years, Artificial Intelligence (AI) and Machine Learning (ML) techniques have experienced great progress in the field of health sciences, as promising techniques for predicting pathologies from data and images. The main objective of this study has been to train ML classifiers for the classification of three groups of participants with and without MG alterations. The secondary objective was to study the precision, specificity and sensitivity of the ML classifiers.
+METHODS: A retrospective comparative study was carried out on a total of 135 participants (control, contact lens wearers and MG pathology). Symptomatology and clinical tests were performed to evaluate the ocular surface and adnexa. The numerical data obtained from these tests were used to train ML classifiers and the top 5 were subsequently verified.
+RESULTS: Accuracies greater than 76 % were obtained for the training group and greater than 79 % for the verification group, for five classifiers previously described in Matlab. Subspace KNN was the classifier with the highest accuracies, specificities and sensitivities, these being moderate-high (greater than 79 %).
+CONCLUSIONS: ML algorithms can be useful for classifying groups of participants with various meibomian gland disorders using clinical data. A large number of participants is needed for reliable diagnostic accuracy.",article,0,,,"Fernández-Jiménez, Elena;Diz-Arias, Elena;Gomez-Pedrero, Jose A;Peral, Assumpta",,,,,,,Contact Lens and Anterior Eye,,,SCOPUS,"Fernández-Jiménez Elena, 2025, Contact Lens and Anterior Eye",,"Fernández-Jiménez Elena, 2025, Contact Lens and Anterior Eye"
+2025,17,https://app.dimensions.ai/details/publication/pub.1191014893,Machine learning applications in colorectal cancer: from early detection to personalized treatment,zyaf013,,,Integrative Biology,10.1093/intbio/zyaf013,2025-01-08,"Tabasum, Yasmin;Nachiyar, C Valli;Sunkar, Swetha","Colorectal cancer (CRC) is a significant health challenge in the world, with incidence being increasingly reported among the young population. Machine learning, therefore, is revolutionizing care in CRC, including providing advancements in early detection, staging, recurrence prediction, and individualized medicine. Techniques for analysis include support vector machines, random forests, and neural networks, which allow complex analyses of datasets, including genetic profiles and imaging data, with an improvement in diagnostic accuracy and treatment outcomes. Machine learning-driven personalized treatment strategies empower clinicians to tailor therapies to individual patients, optimizing efficacy while reducing side effects. However, integration of Machine learning (ML) in CRC management faces challenges like data quality, validation, and smooth adaptation into clinical workflow. Overcoming these barriers through multi-institutional collaboration and strong validation frameworks will be essential to unlock the full potential of ML. Advancement in research will enable the transformation of CRC care to provide more accurate diagnoses and targeted treatments, ultimately changing patient outcomes. Insight box This review examines the transformative impact of machine learning (ML) in colorectal cancer (CRC) research and care. By integrating multi-omics, radiomics, and clinical data, ML models outperform traditional diagnostic and prognostic methods, enabling precise risk prediction, personalized treatment, and early recurrence detection. The amalgamation of supervised learning, neural networks, and deep learning yields actionable insights that improve patient outcomes and address unmet needs in CRC management. The review also discusses solutions to challenges such as data standardization, ethics, and clinical workflow integration, offering a roadmap for real-world ML adoption. This work highlights the synergy between computational advances and oncology, providing a forward-thinking framework for CRC care.",article,0,,,"Tabasum, Yasmin;Nachiyar, C Valli;Sunkar, Swetha",,,,,,,Integrative Biology,,,SCOPUS,"Tabasum Yasmin, 2025, Integrative Biology",,"Tabasum Yasmin, 2025, Integrative Biology"
+2025,15,https://app.dimensions.ai/details/publication/pub.1191017330,A quantum machine learning framework for predicting drug sensitivity in multiple myeloma using proteomic data,26553,1,,Scientific Reports,10.1038/s41598-025-06544-2,2025-07-22,"Priyadharshini, M.;Raju, B. Deevena;Banu, A. Faritha;Kumar, P. Jagdish;Murugesh, V.;Rybin, Oleg","In this paper, we introduce QProteoML, a new quantum machine learning (QML) framework for predicting drug sensitivity in Multiple Myeloma (MM) using high-dimensional proteomic data. MM, an extremely heterogeneous condition, displays often mixed responses to treatment, with a large number of patients showing drug resistance to proteasome inhibitors and immune modulatory agents. However, the methods previously used for genomic and proteomic data analysis techniques are plagued by issues of high dimensionality, imbalanced class distribution and feature redundancy, which work against the accurate predictability and generalizability of such methods. These are compounded by the so-called “curse of dimensionality”, with dimensions far outnumbering samples, hence classical model overfitting. In this work, we present QProteoML as an integration of quantum techniques purposefully developed to deal with high-dimensional, imbalanced and redundant data. The framework integrates a combination of Quantum Support Vector Machine (QSVM), Quantum Principal Component Analysis (qPCA), Quantum Annealing (QA) for feature selection and Quantum Generative Adversarial Networks (QGANs) for data augmentation. These quantum algorithms exploit certain quantum phenomena (superposition and entanglement) to perform modelling of nonlinear relationships, dimensionality reduction, and class-imbalance issues. QSVM employs quantum kernels to map data into a higher-dimensional Hilbert space, so that the model can detect complex patterns in MM drug resistance. qPCA reduces dimensionality without loss of important variance, and thus improves computation efficiency. In addition, Quantum Annealing successfully extracts the most informative biomarkers with low redundancy. QProteoML was experimentally tested by comparing accuracy, F1 score and AUC ROC between classical machine learning models such as Support Vector Machine (SVM), Random Forest (RF), Logistic Regression (LR), and K-Nearest Neighbors (KNN). Our results demonstrate that QProteoML performs better than classical models, particularly in identifying the drug resistant minority class of patients. Additionally, the model is interpretable and stresses important biomarkers of drug sensitivity in MM. This research opens the possibility of quantum machine learning in personalised medicine for Multiple Myeloma. It demonstrates that quantum algorithms can perform complex biological data suggesting more reliable and accurate drug sensitivity predictions. Future research will be directed toward clinical validation of the given system with larger and more diverse cohorts of MM patients; the integration of quantum hardware for practical applications.",article,0,,,"Priyadharshini, M.;Raju, B. Deevena;Banu, A. Faritha;Kumar, P. Jagdish;Murugesh, V.;Rybin, Oleg",,,,,,,Scientific Reports,,,SCOPUS,"Priyadharshini M., 2025, Scientific Reports",,"Priyadharshini M., 2025, Scientific Reports"
+2025,11,https://app.dimensions.ai/details/publication/pub.1191240109,Machine Learning in Gel-Based Additive Manufacturing: From Material Design to Process Optimization,582,8,,Gels,10.3390/gels11080582,2025-07-28,"Zhang, Zhizhou;Wang, Yaxin;Wang, Weiguang","Machine learning is reshaping gel-based additive manufacturing by enabling accelerated material design and predictive process optimization. This review provides a comprehensive overview of recent progress in applying machine learning across gel formulation development, printability prediction, and real-time process control. The integration of algorithms such as neural networks, random forests, and support vector machines allows accurate modeling of gel properties, including rheology, elasticity, swelling, and viscoelasticity, from compositional and processing data. Advances in data-driven formulation and closed-loop robotics are moving gel printing from trial and error toward autonomous and efficient material discovery. Despite these advances, challenges remain regarding data sparsity, model robustness, and integration with commercial printing systems. The review results highlight the value of open-source datasets, standardized protocols, and robust validation practices to ensure reproducibility and reliability in both research and clinical environments. Looking ahead, combining multimodal sensing, generative design, and automated experimentation will further accelerate discoveries and enable new possibilities in tissue engineering, biomedical devices, soft robotics, and sustainable materials manufacturing.",article,0,,,"Zhang, Zhizhou;Wang, Yaxin;Wang, Weiguang",,,,,,,Gels,,,SCOPUS,"Zhang Zhizhou, 2025, Gels",,"Zhang Zhizhou, 2025, Gels"
+2025,7,https://app.dimensions.ai/details/publication/pub.1191328161,The status of machine learning in HIV testing in South Africa: a qualitative inquiry with stakeholders in Gauteng province,1618781,,,Frontiers in Digital Health,10.3389/fdgth.2025.1618781,2025-08-01,"Jaiteh, Musa;Phalane, Edith;Shiferaw, Yegnanew A.;Phaswana-Mafuya, Refilwe Nancy","Background: The human immunodeficiency virus (HIV) remains one of the leading causes of death globally, with South Africa bearing a significant burden. As an effective way of reducing HIV transmission, HIV testing interventions are crucial and require the involvement of key stakeholders, including healthcare professionals and policymakers. New technologies like machine learning are remarkably reshaping the healthcare landscape, especially in HIV testing. However, their implementation from the stakeholders' point of view remains unclear. This study explored the perspectives of key stakeholders in Gauteng Province on the status of machine learning applications in HIV testing in South Africa.
+Methods: The study used an exploratory qualitative approach to recruit 15 stakeholders working in government and non-government institutions rendering HIV testing services. The study participants were healthcare professionals such as public health experts, lab scientists, medical doctors, nurses, HIV testing services, and retention counselors. Individual-based in-depth interviews were conducted using open-ended questions. Thematic content analysis was used, and results were presented in themes and sub-themes.
+Results: Three main themes were determined, namely awareness level, existing applications, and perceived potential of machine learning in HIV testing interventions. A total of nine sub-themes were discussed in the study: limited knowledge among frontline workers, research vs. implementation gap, need for education, self-testing support, data analysis tools, counseling aids, youth engagement, system efficiency, and data-driven decisions. The study shows that integration of machine learning would enhance HIV risk prediction, individualized testing through HIV self-testing, and youth engagement. This is crucial for reducing HIV transmission, addressing stigma, and optimizing resource allocation. Despite the potential, machine learning is underutilized in HIV testing services beyond statistical analysis in South Africa. Key gaps identified were a lack of implementation of research findings and a lack of awareness among frontline workers and end-users.
+Conclusion: Policymakers should design educational programs to improve awareness of existing machine learning initiatives and encourage the implementation of research findings into HIV testing services. A follow-up study should assess the feasibility, structural challenges, and design implementation strategies for the integration of machine learning in HIV testing in South Africa.",article,0,,,"Jaiteh, Musa;Phalane, Edith;Shiferaw, Yegnanew A.;Phaswana-Mafuya, Refilwe Nancy",,,,,,,Frontiers in Digital Health,,,SCOPUS,"Jaiteh Musa, 2025, Frontiers in Digital Health",,"Jaiteh Musa, 2025, Frontiers in Digital Health"
+2025,29,https://app.dimensions.ai/details/publication/pub.1191440933,Automated classification of skeletal malocclusion in German orthodontic patients,396,8,,Clinical Oral Investigations,10.1007/s00784-025-06485-0,2025-01-01,"Paddenberg-Schubert, Eva;Midlej, Kareem;Krohn, Sebastian;Kuchler, Erika;Watted, Nezar;Proff, Peter;Iraqi, Fuad A.","ObjectivesPrecisely diagnosing skeletal class is mandatory for correct orthodontic treatment. Artificial intelligence (AI) could increase efficiency during diagnostics and contribute to automated workflows. So far, no AI-driven process can differentiate between skeletal classes I, II, and III in German orthodontic patients. This prospective cross-sectional study aimed to develop machine- and deep-learning models for diagnosing their skeletal class based on the gold-standard individualised ANB of Panagiotidis and Witt.Materials and methodsOrthodontic patients treated in Germany contributed to the study population. Pre-treatment cephalometric parameters, sex, and age served as input variables. Machine-learning models performed were linear discriminant analysis (LDA), random forest (RF), decision tree (DT), K-nearest neighbours (KNN), support vector machine (SVM), Gaussian naïve Bayes (NB), and multi class logistic regression (MCLR). Furthermore, an artificial neural network (ANN) was conducted.Results1277 German patients presented skeletal class I (48.79%), II (27.56%) and III (23.64%). The best machine-learning model, which considered all input parameters, was RF with 100% accuracy, with Calculated_ANB being the most important (0.429). The model with Calculated_ANB only achieved 100% accuracy (KNN), but ANB alone was inappropriate (71–76% accuracy). The ANN with all parameters and Calculated_ANB achieved 95.31% and 100% validation-accuracy, respectively.ConclusionsMachine- and deep-learning methods can correctly determine an individual’s skeletal class. Calculated_ANB was the most important among all input parameters, which, therefore, requires precise determination.Clinical relevanceThe AI methods introduced may help to establish digital and automated workflows in cephalometric diagnostics, which could contribute to the relief of the orthodontic practitioner.",article,0,,,"Paddenberg-Schubert, Eva;Midlej, Kareem;Krohn, Sebastian;Kuchler, Erika;Watted, Nezar;Proff, Peter;Iraqi, Fuad A.",,,,,,,Clinical Oral Investigations,,,SCOPUS,"Paddenberg-Schubert Eva, 2025, Clinical Oral Investigations",,"Paddenberg-Schubert Eva, 2025, Clinical Oral Investigations"
+2025,37,https://app.dimensions.ai/details/publication/pub.1191446241,Artificial intelligence in the diagnosis and management of dysphagia: a scoping review,e20240305,4,,CoDAS,10.1590/2317-1782/e20240305en,2025,"da Silva, Rayane Délcia;Almeida, Suzanne Bettega;Gonçalves, Flávio Magno;Zeigelboim, Bianca Simone;Stechman-Neto, José;Schroder, Angela Graciela Deliga;Nascimento, Weslania Viviane;Santos, Rosane Sampaio;de Araujo, Cristiano Miranda","PURPOSE: This scoping review aimed to map and synthesize evidence on technological advancements using Artificial Intelligence in the diagnosis and management of dysphagia. We followed the PRISMA guidelines and those of the Joanna Briggs Institute, focusing on research about technological innovations in dysphagia.
+RESEARCH STRATEGIES: The protocol was registered on the Open Science Framework platform. The databases consulted included EMBASE, Latin American and Caribbean Health Sciences Literature (LILACS), Livivo, PubMed/Medline, Scopus, Cochrane Library, Web of Science, and grey literature.
+SELECTION CRITERIA: The acronym 'PCC' was used to consider the eligibility of studies for this review.
+DATA ANALYSIS: After removing duplicates, 56 articles were initially selected. A subsequent update resulted in 205 articles, of which 61 were included after applying the selection criteria.
+RESULTS: Videofluoroscopy of swallowing was used as the reference examination in most studies. Regarding the underlying diseases present in the patients who participated in the studies, there was a predominance of various neurological conditions. The algorithms used varied across the categories of Machine Learning, Deep Learning, and Computer Vision, with a predominance in the use of Deep Learning.
+CONCLUSION: Technological advancements in artificial intelligence for the diagnosis and management of dysphagia have been mapped, highlighting the predominance and applicability of Deep Learning in examinations such as videofluoroscopy. The findings suggest significant potential to improve diagnostic accuracy and clinical management effectiveness, particularly in neurological patients. Identified research gaps require further investigations to solidify the clinical applicability and impact of these technologies.",article,0,,,"da Silva, Rayane Délcia;Almeida, Suzanne Bettega;Gonçalves, Flávio Magno;Zeigelboim, Bianca Simone;Stechman-Neto, José;Schroder, Angela Graciela Deliga;Nascimento, Weslania Viviane;Santos, Rosane Sampaio;de Araujo, Cristiano Miranda",,,,,,,CoDAS,,,SCOPUS,"da Silva Rayane Délcia, 2025, CoDAS",,"da Silva Rayane Délcia, 2025, CoDAS"
+2025,8,https://app.dimensions.ai/details/publication/pub.1191527746,Classification prediction of load losses in power stations using machine learning multilayer stack ensemble,1592492,,,Frontiers in Artificial Intelligence,10.3389/frai.2025.1592492,2025-08-07,"Boshoma, Bathandekile M.;Akinola, Oluwole S.;Olukanmi, Peter","Load losses negatively impact the reliability of power stations, leading to plant failures. To support the decision-making of improving plant reliability, we experimented with six machine learning classifiers to find the model combination that produces the best prediction performance, called the Explainable Multilayer Stack Ensemble. We applied a five-year dataset from six power stations. Since the dataset is highly imbalanced with the positive class dominant, class weights are calculated and assigned to reduce bias toward the majority class. The best parameters are determined through a randomized search with cross-validation and applied to train the models. The Explainable Multilayer Stack Ensemble performed better than the individual models, with a further improvement by excluding the Gaussian Naïve Bayes in the second layer since it produced high false negatives. We demonstrate that when handling a highly imbalanced dataset, balanced accuracy, Receiver Operating Characteristics, and Precision-Recall Area Under the Curve provide a more reliable evaluation of model performance than focusing solely on standard evaluation metrics, such as accuracy, precision, and recall. Moreover, by excluding a poor-performing classifier from ensemble, we optimized the prediction process, and further enhanced overall performance.",article,0,,,"Boshoma, Bathandekile M.;Akinola, Oluwole S.;Olukanmi, Peter",,,,,,,Frontiers in Artificial Intelligence,,,SCOPUS,"Boshoma Bathandekile M., 2025, Frontiers in Artificial Intelligence",,"Boshoma Bathandekile M., 2025, Frontiers in Artificial Intelligence"
+2025,53,https://app.dimensions.ai/details/publication/pub.1191530555,Clinical Application of Machine Learning in Biomedical Engineering for the Early Detection of Neurological Disorders,2389,10,,Annals of Biomedical Engineering,10.1007/s10439-025-03820-0,2025-08-07,"Georgiou, Georgios P.","Machine learning is increasingly recognized as a transformative tool in the diagnosis and prognosis of neurodevelopmental, neurodegenerative, and learning disorders. Through the analysis of complex patterns in speech and language, these models may offer important insights that can support and enhance clinical decision-making. This paper explores the potential of machine learning to detect a range of disorders and discusses its key advantages, limitations, and clinical integration.",article,0,,,"Georgiou, Georgios P.",,,,,,,Annals of Biomedical Engineering,2391,,SCOPUS,"Georgiou Georgios P., 2025, Annals of Biomedical Engineering",,"Georgiou Georgios P., 2025, Annals of Biomedical Engineering"
+2025,24,https://app.dimensions.ai/details/publication/pub.1191627689,A review of machine learning applications in heart health,99,1,,BioMedical Engineering OnLine,10.1186/s12938-025-01430-4,2025-08-11,"Perrone, Ava;Khoshgoftaar, Taghi M.","The application of machine learning in healthcare continues to gain attention as researchers attempt to prove its potential for the enhancement of diagnosis and prognosis accuracy. Although many applications of machine learning have been well studied, there remain substantial opportunities for advancement. The field of healthcare holds particularly strong potential for improvement from integration with machine learning. In the future, clinicians will likely utilize machine learning to enhance the efficiency of diagnosis and prognosis, optimizing the delivery of care. This study conducts a comprehensive examination of feature selection methodologies, model architectures, and fine-tuning techniques related to diverse diagnostic and prognostic scenarios within the domain of heart health. It addresses some key gaps in earlier research, including the lack of agreement on which data sources are most effective for classifying stroke and heart attack. This review contributes an analysis of current machine learning methods in stroke and heart attack research, highlighting key gaps such as limited use of multimodal data, external validation, and class imbalance mitigation. It suggests improvements, including the adoption of advanced sampling techniques and the use of comprehensive performance metrics. The findings suggest that despite extensive research on machine learning in cardiovascular health, there are gaps to be addressed in methodologies for data collection, preprocessing, model development, evaluation, and feature engineering.",article,0,,,"Perrone, Ava;Khoshgoftaar, Taghi M.",,,,,,,BioMedical Engineering OnLine,,,SCOPUS,"Perrone Ava, 2025, BioMedical Engineering OnLine",,"Perrone Ava, 2025, BioMedical Engineering OnLine"
+2025,64,https://app.dimensions.ai/details/publication/pub.1191757350,Methodological Techniques Used in Machine Learning to Support Individualized Drug Dosing Regimens Based on Pharmacokinetic Data: A Scoping Review,1295,9,,Clinical Pharmacokinetics,10.1007/s40262-025-01547-8,2025-08-14,"Methaneethorn, Janthima;Duangchaemkarn, Khanita;Reisfeld, Brad;Habiballah, Sohaib","Background and ObjectiveIndividualized drug dosing is a highly effective strategy for optimizing therapeutic outcomes, especially for drugs with high inter-individual variability. Population pharmacokinetic modeling is a widely used approach to characterize inter-individual variability in therapeutic drug monitoring. However, the development of population pharmacokinetic models is labor intensive and requires significant technical expertise. Machine learning (ML) represents a promising alternative for personalized drug dosing strategies. Despite numerous studies applying ML in this context, no previous work has comprehensively reviewed and compared their methodologies and predictive performance. This scoping review addresses this gap in the existing literature with the aim to examine the methodological approaches used in ML-based pharmacokinetic modeling for dose optimization.MethodsFive databases were systematically searched from their inception to May 2025. Studies comparing predictions of drug concentrations or pharmacokinetic parameters between ML and population pharmacokinetic models were included. Studies published in non-English language, reviews, protocols, or studies that did not employ ML models for individualized dose regimens or treatment plans were excluded.ResultsFifty-eight studies were included. We found that boosting-based models, tree-based models, instance-based, and regression-based models were the most commonly used ML approaches. Approximately 31% of the studies integrated ML with population pharmacokinetic models, while the remainder developed stand-alone ML models. Inconsistencies in reporting were evident, as only 60% of the studies detailed their feature selection methods. Model evaluation approaches also varied: 47% of ML models used internal test sets, while the remainder employed external datasets or mixed approaches. In terms of predictive accuracy, ML models performed comparably to or better than population pharmacokinetic models, especially for drugs with significant pharmacokinetic variability.ConclusionsThis review identifies substantial heterogeneity in ML modeling approaches, feature selection, and model evaluation. To enhance the reproducibility and clinical applicability of ML models in individualized drug dosing, standardization in reporting and methodological practices is essential.",article,0,,,"Methaneethorn, Janthima;Duangchaemkarn, Khanita;Reisfeld, Brad;Habiballah, Sohaib",,,,,,,Clinical Pharmacokinetics,1330,,SCOPUS,"Methaneethorn Janthima, 2025, Clinical Pharmacokinetics",,"Methaneethorn Janthima, 2025, Clinical Pharmacokinetics"
+2025,196,https://app.dimensions.ai/details/publication/pub.1191789687,Leveraging machine learning in Caenorhabditis elegans developmental studies,110865,Pt C,,Computers in Biology and Medicine,10.1016/j.compbiomed.2025.110865,2025-08-16,"Babu, Kamesh R","Caenorhabditis elegans (C. elegans) is a microscopic, free-living nematode widely used as a model organism for studying fundamental biological processes, including development. Moreover, because of its rapid growth and simple maintenance, C. elegans is widely used in high-throughput screening studies. However, conventional methods for analyzing these morphological and developmental characteristics often rely on manual microscopy and human evaluations. These methods are labor intensive, slow, prone to mistakes, and not easy to scale up, particularly for high-throughput studies where vast amounts of information are generated. To solve these problems, researchers can bypass these methodologies by employing machine learning which can perform consistent and error-free data processing. This review analyses how various machine learning methods have been employed to counteract the problems faced in traditional experimental approaches. Their impact on the enhancement of precision, effectiveness, and scalability of developmental studies in C. elegans has been discussed, as well as the issues that pose constraints to the adoption of these technologies in low-resource laboratories.",article,0,,,"Babu, Kamesh R",,,,,,,Computers in Biology and Medicine,,,SCOPUS,"Babu Kamesh R, 2025, Computers in Biology and Medicine",,"Babu Kamesh R, 2025, Computers in Biology and Medicine"
+2025,51,https://app.dimensions.ai/details/publication/pub.1191831736,The role of artificial intelligence in drug development: enhancing pharmaceutical chemistry through machine learning and predictive modeling,1430,11,,Drug Development and Industrial Pharmacy,10.1080/03639045.2025.2548839,2025-08-19,"Dash, Deepak Kumar;Pattnaik, Satyanarayan;Namdeo, Arpita","OBJECTIVE: To explore the application of artificial intelligence (AI) and machine learning (ML) in enhancing drug design and development processes within the pharmaceutical industry.
+SIGNIFICANCE: Drug design and improvement remain critical areas for chemical scientists and the pharmaceutical industry. Traditional drug development methods often suffer from low efficiency, unintended targeting, lengthy timelines, and high costs, posing significant challenges to the advancement of drug research.
+CONCLUSION: Incorporating AI and ML technologies into pharmaceutical research can revolutionize the drug development landscape by making processes more efficient, precise, and environmentally sustainable. Continued advancements in AI-driven methodologies promise transformative impacts on healthcare and drug accessibility worldwide.",article,0,,,"Dash, Deepak Kumar;Pattnaik, Satyanarayan;Namdeo, Arpita",,,,,,,Drug Development and Industrial Pharmacy,1438,,SCOPUS,"Dash Deepak Kumar, 2025, Drug Development and Industrial Pharmacy",,"Dash Deepak Kumar, 2025, Drug Development and Industrial Pharmacy"
+2025,15,https://app.dimensions.ai/details/publication/pub.1191851892,Comparative analysis of machine learning models for detecting water quality anomalies in treatment plants,30453,1,,Scientific Reports,10.1038/s41598-025-15517-4,2025-08-19,"Prabu, P.;Alluhaidan, Ala Saleh;Aziz, Romana;Basheer, Shakila","Water is one of the most critical and finite resources on our planet. As the demand for freshwater continues to grow, effectively managing and purifying existing water sources becomes increasingly important. This study introduces a Machine learning-based approach for enhancing water quality monitoring and anomaly detection in treatment plants using a modified Quality Index (QI). The proposed method integrates an encoder-decoder architecture with real-time anomaly detection and adaptive QI computation, providing a dynamic evaluation of water quality. In addition to developing this model, we present a comparative analysis with several existing machine learning models, demonstrating the effectiveness of our approach in detecting water quality anomalies. The revised QI is continuously updated using real-time sensor data, aiding decision-making in treatment operations. Experimental results show that the proposed model achieves superior performance, with an accuracy of 89.18%, precision of 85.54%, recall of 94.02%, Critical Success Index of 93.42%, Matthews Correlation Coefficient of 88.40%, delta-P of 94.37%, and Fowlkes–Mallow’s Index of 89.47%. These results highlight the model’s strong predictive capability and its practical utility in improving water treatment plant efficiency. By combining Machine learning with adaptive quality assessment, this study contributes to advancing intelligent monitoring solutions in water management.",article,0,,,"Prabu, P.;Alluhaidan, Ala Saleh;Aziz, Romana;Basheer, Shakila",,,,,,,Scientific Reports,,,SCOPUS,"Prabu P., 2025, Scientific Reports",,"Prabu P., 2025, Scientific Reports"
+2025,31,https://app.dimensions.ai/details/publication/pub.1191885292,Improving Clinical Reasoning Skills With Machine Learning K‐Means Algorithm,e70250,5,,Journal of Evaluation in Clinical Practice,10.1111/jep.70250,2025-08-19,"Hachoumi, Nadia;Eddabbah, Mohamed;Adib, Ahmed Rhassane El","PURPOSE: The enhancement of clinical reasoning is crucial in health sciences education for producing skilled practitioners. This study explores whether machine learning, particularly the K-means clustering algorithm, can detect technical and conceptual errors occurring while students are engaged in problem-solving. The study's main questions ask to what extent machine learning provides opportunities for a personalized approach towards educational interventions aimed at certain types of reasoning deficits.
+METHODS: A new method was proposed to classify students on clinical reasoning skills by integrating K-means clustering with Bloom's taxonomy. The approach gathered learners in clusters at different levels of cognition, starting from very basic cognitive processes of recalling factual knowledge to fully advanced clinical problematization. It was these reverse-engineered clusters that allowed the design of pedagogy that targeted the specific cognitive needs of the groups.
+RESULTS: Clustering using the K-means method provides valuable insights into performance patterns in student behaviour that extend beyond the limitations of conventional assessments. By placing students on a continuum of reasoning abilities, educators were able to take action to respond to individual learning paths. Such interventions could be applied in real time at the scale necessary for effective targeted instruction, which is essential for closing reasoning gaps.
+CONCLUSION: The combination of machine learning, especially K-means clustering, and educational theory, such as Bloom's taxonomy, results in electronic-high-scale, multi-evidence, personalized clinical training. This is another theorem on how machine learning enables teaching and individual learning by a student in various cognitive domains.",article,0,,,"Hachoumi, Nadia;Eddabbah, Mohamed;Adib, Ahmed Rhassane El",,,,,,,Journal of Evaluation in Clinical Practice,,,SCOPUS,"Hachoumi Nadia, 2025, Journal of Evaluation in Clinical Practice",,"Hachoumi Nadia, 2025, Journal of Evaluation in Clinical Practice"
+2025,25,https://app.dimensions.ai/details/publication/pub.1191903638,A Review of Artificial Intelligence Techniques in Fault Diagnosis of Electric Machines,5128,16,,Sensors,10.3390/s25165128,2025-08-18,"Zachariades, Christos;Xavier, Vigila","Rotating electrical machines are critical assets in industrial systems, where unexpected failures can lead to costly downtime and safety risks. This review presents a comprehensive and up-to-date analysis of artificial intelligence (AI) techniques for fault diagnosis in electric machines. It categorizes and evaluates supervised, unsupervised, deep learning, and hybrid/ensemble approaches in terms of diagnostic accuracy, adaptability, and implementation complexity. A comparative analysis highlights the strengths and limitations of each method, while emerging trends such as explainable AI, self-supervised learning, and digital twin integration are discussed as enablers of next-generation diagnostic systems. To support practical deployment, the article proposes a modular implementation framework and offers actionable recommendations for practitioners. This work serves as both a reference and a guide for researchers and engineers aiming to develop scalable, interpretable, and robust AI-driven fault diagnosis solutions for rotating electrical machines.",article,0,,,"Zachariades, Christos;Xavier, Vigila",,,,,,,Sensors,,,SCOPUS,"Zachariades Christos, 2025, Sensors",,"Zachariades Christos, 2025, Sensors"
+2025,70,https://app.dimensions.ai/details/publication/pub.1191944629,AI in Palliative Care: A Scoping Review of Foundational Gaps and Future Directions for Responsible Innovation,e394,6,,Journal of Pain and Symptom Management,10.1016/j.jpainsymman.2025.08.009,2025-08-21,"Bozkurt, Selen;Fereydooni, Soraya;Kar, Irem;Chalmers, Catherine Diop;Leslie, Sharon L;Pathak, Ravi;Walling, Anne M;Lindvall, Charlotta;Lorenz, Karl;Parikh, Ravi;Quest, Tammie;Giannitrapani, Karleen;Kavalieratos, Dio","BACKGROUND: Artificial intelligenc (AI) holds increasing promise for enhancing palliative care through applications in prognostication, symptom management, and decision support. However, the utilization of real-world data, the rigor of validation, and the transparency and reproducibility of these AI tools remain largely unexamined, posing critical considerations for their safe and ethical integration in sensitive end-of-life settings.
+OBJECTIVES: This scoping review systematically mapped the landscape of AI applications in palliative and hospice care, focusing on three key domains: (1) the purposes and data sources of AI models; (2) the methods and extent of model validation and generalizability; and (3) the degree of transparency and reproducibility.
+METHODS: A comprehensive search was conducted across multiple databases (e.g., PubMed/MEDLINE, Embase.com, IEEE Xplore, Web of Science, ClinicalTrials.gov) from inception to December 31, 2023. Studies of any design applying AI (including machine learning or natural language processing) in palliative or hospice contexts for adults were included. Two independent reviewers screened studies and charted data on study context, patient population, data type, AI methodology, outcome, evaluation approach, and indicators of model generalizability, transparency and reproducibility.
+RESULTS: From 4,747 unique records, 125 studies met inclusion criteria, with over half published in the last three years, predominantly from the United States. Most studies (86%) were retrospective proof-of-concept designs, with few randomized controlled trials (n = 7) or prospective evaluations (n = 6). AI applications primarily focused on mortality prediction (n = 63) in cancer populations (n = 62), followed by advance care planning (n = 18) and symptom assessment (n = 17). Structured electronic health record data were the most common input (n = 67, 54%). Transparency was limited, with only 19 studies (15%) sharing code and 14 (11%) providing data access; none adhered to AI-specific reporting guidelines. Ethical frameworks for evaluation were notably absent.
+CONCLUSION: AI in palliative care remains in early development, showing promise in areas such as prognosis and documentation support. However, limited validation, insufficient cross-site testing, and lack of transparency currently limit clinical applicability. Future research should emphasize external validation, inclusion of broader patient data, and adoption of open science practices to ensure these tools are reliable, safe, and trustworthy.",article,0,,,"Bozkurt, Selen;Fereydooni, Soraya;Kar, Irem;Chalmers, Catherine Diop;Leslie, Sharon L;Pathak, Ravi;Walling, Anne M;Lindvall, Charlotta;Lorenz, Karl;Parikh, Ravi;Quest, Tammie;Giannitrapani, Karleen;Kavalieratos, Dio",,,,,,,Journal of Pain and Symptom Management,e418,,SCOPUS,"Bozkurt Selen, 2025, Journal of Pain and Symptom Management",,"Bozkurt Selen, 2025, Journal of Pain and Symptom Management"
+2025,111,https://app.dimensions.ai/details/publication/pub.1191998208,Systematic review and meta-analysis of the role of machine learning in predicting postoperative complications following colorectal surgery: how far has machine learning come?,8550,11,,"International Journal of Surgery (London, England)",10.1097/js9.0000000000003067,2025-07-29,"Mohamedahmed, Ali Yasen;Zaman, Shafquat;Agrof, Mosaab;Adam, Mohammed A.;Husain, Najam;Yassin, Nuha A.","BACKGROUND: To systematically evaluate the clinical utility of machine learning in predicting postoperative outcomes following colorectal surgery.
+METHODS: A systematic literature search was conducted using PubMed, MEDLINE, Embase, and Google Scholar. Clinical studies investigating the role of machine learning models in predicting postoperative complications following colorectal surgery were included. Outcome measure was area under the curve for the model under investigation. The area under the curve and standard error were pooled using a random effects model to estimate the overall effect size. Statistical analyses were performed using the MedCalc (version 23) software, and the results presented as forest plots.
+RESULTS: Eighteen eligible articles were included. These reported outcomes on postoperative complications, namely anastomotic leak, mortality, prolonged length of hospitalization, re-admission rates, risk of bleeding, paralytic ileus occurrence, and surgical site infection. Pooled area under the curve for anastomotic leak was 0.813 [standard error: 0.031, 95% confidence interval (0.753-0.873)]; mortality 0.867 [standard error: 0.015, 95% confidence interval (0.838-0.896)]; prolonged length of stay 0.810 [standard error: 0.042, 95% confidence interval (0.728-0.892)]; and surgical site infection 0.802 [standard error: 0.031, 95% confidence interval (0.742-0.862)], respectively.
+CONCLUSION: Machine learning methods and techniques are displaying promising clinical utility and applicability in accurately predicting the risk of developing complications following colorectal surgery. Future well-designed, adequately powered, multi-center studies are needed to investigate the usefulness and generalizability of these novel approaches in optimizing peri-operative surgical care.",article,0,,,"Mohamedahmed, Ali Yasen;Zaman, Shafquat;Agrof, Mosaab;Adam, Mohammed A.;Husain, Najam;Yassin, Nuha A.",,,,,,,"International Journal of Surgery (London, England)",8562,,SCOPUS,"Mohamedahmed Ali Yasen, 2025, International Journal of Surgery (London, England)",,"Mohamedahmed Ali Yasen, 2025, International Journal of Surgery (London, England)"
+2025,15,https://app.dimensions.ai/details/publication/pub.1192031890,Fine tuned CatBoost machine learning approach for early detection of cardiovascular disease through predictive modeling,31199,1,,Scientific Reports,10.1038/s41598-025-13790-x,2025-08-25,"Hamid, Muhammad;Hajjej, Fahima;Alluhaidan, Ala Saleh;bin Mannie, Norah Waleed","Cardiovascular disease (CVD) remains one of the leading causes of morbidity and mortality worldwide, highlighting the urgent need for early-stage diagnosis to improve clinical outcomes. Machine learning (ML) approaches have demonstrated substantial potential in predictive modeling for CVD risk assessment. In this study, we propose an advanced predictive model based on the CatBoost algorithm to classify various stages of CVD using hospital records as the primary data source. The dataset, sourced from a publicly available repository, comprises 12 key predictor variables. The proposed methodology incorporates feature selection, rigorous validation processes, and data augmentation to enhance predictive performance and address the challenges associated with high-dimensional medical data. Among several ML algorithms evaluated, the fine-tuned CatBoost model achieved the highest performance, automating feature selection and facilitating the detection of early-stage heart disease. The model attained an impressive F1-score of 99% and an overall accuracy of 99.02%, outperforming existing ML-based approaches. These findings underscore the potential of the CatBoost algorithm for rapid and accurate CVD diagnosis, thereby supporting clinical decision-making. Future work will focus on external validation and testing on independent datasets to further assess the model’s generalizability and clinical applicability.",article,0,,,"Hamid, Muhammad;Hajjej, Fahima;Alluhaidan, Ala Saleh;bin Mannie, Norah Waleed",,,,,,,Scientific Reports,,,SCOPUS,"Hamid Muhammad, 2025, Scientific Reports",,"Hamid Muhammad, 2025, Scientific Reports"
+2025,15,https://app.dimensions.ai/details/publication/pub.1192032653,A comparative analysis of parametric survival models and machine learning methods in breast cancer prognosis,31288,1,,Scientific Reports,10.1038/s41598-025-15696-0,2025-08-25,"Kaindal, Sonia;Venkataramana, B.","Accurate prediction of breast cancer survival is critical for optimizing treatment strategies and improving clinical outcomes. This study evaluated a combination of parametric statistical models and machine learning algorithms to identify the most influential prognostic factors affecting the survival of patients. Two commonly used parametric models, log-gaussian regression and logistic regression, were applied to assess the relationship between survival and a set of clinical variables, including age at diagnosis, tumor grade, primary tumor site, marital status, American Joint Committee on Cancer (AJCC) stage, race, and receipt of radiation therapy or chemotherapy. Machine learning methods, such as neural networks, support vector machines (SVMs), random forests, gradient boosting machines (GBMs), and logistic regression classifiers, were employed to compare the predictive performance. Among these, the neural network model exhibited the highest predictive accuracy. The random forest model achieved the best balance between model fit and complexity, as indicated by its lowest akaike information criterion and bayesian information criterion values. Across all models, five variables consistently emerged as significant predictors of survival: age, tumor grade, ajcc stage, marital status, and radiation therapy use. These findings highlight the importance of combining traditional survival analysis techniques with machine learning approaches to enhance predictive accuracy and support evidence-based personalized treatment planning in breast cancer care.",article,0,,,"Kaindal, Sonia;Venkataramana, B.",,,,,,,Scientific Reports,,,SCOPUS,"Kaindal Sonia, 2025, Scientific Reports",,"Kaindal Sonia, 2025, Scientific Reports"
+2025,15,https://app.dimensions.ai/details/publication/pub.1192047255,Identifying sinonasal inverted papilloma by machine learning: a systematic review and meta-analysis,1628999,,,Frontiers in Oncology,10.3389/fonc.2025.1628999,2025-08-26,"Qin, Xianfei;Shi, Jinping;Zhao, Xiangkun;Zhang, Yu;Liu, Xueyan;Wang, Li","Background: Sinonasal inverted papilloma (IP) is a benign tumor of the sinonasal mucosa, which may become malignant. Machine learning (ML) has been applied to improve the accuracy in the diagnosis of various diseases, but no studies have evaluated the performance of ML for IP diagnosis. This systematic review and meta-analysis aimed to explore the diagnostic performance of ML for IP.
+Methods: We systematically searched articles from PubMed, Cochrane, Embase, and Web of Science up to July 22, 2025. The quality assessment of diagnostic accuracy studies tool (QUADAS-2) was used to assess the risk of bias, and the bivariate mixed-effect model was used for meta-analysis.
+Results: 17 studies involving 3321 participants were included. In the validation set, the sensitivity and specificity of ML constructed based on radiomics for identifying IP and malignant tumors were 0.84 (95%CI: 0.77-0.89) and 0.82 (95% CI: 0.74 ~ 0.88), respectively. The sensitivity and specificity of ML constructed based on radiomics and clinical features for identifying IP and malignant tumors were 0.85 (95%CI: 0.78-0.90) and 0.87 (95% CI: 0.80 ~ 0.92), respectively.
+Conclusion: Our study shows that ML has a favorable performance in the differential diagnosis of IP. More prospective studies are needed to validate and develop universal tools.
+Systemic Review Registration: https://www.crd.york.ac.uk/PROSPERO/view/CRD42023430417, identifier CRD42023430417.",article,0,,,"Qin, Xianfei;Shi, Jinping;Zhao, Xiangkun;Zhang, Yu;Liu, Xueyan;Wang, Li",,,,,,,Frontiers in Oncology,,,SCOPUS,"Qin Xianfei, 2025, Frontiers in Oncology",,"Qin Xianfei, 2025, Frontiers in Oncology"
+2025,12,https://app.dimensions.ai/details/publication/pub.1192468332,Machine learning to predict high-risk coronary artery disease on CT in the SCOT-HEART trial,e003162,2,,Open Heart,10.1136/openhrt-2025-003162,2025-09-01,"Williams, Michelle Claire;Guimaraes, Alan R M;Jiang, Muchen;Kwieciński, Jacek;Weir-McCall, Jonathan R;Adamson, Philip D;Mills, Nicholas L;Roditi, Giles H;van Beek, Edwin J R;Nicol, Edward;Berman, Daniel S;Slomka, Piotr J;Dweck, Marc R;Newby, David E;Dey, Damini","BACKGROUND: Machine learning based on clinical characteristics has the potential to predict coronary CT angiography (CCTA) findings and help guide resource utilisation.
+METHODS: From the SCOT-HEART (Scottish Computed Tomography of the HEART) trial, data from 1769 patients was used to train and to test machine learning models (XGBoost, 10-fold cross validation, grid search hyperparameter selection). Two models were separately generated to predict the presence of coronary artery disease (CAD) and an increased burden of low-attenuation coronary artery plaque (LAP) using symptoms, demographic and clinical characteristics, electrocardiography and exercise tolerance testing (ETT).
+RESULTS: Machine learning predicted the presence of CAD on CCTA (area under the curve (AUC) 0.80, 95% CI 0.74 to 0.85) better than the 10-year cardiovascular risk score alone (AUC 0.75, 95% CI 0.70, 0.81, p=0.004). The most important features in this model were the 10-year cardiovascular risk score, age, sex, total cholesterol and an abnormal ETT. In contrast, the second model used to predict an increased LAP burden performed similarly to the 10-year cardiovascular risk score (AUC 0.75, 95% CI 0.70 to 0.80 vs AUC 0.72, 95% CI 0.66 to 0.77, p=0.08) with the most important features being the 10-year cardiovascular risk score, age, body mass index and total and high-density lipoprotein cholesterol concentrations.
+CONCLUSION: Machine learning models can improve prediction of the presence of CAD on CCTA, over the standard cardiovascular risk score. However, it was not possible to improve the prediction of an increased LAP burden based on clinical factors alone.",article,0,,,"Williams, Michelle Claire;Guimaraes, Alan R M;Jiang, Muchen;Kwieciński, Jacek;Weir-McCall, Jonathan R;Adamson, Philip D;Mills, Nicholas L;Roditi, Giles H;van Beek, Edwin J R;Nicol, Edward;Berman, Daniel S;Slomka, Piotr J;Dweck, Marc R;Newby, David E;Dey, Damini",,,,,,,Open Heart,,,SCOPUS,"Williams Michelle Claire, 2025, Open Heart",,"Williams Michelle Claire, 2025, Open Heart"
+2025,6,https://app.dimensions.ai/details/publication/pub.1192546619,Harnessing artificial intelligence for engineering extracellular vesicles,517,3,,Extracellular Vesicles and Circulating Nucleic Acids,10.20517/evcna.2025.35,2025-09-02,"Lu, Hui;Zhang, Jin;Shen, Tianzhuo;Jiang, Wenbing;Liu, Han;Su, Jiacan","Extracellular vesicles (EVs) are a type of cell-released phospholipid bilayer nanoscale carrier. However, research on EVs encounters several challenges, such as their heterogeneity, the complexities associated with their isolation and identification, the necessity for engineering optimization, and the limitations in exploring their mechanisms. The advancement of artificial intelligence (AI) technologies offers new opportunities for EV research. Here, the definition and brief history of AI, as well as types and common models of machine learning, are first introduced, and the interactions between AI, machine learning, and deep learning are explored. The article then discusses in detail a variety of applications of AI in EV research, including the use of AI for target identification and selective delivery of EVs, the design and optimization of drug delivery systems, the mapping of cellular communication networks, the analysis of multi-omics data, and synthetic biology-based research on EVs. These applications demonstrate the potential of AI in advancing EV research and applications. Finally, we offer an outlook on the major challenges and future prospects of AI. Overall, the introduction of AI technologies has provided new perspectives and tools for the study of EVs, which is expected to enhance the application of EVs in disease diagnosis and treatment.",article,0,,,"Lu, Hui;Zhang, Jin;Shen, Tianzhuo;Jiang, Wenbing;Liu, Han;Su, Jiacan",,,,,,,Extracellular Vesicles and Circulating Nucleic Acids,41,,SCOPUS,"Lu Hui, 2025, Extracellular Vesicles and Circulating Nucleic Acids",,"Lu Hui, 2025, Extracellular Vesicles and Circulating Nucleic Acids"
+2025,137,https://app.dimensions.ai/details/publication/pub.1192593654,Detecting the Undetected: Machine Learning in Early Disease Diagnosis,e70104,4,,Basic & Clinical Pharmacology & Toxicology,10.1111/bcpt.70104,2025-09-04,"Rathi, Kanika;Sharma, Sakshi;Barnwal, Anil","Early detection of diseases is a critical pillar in advancing modern healthcare, offering timely interventions and better patient outcomes. This overview highlights a range of machine learning (ML) approaches that are transforming early disease diagnosis. We discuss how traditional supervised and unsupervised methods, alongside advanced deep learning and reinforcement learning techniques, are utilized to detect early disease markers, often before clinical symptoms appear. The paper begins with a discussion of ML fundamentals within healthcare, along with standard evaluation metrics such as accuracy, precision, recall, F1-score and AUC-ROC. It then explores various ML models, including supervised algorithms (support vector machines, decision trees and random forests), unsupervised methods (K-means, hierarchical clustering and principal component analysis) and deep learning architectures (convolutional neural networks, recurrent neural networks and transformers). Reinforcement learning's emerging role in healthcare is also examined. Practical applications across disease areas such as cancer, cardiovascular diseases, neurological disorders and infectious diseases are reviewed. We emphasize the importance of high-quality datasets, balanced data distribution and clinical relevance. Key challenges such as data scarcity, model interpretability, privacy, the risk of overdiagnosis and clinical integration are critically discussed. It underscores that the successful translation of these technologies from code to clinic hinges on a deep, bidirectional collaboration between data scientists and clinical experts to ensure that newly developed tools address real-world patient needs. The overview concludes with future directions, including explainable AI, federated learning, multimodal data fusion, real-time applications and quantum ML, charting the evolving path of early disease detection.",article,0,,,"Rathi, Kanika;Sharma, Sakshi;Barnwal, Anil",,,,,,,Basic & Clinical Pharmacology & Toxicology,,,SCOPUS,"Rathi Kanika, 2025, Basic & Clinical Pharmacology & Toxicology",,"Rathi Kanika, 2025, Basic & Clinical Pharmacology & Toxicology"
+2025,26,https://app.dimensions.ai/details/publication/pub.1192786784,A case study of ChatGPT-assisted building of a microbiome-based machine learning model for biologists,e00082,3,,Journal of Microbiology and Biology Education,10.1128/jmbe.00082-25,2025-09-11,"Yang, Huan;Xie, David;Wei, Ping;Ge, Jinzhan;Li, Yudong","Machine learning is a widespread technology that is shaping how biologists interact with data. However, there are many practical challenges in teaching machine learning to biology students, who often do not have a strong programming background. To address these challenges, we present an educational study utilizing publicly available salivary microbiome data sets to develop a machine learning model using Python. With the assistance of ChatGPT, most students successfully built a simple random forest model. Evaluation metrics, such as accuracy and area under the curve, indicated that the overall performance of the model was favorable and accurately predicted oral malodor diseases. This work establishes a pedagogical framework for integrating machine learning into biology curricula, bridging the gap between data science and life science education.",article,0,,,"Yang, Huan;Xie, David;Wei, Ping;Ge, Jinzhan;Li, Yudong",,,,,,,Journal of Microbiology and Biology Education,25,,SCOPUS,"Yang Huan, 2025, Journal of Microbiology and Biology Education",,"Yang Huan, 2025, Journal of Microbiology and Biology Education"
+2025,57,https://app.dimensions.ai/details/publication/pub.1192909921,"Role of Artificial Intelligence in Lung Transplantation: Current State, Challenges, and Future Directions",1621,8,,Transplantation Proceedings,10.1016/j.transproceed.2025.08.016,2025-09-16,"Duncheskie, Robert P;Omari, Omar Al;Anjum, Fatima","Lung transplantation remains a critical treatment for end-stage lung diseases, yet it continues to have 1 of the lowest survival rates among solid organ transplants. Despite its life-saving potential, the field faces several challenges, including organ shortages, suboptimal donor matching, and post-transplant complications. The rapidly advancing field of artificial intelligence (AI) offers significant promise in addressing these challenges. Traditional statistical models, such as linear and logistic regression, have been used to predict post-transplant outcomes but struggle to adapt to new trends and evolving data. In contrast, machine learning algorithms can evolve with new data, offering dynamic and updated predictions. AI holds the potential to enhance lung transplantation at multiple stages. In the pre-transplant phase, AI can optimize waitlist management, refine donor selection, and improve donor-recipient matching, and enhance diagnostic imaging by harnessing vast datasets. Post-transplant, AI can help predict allograft rejection, improve immunosuppressive management, and better forecast long-term patient outcomes, including quality of life. However, the integration of AI in lung transplantation also presents challenges, including data privacy concerns, algorithmic bias, and the need for external clinical validation. This review explores the current state of AI in lung transplantation, summarizes key findings from recent studies, and discusses the potential benefits, challenges, and ethical considerations in this rapidly evolving field, highlighting future research directions.",article,0,,,"Duncheskie, Robert P;Omari, Omar Al;Anjum, Fatima",,,,,,,Transplantation Proceedings,1626,,SCOPUS,"Duncheskie Robert P, 2025, Transplantation Proceedings",,"Duncheskie Robert P, 2025, Transplantation Proceedings"
+2025,11,https://app.dimensions.ai/details/publication/pub.1192940698,Enhancing human activity recognition with machine learning: insights from smartphone accelerometer and magnetometer data,e3137,,,PeerJ Computer Science,10.7717/peerj-cs.3137,2025-09-15,"Zendron, Luis Augusto Silva;Coelho, Paulo Jorge;Soares, Christophe;Pereira, Ivo;Pires, Ivan Miguel","The domain of Human Activity Recognition (HAR) has undergone a remarkable evolution, driven by advancements in sensor technology, artificial intelligence (AI), and machine learning algorithms. The aim of this article consists of taking as a basis the previously obtained results to implement other techniques to analyze the same dataset and improve the results previously obtained in the different studies, such as neural networks with different configurations, random forest, support vector machine, CN2 rule inducer, Naive Bayes, and AdaBoost. The methodology consists of data collection from smartphone sensors, data cleaning and normalization, feature extraction techniques, and the implementation of various machine learning models. The study analyzed machine learning models for recognizing human activities using data from smartphone sensors. The results showed that the neural network and random forest models were highly effective across multiple metrics. The models achieved an area under the curve (AUC) of 98.42%, a classification accuracy of 90.14%, an F1-score of 90.13%, a precision of 90.18%, and a recall of 90.14%. With significantly reduced computational cost, our approach outperforms earlier models using the same dataset and achieves results comparable to those of contemporary deep learning-based approaches. Unlike prior studies, our work utilizes non-normalized data and integrates magnetometer signals to enhance performance, all while employing lightweight models within a reproducible visual workflow. This approach is novel, efficient, and deployable on mobile devices in real-time. This approach makes it an ideal fit for real-time mobile applications.",article,0,,,"Zendron, Luis Augusto Silva;Coelho, Paulo Jorge;Soares, Christophe;Pereira, Ivo;Pires, Ivan Miguel",,,,,,,PeerJ Computer Science,,,SCOPUS,"Zendron Luis Augusto Silva, 2025, PeerJ Computer Science",,"Zendron Luis Augusto Silva, 2025, PeerJ Computer Science"
+2025,17,https://app.dimensions.ai/details/publication/pub.1192983330,Streamlining heart failure patient care with machine learning of thoracic cavity sound data,109992,9,,World Journal of Cardiology,10.4330/wjc.v17.i9.109992,2025-09-26,"Santoso, Rony Marethianto;Huang, Wilbert;Wee, Ser;Siswanto, Bambang Budi;Soesanto, Amiliana Mardiani;Jatmiko, Wisnu;Kekalih, Aria","Together, the heart and lung sound comprise the thoracic cavity sound, which provides informative details that reflect patient conditions, particularly heart failure (HF) patients. However, due to the limitations of human hearing, a limited amount of information can be auscultated from thoracic cavity sounds. With the aid of artificial intelligence-machine learning, these features can be analyzed and aid in the care of HF patients. Machine learning of thoracic cavity sound data involves sound data pre-processing by denoising, resampling, segmentation, and normalization. Afterwards, the most crucial step is feature extraction and selection where relevant features are selected to train the model. The next step is classification and model performance evaluation. This review summarizes the currently available studies that utilized different machine learning models, different feature extraction and selection methods, and different classifiers to generate the desired output. Most studies have analyzed the heart sound component of thoracic cavity sound to distinguish between normal and HF patients. Additionally, some studies have aimed to classify HF patients based on thoracic cavity sounds in their entirety, while others have focused on risk stratification and prognostic evaluation of HF patients using thoracic cavity sounds. Overall, the results from these studies demonstrate a promisingly high level of accuracy. Therefore, future prospective studies should incorporate these machine learning models to expedite their integration into daily clinical practice for managing HF patients.",article,0,,,"Santoso, Rony Marethianto;Huang, Wilbert;Wee, Ser;Siswanto, Bambang Budi;Soesanto, Amiliana Mardiani;Jatmiko, Wisnu;Kekalih, Aria",,,,,,,World Journal of Cardiology,,,SCOPUS,"Santoso Rony Marethianto, 2025, World Journal of Cardiology",,"Santoso Rony Marethianto, 2025, World Journal of Cardiology"
+2025,42,https://app.dimensions.ai/details/publication/pub.1193001895,Support Vector Machines Techniques and Applications,19,1,,Hand clinics,10.1016/j.hcl.2025.08.003,2025-09-18,"Pruneski, James A;Pareek, Ayoosh","Support vector machines (SVMs) are widely utilized in health care research for tasks such as classification, regression, and outlier detection. These models function by developing hyperplanes that maximize the separation between different classes in a feature space, enabling accurate prediction and classification. SVMs are classified into linear, nonlinear (eg, kernel-based), and multiclass variations. Several orthopedic and plastic surgery studies have found success in using SVMs for diagnosis and outcome prediction. While their robustness makes them effective for high-dimensional datasets, SVMs are not without limitations, and future work will be of benefit to strengthen an already powerful and popular technique.",article,0,,,"Pruneski, James A;Pareek, Ayoosh",,,,,,,Hand clinics,25,,SCOPUS,"Pruneski James A, 2025, Hand clinics",,"Pruneski James A, 2025, Hand clinics"
+2025,11,https://app.dimensions.ai/details/publication/pub.1193057342,The role of AI in the diagnosis of speech and language disorders: A systematic mapping study,20552076251379769,,,DIGITAL HEALTH,10.1177/20552076251379769,2025-05,"Tbaishat, Dina;Al-Shafei, Rand;Odeh, Mohammed","Objectives: This study aims to fulfill the current research gap pertaining to the lack of a comprehensive systematic mapping study (SMS) regarding the effectiveness of artificial intelligence (AI) machine learning algorithms in the diagnosis of speech and language disorders (SLDs), and the extent to which such AI algorithms can automate this diagnostic process.
+Methods: An SMS has been implemented following the Preferred Reporting Items for Systematic Reviews and Meta-Analyses guidelines; 19,774 research papers were screened resulting in 70 studies meeting purposely designed inclusion and exclusion criteria.
+Results: The findings revealed multiple research gaps including substantial divide in the application of AI machine learning algorithms for diagnosing SLDs, where 91.43% versus 8.57% of the studies relating to SLDs, respectively. This is further exacerbated by the absence AI machine learning algorithms for diagnosing prevalent language disorders, such as developmental language disorders in children. Furthermore, most AI machine learning algorithms for diagnosing SLDs are focused on binary classification of these disorders, for example, healthy and pathological voices, but not providing detailed diagnostics, such as the impaired aspects and contextual SLDs severity. Finally, AI machine learning algorithms have predominantly focused on partially automating the SLD assessment phase of the diagnostic process (76%) compared to those that have extended the automation to partially include the diagnosis determination phase (24%).
+Conclusion: The effectiveness of AI machine learning algorithms in automating SLD diagnosis cannot be claimed without larger population datasets, highlighting a research gap for developing AI models to automate the four phases of the SLD diagnostic process and link them to treatment protocols in clinical settings.",article,0,,,"Tbaishat, Dina;Al-Shafei, Rand;Odeh, Mohammed",,,,,,,DIGITAL HEALTH,,,SCOPUS,"Tbaishat Dina, 2025, DIGITAL HEALTH",,"Tbaishat Dina, 2025, DIGITAL HEALTH"
+2025,40,https://app.dimensions.ai/details/publication/pub.1193287793,Development and validation of machine-learning model based on dynamic tumor markers in predicting pathological complete response after neoadjuvant chemoradiotherapy in patients with locally advanced rectal cancer: a multicenter cohort study,204,1,,International Journal of Colorectal Disease,10.1007/s00384-025-04993-9,2025-01-01,"Chen, Bin;Peng, Tengyi;Pan, Zhen;Li, Shoufeng;Wang, Ye;Zheng, Shaoqing;Zhuang, Jinfu;Liu, Xing;Lu, Xingrong;Zeng, Changqing;Guan, Guoxian","ObjectiveIn this study, we constructed a new pCR predictor based on dynamic tumor marker changes before and after NCRT, the dynamic tumor marker score (DTMS), and combined it with other clinicopathological features to build a machine-learning model.MethodsIn this retrospective study of patients with LARC between September 2010 and October 2017 at The First Affiliated Hospital of Fujian Medical University (FJMUFAH), Fujian Medical University Union Hospital (FJMUUH), and Fujian Provincial Hospital (FJPH), the DTMS predictor was constructed using logistic regression. Factors associated with pCR were screened using single-factor and multifactorial logistic regression, and 10 machine-learning algorithms were used to construct a pCR prediction model. Additionally, various metrics, including the area under the receiver operating characteristic curve (AUC), area under the precision-recall curve (AUPRC), decision curve analysis, and calibration curves, were obtained to validate the model performance and verified using an external validation set. Finally, SHapley Additive exPlanations (SHAP) values were used to interpret the predictive model. Moreover, we developed a website to facilitate the use of prediction modeling.ResultsAfter analyzing the data of 892 patients with LARC from FJMUFAH, DTMS, tumor size, N stage, and tumor distance from the anal verge were identified as independent predictive factors for pCR using univariate and multivariate regression analyses. The “extreme gradient boosting” (XGB) model displayed the best performance in the training set, with a mean AUC value of 0.86, an AUPRC value of 0.732, and SHAP values utilized in the analysis. In the two external validation sets, the model yielded AUC values of 0.80 and 0.82, along with corresponding AUPRC values of 0.519 and 0.593, respectively, which were the highest among all ten evaluated models, incorporating the use of SHAP values in the analysis. The model maintained superior predictive efficacy in the external validation cohorts (FJMUUH and FJPH).ConclusionsAs a novel marker based on dynamic changes in CEA and CA19-9 levels, DTMS effectively predicted pCR within the XGB model, providing clinicians with a practical tool for treatment decision-making regarding LARC.",article,0,,,"Chen, Bin;Peng, Tengyi;Pan, Zhen;Li, Shoufeng;Wang, Ye;Zheng, Shaoqing;Zhuang, Jinfu;Liu, Xing;Lu, Xingrong;Zeng, Changqing;Guan, Guoxian",,,,,,,International Journal of Colorectal Disease,,,SCOPUS,"Chen Bin, 2025, International Journal of Colorectal Disease",,"Chen Bin, 2025, International Journal of Colorectal Disease"
+2025,15,https://app.dimensions.ai/details/publication/pub.1193393562,Machine learning for stroke prediction using imbalanced data,33773,1,,Scientific Reports,10.1038/s41598-025-01855-w,2025-09-30,"Melnykova, Nataliia;Patereha, Yurii;Skopivskyi, Stepan;Farion, Mykola;Fedushko, Solomia;Drohomyretska, Khrystyna","The research focused on predicting strokes, a significant threat to health and well-being. The primary challenge addressed was the use of a highly imbalanced dataset. Various data preprocessing techniques were employed to tackle this, enabling the construction and comparison of machine-learning models for stroke prediction. Among the models assessed, the random forest model proved to be the most effective, achieving precision, recall, and F1-score levels of 90%, along with an accuracy of 90%. A random forest classifier was also trained using optimal hyperparameters obtained via grid search on balanced data to highlight the limitations of relying solely on accuracy in classification tasks. This approach demonstrated the model’s high accuracy of 96%, underscoring the impracticality of using accuracy as the sole metric for performance evaluation in imbalanced datasets. In conclusion, the research underscores the critical role of advanced data processing and machine learning techniques in enhancing stroke prediction. The successful application of the random forest model and the recognition of accuracy’s limitations provide a robust framework for future studies and practical implementations in healthcare settings. This work advances the predictive capabilities for stroke and paves the way for improved approaches to healthcare strategies, ultimately aiming to save lives and enhance the quality of life for individuals at risk.",article,0,,,"Melnykova, Nataliia;Patereha, Yurii;Skopivskyi, Stepan;Farion, Mykola;Fedushko, Solomia;Drohomyretska, Khrystyna",,,,,,,Scientific Reports,,,SCOPUS,"Melnykova Nataliia, 2025, Scientific Reports",,"Melnykova Nataliia, 2025, Scientific Reports"
+2025,111,https://app.dimensions.ai/details/publication/pub.1193498694,Evaluating the accuracy of machine learning in predicting postoperative flap complications: A meta-analysis,23,,,"Journal of Plastic, Reconstructive & Aesthetic Surgery",10.1016/j.bjps.2025.09.029,2025-10-01,"Alabdalhussein, Ali Imad;Al-Khafaji, Mohammed Hasan;Conboy, Peter;Singhavi, Hitesh;Anwar, Fahid;Elkrim, Mohammed;Busby-Earle, Miss Hazel;Olaleye, Oladejo;Patel, Nakul;Lakshmiah, Sundar Raj;Ameerally, Phillip;Mair, Manish Devendra","OBJECTIVE: To conduct a systematic review and meta-analysis to determine the sensitivity and specificity of machine learning models in predicting complications following flap surgery.
+DATA SOURCES: Five major databases, including MEDLINE, PubMed, EMBASE, EMCARE, and Google Scholar, were searched to identify relevant studies.
+REVIEW METHODS: We identified 49 records after removing 12 duplicates; 37 studies were screened and 32 were excluded, leaving 5 studies that were included. The total patient number was 7734 and was analysed using 10 machine learning models. For eligible studies, we extracted data on sensitivity, specificity, accuracy, and complication rates, focusing on the predictive performance of machine learning algorithms in identifying postoperative flap complications. Studies were evaluated using the QUADAS-2 tool; inclusion required reporting quantitative metrics such as sensitivity, specificity, or area under the receiver operating characteristic curve.
+RESULTS: The pooled sensitivity was 41.9% (95% CI: 41.0%-42.7%) and pooled specificity was 78.6% (95% CI: 78.2%-79.1%). Subgroup analysis showed the highest specificity in gradient boosting (GB) models (84.6%) and highest sensitivity in artificial neural network models (49.8%).
+CONCLUSION: Machine learning models demonstrate high specificity in predicting flap failure (correctly exclude the presence of flap failure), specifically in the GB model. However, the relatively low sensitivity remains a concern. This meta-analysis was registered in the International.
+PROSPECTIVE REGISTER: This systematic review is registered in PROSPERO under the ID CRD42024563930.",article,0,,,"Alabdalhussein, Ali Imad;Al-Khafaji, Mohammed Hasan;Conboy, Peter;Singhavi, Hitesh;Anwar, Fahid;Elkrim, Mohammed;Busby-Earle, Miss Hazel;Olaleye, Oladejo;Patel, Nakul;Lakshmiah, Sundar Raj;Ameerally, Phillip;Mair, Manish Devendra",,,,,,,"Journal of Plastic, Reconstructive & Aesthetic Surgery",34,,SCOPUS,"Alabdalhussein Ali Imad, 2025, Journal of Plastic, Reconstructive & Aesthetic Surgery",,"Alabdalhussein Ali Imad, 2025, Journal of Plastic, Reconstructive & Aesthetic Surgery"
+2025,15,https://app.dimensions.ai/details/publication/pub.1193634671,"Multiple machine learning algorithms for lithofacies prediction in the deltaic depositional system of the lower Goru Formation, Lower Indus Basin, Pakistan",34933,1,,Scientific Reports,10.1038/s41598-025-18670-y,2025-10-07,"Saleem, Muhammad Ansar;Sohail, Ghulam Mohyuddin;Rehman, Saif Ur;Yasin, Qamar;Radwan, Ahmed E.","Machine learning techniques for lithology prediction using wireline logs have gained prominence in petroleum reservoir characterization due to the cost and time constraints of traditional methods such as core sampling and manual log interpretation. This study evaluates and compares several machine learning algorithms, including Support Vector Machine (SVM), Decision Tree (DT), Random Forest (RF), Artificial Neural Network (ANN), K-Nearest Neighbor (KNN), and Logistic Regression (LR), for their effectiveness in predicting lithofacies using wireline logs within the Basal Sand of the Lower Goru Formation, Lower Indus Basin, Pakistan. The Basal Sand of Lower Goru Formation contains four typical lithologies: sandstone, shaly sandstone, sandy shale and shale. Wireline logs from six wells were analyzed, including gamma-ray, density, sonic, neutron porosity, and resistivity logs. Conventional methods, such as gamma-ray log interpretation and rock physics modeling, were employed to establish baseline lithological profiles, while core sample reports provided the necessary ground-truthing of the machine learning models. These traditional interpretations served as a benchmark for evaluating the performance of machine learning algorithms. The results revealed that Random Forest and Decision Tree models outperformed other algorithms, achieving accuracy, precision, recall, and F1 scores in the 96–98% range. Their robustness to noise, interpretability, and ability to handle complex, nonlinear data made them particularly suitable for the heterogeneous and multivariate nature of subsurface data. While SVM, ANN, KNN and LR required more tuning and were prone to overfitting, RF and DT proved efficient and reliable. The integration of traditional geological methods with machine learning provided a comprehensive approach to lithology prediction, enhancing reservoir characterization accuracy, while this study underscores the importance of combining domain expertise with computational models for optimizing petroleum exploration in complex geological environments.",article,0,,,"Saleem, Muhammad Ansar;Sohail, Ghulam Mohyuddin;Rehman, Saif Ur;Yasin, Qamar;Radwan, Ahmed E.",,,,,,,Scientific Reports,,,SCOPUS,"Saleem Muhammad Ansar, 2025, Scientific Reports",,"Saleem Muhammad Ansar, 2025, Scientific Reports"
+2025,97,https://app.dimensions.ai/details/publication/pub.1193642905,Unsupervised Machine Learning for Differential Analysis in Proteomics,22530,41,,Analytical Chemistry,10.1021/acs.analchem.5c03117,2025-10-06,"Xu, Guanyang;Wu, Enhui;Lin, Yuxiang;Lin, Ling;Qiao, Liang","Differential analysis in proteomics is pivotal for biomarker discovery and disease mechanism elucidation, yet traditional statistical methods are constrained by distributional assumptions and empirical fold change threshold dependencies. This study systematically evaluates 18 unsupervised anomaly detection machine learning (ML) algorithms against the established statistical frameworks for differential protein detection from proteomic data sets. Using in silico simulated data sets derived from experimental data, we enabled cross-algorithm comparability through a probability based transformation. Results demonstrated that ML methods, particularly the Minimum Covariance Determinant (MCD), outperformed statistical test in recall, precision, and accuracy, with superior robustness to intersample heterogeneity. Validation on real-world proteomic data further confirmed that the MCD-identified differentially expressed proteins comprehensively covered canonical pathways while uncovering novel tumor-associated functional biomolecules. This work establishes unsupervised ML methods as robust alternatives to traditional hypothesis-driven statistical approaches in proteomics differential analysis, offering enhanced reliability for precision medicine research.",article,0,,,"Xu, Guanyang;Wu, Enhui;Lin, Yuxiang;Lin, Ling;Qiao, Liang",,,,,,,Analytical Chemistry,22540,,SCOPUS,"Xu Guanyang, 2025, Analytical Chemistry",,"Xu Guanyang, 2025, Analytical Chemistry"
+2025,20,https://app.dimensions.ai/details/publication/pub.1193719041,Construction and application of machine learning models for predicting intradialytic hypotension,e0333357,10,,PLOS One,10.1371/journal.pone.0333357,2025-10-08,"Wang, Pingping;Xu, Ningjie;Wu, Lingping;Hong, Yue;Qu, Yihui;Ren, Zhijian;Luo, Qun;Cai, Kedan","INTRODUCTION: Intradialytic hypotension (IDH) remains a prevalent complication of hemodialysis, which is associated with adverse outcomes for patients. This study seeks to harness machine learning to construct predictive models for IDH based on multiple definitions.
+METHODS: In this study, a comprehensive approach was employed, leveraging a dataset comprising 26,690 hemodialysis (HD) sessions for training and testing cohort, with an additional 12,293 HD sessions serving as a temporal validation cohort. Five definitions of IDH were employed, and models for each IDH definition were constructed using ten machine learning algorithms. Subsequently, model interpretation was facilitated. Feature simplification ensued, leading to the creation and evaluation of a streamlined machine learning model. Both the most effective machine learning model and its simplified counterpart underwent temporal validation.
+RESULTS: Across the five distinct definitions of IDH, the CatBoost model demonstrated superior predictive prowess, generally yielding the highest receiver operating characteristic - area under the curve (ROC-AUC) (Definition 1-5: 0.859, 0.864, 0.880, 0.848, 0.845). Noteworthy is the persistent inclusion of certain features within the top 20 across all definitions, including left ventricular mass index (LVMI), etc. Leveraging these features, we developed robust machine learning models that exhibited good performance (ROC-AUC for Definition 1-5: 0.866, 0.858, 0.874, 0.843, 0.838). Both the leading original machine learning model and the refined simplified machine learning model demonstrated robust performance on a temporal validation set.
+CONCLUSION: Machine learning emerged as a reliable tool for predicting IDH in HD patients. Notably, LVMI emerged as a crucial feature for effectively predicting IDH. The simplified models are accessible on the provided website.",article,0,,,"Wang, Pingping;Xu, Ningjie;Wu, Lingping;Hong, Yue;Qu, Yihui;Ren, Zhijian;Luo, Qun;Cai, Kedan",,,,,,,PLOS One,,,SCOPUS,"Wang Pingping, 2025, PLOS One",,"Wang Pingping, 2025, PLOS One"
+2025,15,https://app.dimensions.ai/details/publication/pub.1193813530,"Genomic Selection for Cashmere Traits in Inner Mongolian Cashmere Goats Using Random Forest, Gradient Boosting Decision Tree, Extreme Gradient Boosting and Light Gradient Boosting Machine Methods",2940,20,,Animals,10.3390/ani15202940,2025-10-10,"Liu, Jiaqi;Yan, Xiaochun;Li, Wenze;Xue, Shan-Hui;Wang, Zhiying;Su, Rui","In recent years, Machine Learning (ML) has garnered increasing attention for its applications in genomic prediction. ML effectively processes high-dimensional genomic data and establishes nonlinear models. Compared to traditional Genomic Selection (GS) methods, ML algorithms enhance computational efficiency and offer higher prediction accuracy. Therefore, this study strives to achieve the optimal machine learning algorithm for genome-wide selection of cashmere traits in Inner Mongolian cashmere goats. This study compared the genomic prediction accuracy of cashmere traits using four machine learning algorithms-Random Forest (RF), Extreme Gradient Boosting Tree (XGBoost), Gradient Boosting Decision Tree (GBDT), and LightGBM-based on genotype data and cashmere trait phenotypic data from 2299 Inner Mongolian cashmere goats. The results showed that after parameter optimization, LightGBM achieved the highest selection accuracy for fiber length (56.4%), RF achieved the highest selection accuracy for cashmere production (35.2%), and GBDT achieved the highest selection accuracy for cashmere diameter (40.4%), compared with GBLUP, the accuracy improved by 0.8-2.7%. Among the three traits, XGBoost exhibited the lowest prediction accuracy, at 0.541, 0.309, and 0.387. Additionally, following parameter optimization, the prediction accuracy of the four machine learning methods for cashmere fineness, cashmere yield, and fiber length improved by an average of 2.9%, 2.7%, and 3.8%, respectively. The mean squared error (MSE) and mean absolute error (MAE) for all machine learning methods also decreased, indicating that hyperparameter tuning can enhance prediction accuracy in ML algorithms.",article,0,,,"Liu, Jiaqi;Yan, Xiaochun;Li, Wenze;Xue, Shan-Hui;Wang, Zhiying;Su, Rui",,,,,,,Animals,,,SCOPUS,"Liu Jiaqi, 2025, Animals",,"Liu Jiaqi, 2025, Animals"
+2025,25,https://app.dimensions.ai/details/publication/pub.1193894859,"Statistical and machine-learning assessment of attitudinal, knowledge, and perceptual factors on diabetes awareness in Kuwait",379,1,,BMC Medical Informatics and Decision Making,10.1186/s12911-025-03212-3,2025-10-14,"Al-Sultan, Ahmad T.;Alsaber, Ahmad;Pan, Jiazhu;Al Kandari, Anwaar;Alawadhi, Balqees;Al-Kenane, Khalida;Al-Shamali, Sarah","ObjectivesThe primary objective was to identify and analyze the factors that impact diabetes awareness and perception among diabetic and non-diabetic participants. The study also sought to assess the effectiveness of current health awareness programs and identify gaps in public knowledge about diabetes.BackgroundDiabetes poses a significant global health challenge, with increasing prevalence worldwide. Comprehending the behavioral and demographic factors leading to diabetes is important for personalized interventions and prevention strategies in Kuwait.MethodologyThis study was cross-sectional in nature and employed a quantitative approach. It involved distributing a structured questionnaire to a sample of N = 1268 participants in Kuwait, 391 of them were diabetic and 877 were non-diabetic. The sample was stratified based on age, gender, administrative division and nationality. The study employed machine learning and statistical analyses to examine the nature of the relationship between diabetes awareness and the demographic factors. The study executed a random forest approach before employing a logistic regression model to determine the most significant features influencing diabetes. This involved prioritizing variables based on their importance metrics like a mean dropout loss and mean decrease in accuracy, this ensures that the most important predictors are included in the logistic regression model, facilitating a more concentrated and comprehensible examination of the factors affecting diabetes.ResultsThe output shown above describes the results for the logistics regression model indicating the different variables that are significant predictors for diabetes among the participants. From the odds ratio it was observed that age was a significant predictor and people above 60 years of age were 11.47 times more likely to have diabetes compared to the 18–30 age group. For those aged 46–60 the likelihood of having diabetes compared to the 18–30 age group was 5.79 times. Similarly, gender was a significant predictor and males were 2.27 times likely to have diabetes than females. Those who frequently interacted with medical staff were also at higher risk (odds of 1.41), likewise, individuals who had kidney complications were also at higher risk of getting diabetes (odds of 1.60). On the contrast, being overweight decreased the odds of getting diabetic (odds ratio of 0.55), likewise, having pregnancy related diabetes decreased the likelihood of being diabetic (odds ratio of 0.65). From these results, it can be seen that age, gender and certain health complications while interacting with the dependent variable need to be considered while assessing the risk of getting diabetes.ConclusionThe current study reveals that gender, age groups, kidney disorders and healthcare provider interactions among others, are significantly associated with the awareness and attitude towards diabetes among the Kuwaiti population. On one hand, males and older age groups found to be at higher risk whereas, obesity and pregnancy related diabetes seemed to have a protective effect. The current study findings emphasize the importance of designing specific public health policy and education programs that takes into account the demographic factors to enhance effective diabetes management and prevention strategies. These study findings offer policy knowledge that can assist policymakers to plan and implement more robust health policies that address specific population subgroup needs and challenges.",article,0,,,"Al-Sultan, Ahmad T.;Alsaber, Ahmad;Pan, Jiazhu;Al Kandari, Anwaar;Alawadhi, Balqees;Al-Kenane, Khalida;Al-Shamali, Sarah",,,,,,,BMC Medical Informatics and Decision Making,,,SCOPUS,"Al-Sultan Ahmad T., 2025, BMC Medical Informatics and Decision Making",,"Al-Sultan Ahmad T., 2025, BMC Medical Informatics and Decision Making"
+2025,18,https://app.dimensions.ai/details/publication/pub.1194108600,Use of artificial intelligence in diagnosis and prognosis of traumatic brain injury: a scoping review,212,1,,International Journal of Emergency Medicine,10.1186/s12245-025-01017-9,2025-10-20,"May, Cecily;Gould, Murdoc;Natesan, Sreeja","Traumatic Brain Injury (TBI) has been increasingly recognized as a leading cause of death and disability worldwide.ObjectiveTo summarize clinical applications of artificial intelligence, including machine learning and deep learning, in the diagnosis and prognosis of traumatic brain injury.MethodsThe authors conducted a scoping review of original clinical research studies on humans published in English after January 1, 2014. A search was performed using PubMed, including PMC, MEDLINE, and Bookshelf. The search terms were applied to the title field and included: (TBI) AND (Artificial Intelligence OR Machine Learning OR Deep Learning). Studies meeting inclusion criteria were screened and selected for review. The reference lists of the included studies were also screened to identify any additional eligible articles.ResultsOf 493 studies identified, seven met the inclusion criteria and were included in the analysis, which summarizes study title, publication year, study objective, key findings, and conclusions.ConclusionArtificial intelligence shows promise in aiding diagnosis and improving prognostic insights in traumatic brain injury. Although few clinical trials have been conducted, early results are encouraging. Future progress will require more clinical studies and efforts to address the current limitations of AI tools in medicine.",article,0,,,"May, Cecily;Gould, Murdoc;Natesan, Sreeja",,,,,,,International Journal of Emergency Medicine,,,SCOPUS,"May Cecily, 2025, International Journal of Emergency Medicine",,"May Cecily, 2025, International Journal of Emergency Medicine"
+2025,15,https://app.dimensions.ai/details/publication/pub.1194110295,Development of a prediction model for student teaching satisfaction based on 10 machine learning algorithms,36547,1,,Scientific Reports,10.1038/s41598-025-19039-x,2025-10-21,"Zhan, Zhonghua;Shen, Tongping","Educational data mining has become an effective tool for exploring the hidden relationships in educational data and predicting students’ academic performance. Educational evaluation is an important part of the teaching process, and the traditional evaluation methods have problems such as high subjectivity and low efficiency. The advancement of machine learning technology has led to an increasing interest in data-driven methods for evaluating student teaching. This study utilizes a dataset pertaining to student evaluations from Turkey to apply and compare ten machine learning algorithms, namely Random Forest (RF), Gradient Boosting Machine (GBM), Naive Bayes (NB), K-Nearest Neighbors (KNN), Neural Networks Algorithm (Nnet), Flexible Discriminant Analysis (FDA), Support Vector Machine (SVM), Classification and Regression Trees (CART), Sparse Linear Discriminant Analysis (SLDA), and AdaBoost (ADA), in predicting student satisfaction ratings. The findings indicate that the SVM algorithm yielded the most favorable results, with performance metrics including Accuracy, Sensitivity, Specificity, Positive Predictive Value (PPV), Negative Predictive Value (NPV), Precision, Recall, F1 Score and Standard Error (SE) recorded at 0.9765, 0.9887, 0.9789, 0.9891, 0.9789, 0.9765, 0.9777, and 0.0042, respectively. Furthermore, the SVM model’s predictive outcomes were elucidated by applying the SHAP (SHapley Additive exPlanations) framework. Finally, we developed the Shiny application for online prediction of learning effect satisfaction, which can provide educators with a scientific basis for evaluation and technical support for personalized teaching and curriculum optimization.",article,0,,,"Zhan, Zhonghua;Shen, Tongping",,,,,,,Scientific Reports,,,SCOPUS,"Zhan Zhonghua, 2025, Scientific Reports",,"Zhan Zhonghua, 2025, Scientific Reports"
+2025,36,https://app.dimensions.ai/details/publication/pub.1194112230,"Demystifying machine learning in endourology – understanding models, applications, and clinical impact: a review from EAU endourology",66,1,,Current Opinion in Urology,10.1097/mou.0000000000001348,2025-09-24,"Ghnatios, Chady;Attieh, Rose Mary;Panthier, Frederic","PURPOSE OF REVIEW: Machine learning algorithms are occupying a larger space in medical and urology applications. However, typical medical physicians are not trained on these technologies and do not master the possibilities offered by these tools, to imagine their applications in the medical field. This manuscript is indented to be a guide in the use of machine learning in different urology applications, and to demystify the available machine learning and artificial intelligence algorithms. This manuscript reviews some of their applications and potential applications to the medical and urology field.
+RECENT FINDINGS: Multiple works are published on the use of machine learning in urology, with performance demonstrated to be noninferior to human experts on multiple occasions. However, the major part of the machine learning publications in urology applications are concentrated on diagnosis and/or prognosis. Advanced machine learning algorithms based on agentic artificial intelligence, able to perform decisions and causality-based treatment optimization, are rarely put to use in urology. The democratization of advanced machine learning technologies in the medical fields can accelerate the adoption of these techniques, and potentially improve the patient care through relevant suggestive decision making.
+SUMMARY: This work aims to demystify the machine learning tools for medical applications, facilitate decision making and adoption of the correct tools for the correct applications, and places a roadmap for the future of machine learning in the enhancement of patient care in urology.",article,0,,,"Ghnatios, Chady;Attieh, Rose Mary;Panthier, Frederic",,,,,,,Current Opinion in Urology,71,,SCOPUS,"Ghnatios Chady, 2025, Current Opinion in Urology",,"Ghnatios Chady, 2025, Current Opinion in Urology"
+2025,26,https://app.dimensions.ai/details/publication/pub.1194129674,Big data dimensionality reduction-based supervised machine learning algorithms for NASH diagnosis,256,1,,BMC Bioinformatics,10.1186/s12859-025-06263-5,2025-10-21,"Tutsoy, Onder;Ozturk, Huseyin Ali;Sumbul, Hilmi Erdem","BackgroundIdentifying the Non-Alcoholic Steatohepatitis (NASH) that can cause liver failure-based morbidity remains a challenging research problem since there is no confirmed and effective approach for its early and accurate diagnosis yet. A large amount of medical data is collected to diagnose the NASH where the majority of them are redundant.MethodsThis paper initially focuses on selecting the most informative blood test data among the collected big data with the Pearson correlation statistical approach and modified Particle Swarm Optimization with Artificial Neural Networks (PSO-ANN) machine learning algorithm. Then, a gradient based Batch Least Squares (BLS) and a search-based Artificial Bee Colony (ABC) machine learning algorithms are implemented to optimize the NASH prediction models. Confirmed operational NASH diagnosis supervise the statistical and machine learning algorithms to develop accurate prediction models.ResultsTwo machine learning algorithms were trained and also validated with the varying number of selected input features. The results yielded that the trained BLS machine learning model is able to diagnose benign and malignant cases with 100% and 98% accuracies, respectively. The trained ABC machine learning algorithm diagnoses the benign and malignant cases with 90.5% and 94.3% accuracies, respectively.",article,0,,,"Tutsoy, Onder;Ozturk, Huseyin Ali;Sumbul, Hilmi Erdem",,,,,,,BMC Bioinformatics,,,SCOPUS,"Tutsoy Onder, 2025, BMC Bioinformatics",,"Tutsoy Onder, 2025, BMC Bioinformatics"
+2025,57,https://app.dimensions.ai/details/publication/pub.1194151003,Interpretability of automated machine learning methods in psychological research: A tutorial with AutoGluon in Python,315,11,,Behavior Research Methods,10.3758/s13428-025-02859-0,2025-10-21,"Fu, Haojie;Zhao, Xudong","Integrating artificial intelligence into psychological research represents a significant direction in contemporary psychology. Utilizing supervised and unsupervised machine learning techniques can further aid in understanding the nonlinear relationships of psychological concepts. In machine learning, variables, referred to as features, can encompass data from psychological scales, text, audio, and images. Current psychological research predominantly relies on frequentist approaches, where relationships between variables are typically based on regression, which often falls short in handling the nonlinear relationships of psychological characteristics. Therefore, we outline an innovative semi-automated workflow that empowers psychology researchers to leverage machine learning algorithms for intelligent model selection, facilitating the construction of more precise and insightful theoretical frameworks. This approach aims to achieve three primary research objectives: (1) automated hyperparameter tuning to attain optimal models; (2) identification of important features through interpretability techniques, facilitating feature selection based on calculated importance; (3) data-driven insights for theory building based on important features by integrating exploratory factor analysis with machine learning interpretability. In this paper, we provide an introduction to the basics of machine learning, describe the benefits of combining automated machine learning for researchers, and, using psychological resilience research as an example, offer a detailed annotated code workflow along with raw data. This low-code approach, designed with psychological research methodologies in mind, makes it highly accessible for psychological researchers.",article,0,,,"Fu, Haojie;Zhao, Xudong",,,,,,,Behavior Research Methods,,,SCOPUS,"Fu Haojie, 2025, Behavior Research Methods",,"Fu Haojie, 2025, Behavior Research Methods"
+2025,13,https://app.dimensions.ai/details/publication/pub.1194177800,HusMorph: a simple machine learning app for automated morphometric landmarking,coaf073,1,,Conservation Physiology,10.1093/conphys/coaf073,2025-01-01,"Kristiansen, Henning H;Metz, Moa;Silva-Garay, Lorena;Jutfelt, Fredrik;Leeuwis, Robine H J","Manually obtaining the length and other morphometric features of an animal can be time-consuming, and consistent measurements are challenging with large datasets. By leveraging high-throughput computing power and machine learning-based computer vision, such phenotypic data can be rapidly collected with high accuracy. Here we present HusMorph, a novel application with a simple and intuitive graphical user interface (GUI), based on the same machine learning method used in other pipelines such as ML-morph. It consists of an all-in-one package with the goal of making machine learning easy to use for non-experts. The user starts by setting any number of landmarks on a set of photos captured with a standardized setup. From this set, a machine learning model is generated by automatically and randomly searching for the best performing parameters. Next, the user can apply the model to predict landmarks on new standardized photos and visually confirm and export the results of the predictions. For measuring length between landmarks, an additional feature allows for detecting a scale bar for each photo to convert the length from pixels to a metric unit. Our application has been validated and applied to extract standard length from 1935 photos of zebrafish and performs with ~99.5% accuracy compared to manual measurements.",article,0,,,"Kristiansen, Henning H;Metz, Moa;Silva-Garay, Lorena;Jutfelt, Fredrik;Leeuwis, Robine H J",,,,,,,Conservation Physiology,,,SCOPUS,"Kristiansen Henning H, 2025, Conservation Physiology",,"Kristiansen Henning H, 2025, Conservation Physiology"
+2025,19,https://app.dimensions.ai/details/publication/pub.1194187894,Advancements in the application of multimodal monitoring and machine learning for the development of personalized therapeutic strategies in traumatic brain injury,1695336,,,Frontiers in Human Neuroscience,10.3389/fnhum.2025.1695336,2025-10-23,"Wei, Zhijing;Meng, Lingda;Chong, Wei","Trauma is the fourth leading cause of death globally and the primary cause of mortality in the 15-45 age group, with traumatic brain injury (TBI) at the core of trauma care. Annually, over 50 million TBI patients are reported worldwide. The complex and heterogeneous pathophysiology of TBI presents substantial diagnostic and therapeutic challenges. In recent years, multimodal monitoring has emerged as a crucial tool to guide clinical management. The integration of multimodal monitoring with machine learning offers novel opportunities for TBI assessment and management, given the rapid development and widespread application of machine learning approaches. Therapeutic hypothermia has shown potential neuroprotective benefits in experimental and clinical contexts, though evidence remains mixed and its implementation in practice faces significant challenges. This review summarizes recent advancements in multimodal monitoring and explores how machine learning can optimize the application of therapeutic hypothermia in conjunction with multimodal data. For example, predictive models trained on multimodal signals (e.g., EEG, ICP, cerebral blood flow, and oxygenation) can help identify patient subgroups most likely to benefit from targeted temperature management. By enabling such stratification and adaptive treatment strategies, machine learning may support the development of more personalized and effective therapeutic approaches for TBI.",article,0,,,"Wei, Zhijing;Meng, Lingda;Chong, Wei",,,,,,,Frontiers in Human Neuroscience,,,SCOPUS,"Wei Zhijing, 2025, Frontiers in Human Neuroscience",,"Wei Zhijing, 2025, Frontiers in Human Neuroscience"
+2025,25,https://app.dimensions.ai/details/publication/pub.1194259498,Human–Machine Collaborative Learning for Streaming Data-Driven Scenarios,6505,21,,Sensors,10.3390/s25216505,2025-10-22,"Yang, Fan;Zhang, Xiaojuan;Yu, Zhiwen","Deep learning has been broadly applied in many fields and has greatly improved efficiency compared to traditional approaches. However, it cannot resolve issues well when there are a lack of training samples, or in some varying cases, it cannot give a clear output. Human beings and machines that work in a collaborative and equal mode to address complicated streaming data-driven tasks can achieve higher accuracy and clearer explanations. A novel framework is proposed which integrates human intelligence and machine intelligent computing, taking advantage of both strengths to work out complex tasks. Human beings are responsible for the highly decisive aspects of the task and provide empirical feedback to the model, whereas the machines undertake the repetitive computing aspects of the task. The framework will be executed in a flexible way through interactive human-machine cooperation mode, while it will be more robust for some hard samples recognition. We tested the framework using video anomaly detection, person re-identification, and sound event detection application scenarios, and we found that the human-machine collaborative learning mechanism obtained much better accuracy. After fusing human knowledge with deep learning processing, the final decision making is confirmed. In addition, we conducted abundant experiments to verify the effectiveness of the framework and obtained the competitive performance at the cost of a small amount of human intervention. The approach is a new form of machine learning, especially in dynamic and untrustworthy conditions.",article,0,,,"Yang, Fan;Zhang, Xiaojuan;Yu, Zhiwen",,,,,,,Sensors,,,SCOPUS,"Yang Fan, 2025, Sensors",,"Yang Fan, 2025, Sensors"
+2025,83,https://app.dimensions.ai/details/publication/pub.1194355312,The use of machine learning in predicting clinical outcomes in emergency pre-examination triage: A systematic review of the literature,101705,,,International Emergency Nursing,10.1016/j.ienj.2025.101705,2025-10-28,"Jiang, Yao;Zhao, Jing;Juan, Hu","OBJECTIVE: To investigate the application status of machine learning model in the prediction of clinical outcomes in emergency pre-examination and triage, and to analyze its characteristics, advantages and disadvantages, so as to add an objective tool for medical staff to predict the clinical outcome of patients in the process of pre-examination and triage.
+METHODS: The literature review method was used to search PubMed, Web of Science, Embase, Cochrane Library, China Biomedical Literature Database, CNKI, Wanfang, VIP and other databases, and the literature that met the inclusion criteria was screened and the specific information of the machine learning model in the literature was extracted.
+RESULTS: A total of 12 articles that met the criteria were included, including 5 machine learning models, which were mainly used in clinical outcomes such as hospital admission, death, intensive care unit admission, hospital transfer, and home.
+CONCLUSION: The overall sensitivity of the machine learning model is high, but there are few literature studies on the prediction of clinical outcomes for pre-test triage, so relevant large-sample studies should be carried out in clinical practice to achieve the combination of subjective and objective evaluation tools to improve the accuracy of prediction and ensure patient safety.",article,0,,,"Jiang, Yao;Zhao, Jing;Juan, Hu",,,,,,,International Emergency Nursing,,,SCOPUS,"Jiang Yao, 2025, International Emergency Nursing",,"Jiang Yao, 2025, International Emergency Nursing"
+2025,12,https://app.dimensions.ai/details/publication/pub.1194491530,Comparative study of coronary artery disease prediction: conventional QRISK3 versus enhanced machine learning models combined with particle swarm optimisation algorithm,e003422,2,,Open Heart,10.1136/openhrt-2025-003422,2025-07,"Harmadha, Wigaviola Socha Purnamaasri;Wang, Dennis;Masood, Mohsin","BACKGROUND: Coronary artery disease (CAD) is one of the biggest causes of mortality worldwide. Risk stratification for early detection is essential for the primary prevention of CAD. QRISK3 is known to overestimate future CAD risk in some populations, resulting in unnecessary preventive treatment that reduces the cost-effectiveness and safety. Combining machine learning with a metaheuristic optimisation approach using the Particle Swarm Optimization algorithm may outperform QRISK3 in predicting CAD. It may improve performance by selecting the best-performing subset of features related to clinical outcomes.
+METHODS: This study uses the UK Biobank dataset consisting of 348 015 participants aged 24-84 years with no prior diagnosis of CAD. The performance of both QRISK3 and machine learning models was evaluated separately using receiver operating characteristic analysis. Several machine learning models were assessed: Logistic Regression, Decision Tree, Random Forest, Naïve Bayes and Gradient Boosting. The dataset was split into training and test sets with a ratio of 4:1 for the machine learning models. Each model has been developed by adding a Particle Swarm Optimization algorithm to enhance the model's classification accuracy.
+RESULTS: Out of 348 015 participants, 23 136 individuals (6.64%) were diagnosed with CAD within 10 years following their first visit, while 324 879 individuals (93.4%) did not develop CAD. The area under the curve (AUC) value of the QRISK3 prediction was 0.6113, while the gradient boosting model using Particle Swarm Optimization achieved a better performance AUC of 0.7258.
+CONCLUSIONS: This study shows hybrid machine learning models optimised with the Particle Swarm Optimization algorithm can better predict CAD than QRISK3. The application of such machine learning models can effectively identify high-risk CAD patients, allowing for more personalised preventative strategies and supporting policymakers in implementing lifestyle change recommendations.",article,0,,,"Harmadha, Wigaviola Socha Purnamaasri;Wang, Dennis;Masood, Mohsin",,,,,,,Open Heart,,,SCOPUS,"Harmadha Wigaviola Socha Purnamaasri, 2025, Open Heart",,"Harmadha Wigaviola Socha Purnamaasri, 2025, Open Heart"
+2025,15,https://app.dimensions.ai/details/publication/pub.1194749960,Machine Learning Models for Point-of-Care Diagnostics of Acute Kidney Injury,2801,21,,Diagnostics,10.3390/diagnostics15212801,2025-11-05,"Chen, Chun-You;Chang, Te-I;Chen, Cheng-Hsien;Hsu, Shih-Chang;Chu, Yen-Ling;Huang, Nai-Jen;Sue, Yuh-Mou;Chen, Tso-Hsiao;Lin, Feng-Yen;Shih, Chun-Ming;Huang, Po-Hsun;Hsieh, Hui-Ling;Liu, Chung-Te","Background/Objectives: Computerized diagnostic algorithms could achieve early detection of acute kidney injury (AKI) only with available baseline serum creatinine (SCr). To tackle this weakness, we tried to construct a machine learning model for AKI diagnosis based on point-of-care clinical features regardless of baseline SCr. Methods: Patients with SCr > 1.3 mg/dL were recruited retrospectively from Wan Fang Hospital, Taipei. A Dataset A (n = 2846) was used as the training dataset and a Dataset B (n = 1331) was used as the testing dataset. Point-of-care features, including laboratory data and physical readings, were inputted into machine learning models. The repeated machine learning models randomly used 70% and 30% of Dataset A as training dataset and testing dataset for 1000 rounds, respectively. The single machine learning models used Dataset A as training dataset and Dataset B as testing dataset. A computerized algorithm for AKI diagnosis based on 1.5× increase in SCr and clinician's AKI diagnosis compared to machine learning models. Results: On an independent, unbalanced test set (n = 1331), our machine learning models achieved AUROC values ranging from 0.67 to 0.74. A pre-existing computerized algorithm performed best (AUROC = 0.94). Crucially, all machine learning models significantly outperformed the routine clinician's diagnosis (AUROC ~0.74 vs. 0.53, p < 0.05). For context, a pre-existing computerized algorithm, which requires available baseline SCr data, achieved an AUROC of 0.94 on a relevant subset of the data, highlighting the performance benchmark when baseline data is available. Formal statistical comparisons revealed that the top-performing models (e.g., Random Forest, SVM) were often statistically indistinguishable. Model performance was highly dependent on the test scenario, with precision and F1 scores improving markedly on a balanced dataset. Conclusions: In the absence of baseline SCr, machine learning models can diagnose AKI with significantly greater accuracy than routine clinical diagnoses. Our robust statistical analysis suggests that several advanced algorithms achieve a similarly high level of performance.",article,0,,,"Chen, Chun-You;Chang, Te-I;Chen, Cheng-Hsien;Hsu, Shih-Chang;Chu, Yen-Ling;Huang, Nai-Jen;Sue, Yuh-Mou;Chen, Tso-Hsiao;Lin, Feng-Yen;Shih, Chun-Ming;Huang, Po-Hsun;Hsieh, Hui-Ling;Liu, Chung-Te",,,,,,,Diagnostics,,,SCOPUS,"Chen Chun-You, 2025, Diagnostics",,"Chen Chun-You, 2025, Diagnostics"
+2025,32,https://app.dimensions.ai/details/publication/pub.1194872138,Artificial intelligence in chronic obstructive pulmonary disease: recent advances in imaging and physiological monitoring,136,2,,Current Opinion in Pulmonary Medicine,10.1097/mcp.0000000000001228,2025-11-07,"Zhou, Christine Y.;Restko, Matthew;Freije, Benjamin;Burkes, Robert M.","PURPOSE OF REVIEW: Chronic obstructive pulmonary disease (COPD) is a leading cause of worldwide morbidity and mortality, yet significant barriers in its diagnosis and management persist. Artificial intelligence is rapidly emerging as a powerful tool to address these challenges. This review summarizes recent trends in its application to advance the care of patients with COPD, focusing on imaging and physiologic parameters.
+RECENT FINDINGS: Recent literature demonstrates significant progress in artificial intelligence enhanced imaging, with deep learning models applied to chest radiographs and computed tomography showing high accuracy in detecting COPD, quantifying disease features, and predicting clinical outcomes including exacerbations and mortality. Machine learning algorithms are improving the interpretation of pulmonary function tests and leveraging novel data streams from cough sounds and wearable smart devices for noninvasive diagnosis, severity assessment, and the prediction of acute exacerbations.
+SUMMARY: While artificial intelligence holds immense potential to shift COPD care toward a more proactive and personalized model, most applications remain in early developmental stages, with critical challenges including the need for rigorous clinical validation, addressing algorithmic bias, and establishing standardized evaluation metrics.",article,0,,,"Zhou, Christine Y.;Restko, Matthew;Freije, Benjamin;Burkes, Robert M.",,,,,,,Current Opinion in Pulmonary Medicine,141,,SCOPUS,"Zhou Christine Y., 2025, Current Opinion in Pulmonary Medicine",,"Zhou Christine Y., 2025, Current Opinion in Pulmonary Medicine"
+2025,171,https://app.dimensions.ai/details/publication/pub.1194962945,Automated Machine Learning in medical research: A systematic literature mapping study,103302,Information 15 2024,,Artificial Intelligence in Medicine,10.1016/j.artmed.2025.103302,2025-11-17,"Castro, Giovanna A;Barioto, Luiza G;Cao, Yu H;Silva, Renato M;Caseli, Helena M;Machado-Neto, João A;Cerri, Ricardo;Villavicencio, Aline;Almeida, Tiago A","Machine Learning (ML) techniques have become valuable tools in healthcare for tasks such as disease diagnosis, treatment planning, and clinical decision-making. However, their application often requires specialized expertise and considerable development time. Automated Machine Learning (AutoML) has emerged to address these challenges by automating key steps of the ML pipeline, thereby enhancing the efficiency and accessibility of ML integration into clinical workflows. This paper presents a systematic literature mapping following a structured protocol across multiple academic databases. A total of 244 studies published between 2016 and 2025 were analyzed from 171 distinct sources. Most studies employed AutoML for diagnosis prediction (52.8%) and prognosis prediction (31.9%), primarily using tabular (43.4%) and image (31.5%) data. Classification tasks dominated (81.1%), followed by regression tasks (9.4%). Model selection emerged as the primary challenge (25.3%) among the studies not utilizing managed AutoML tools, while data preprocessing remained critical (13.7%) even when using managed services. Although Explainable AI (XAI) was incorporated in only 30.7% of the studies, its adoption showed a notable increase in 2024. These findings indicate that while the application of AutoML in medicine is growing, its black-box nature continues to limit its adoption in interpretability-critical domains. The integration of XAI techniques with AutoML is an emerging trend that seeks to address this limitation. However, further research is necessary to evaluate the clinical impact of these combined approaches and to enhance trust in AutoML-driven decision support systems.",article,0,,,"Castro, Giovanna A;Barioto, Luiza G;Cao, Yu H;Silva, Renato M;Caseli, Helena M;Machado-Neto, João A;Cerri, Ricardo;Villavicencio, Aline;Almeida, Tiago A",,,,,,,Artificial Intelligence in Medicine,,,SCOPUS,"Castro Giovanna A, 2025, Artificial Intelligence in Medicine",,"Castro Giovanna A, 2025, Artificial Intelligence in Medicine"
+2025,469,https://app.dimensions.ai/details/publication/pub.1195005382,Towards precision medicine for otology and neurotology: Machine learning applications and challenges,109473,,,Hearing Research,10.1016/j.heares.2025.109473,2025-11-13,"Adcock, Katherine;Arulchelvan, Elva;Shields, Nathan;Vanneste, Sven","Advances in artificial intelligence, particularly machine learning and deep learning, in conjunction with the rise of personalised medicine, can facilitate tailored decision-making for diagnoses, prognoses, and treatment responses based on individual patient data. The multifaceted nature of symptoms and disorders in (neuro)otology, with their diverse aetiologies and subjective characteristics, makes this field an ideal candidate for computational personalised medicine. This narrative review critically synthesises applications of machine learning and deep learning in otology and neurotology published between 2013 and 2025. Relevant studies were identified through targeted searches of PubMed, Scopus, and Google Scholar using combinations of terms related to artificial intelligence, tinnitus, cochlear implants, and otologic or neurotologic disorders. Only peer-reviewed articles focusing on human applications of machine learning or deep learning in these fields were included, excluding theoretical papers or animal studies. Recent breakthroughs, such as the Whisper speech recognition model for cochlear implant simulations and large language models for refining tinnitus subgroup identification and therapy predictions, underscore the transformative potential of AI in improving clinical outcomes. This review is distinct in its emphasis on these emerging technologies and their integration into multimodal datasets, combining imaging, audiometric data, and patient-reported outcomes to refine diagnosis and treatment approaches. However, challenges including the lack of standardisation, limited generalisability of models, and the need for improved frameworks for multimodal data integration impede rigorous and reproducible implementation, topics that are critically explored in this review. Here, we explore the applications of machine learning, deep learning, and large language models in tinnitus, cochlear implants, and (neuro)tology, providing a critical analysis of recent advancements, persistent challenges, and recommendations for future research. By addressing these challenges and implementing recommended strategies, this review outlines a pathway for integrating cutting-edge artificial intelligence tools into clinical practice, underscoring their immense potential to revolutionise precision medicine in otology and neurotology and improve patient outcomes.",article,0,,,"Adcock, Katherine;Arulchelvan, Elva;Shields, Nathan;Vanneste, Sven",,,,,,,Hearing Research,,,SCOPUS,"Adcock Katherine, 2025, Hearing Research",,"Adcock Katherine, 2025, Hearing Research"
+2025,,https://app.dimensions.ai/details/publication/pub.1195115616,The Evolution of Machine Learning Algorithms and Their Contribution to Physical Activity Management,275,,,,10.1007/978-3-032-03394-9_27,2025-11-19,"Messas, Konstantinos;Exarchos, Themis","The evolution of society has redefined people’s needs and expanded the possibilities available through technology to manage daily activities, including physical activity. The purpose of this research was to study the extent to which machine learning algorithms can contribute to the personalized suggestion of physical activity programs and the prediction of specific fitness goals. It is recognized that people’s daily lives are characterized by complex situations, such as the high prevalence of sedentary lifestyles, the methods of transport used in daily activities, attitudes toward physical activity, and more. Gaps in the literature focus on the lack of individualized recommendations for physical activity. It is further concluded that machine learning algorithms can model data governed by dynamic relationships, such as human behavior. The literature review shows that some machine learning algorithm models demonstrate high prediction accuracy, and that the choice of the appropriate algorithm is guided by the features given to the model.",inbook,0,,GeNeDIS 2024,"Messas, Konstantinos;Exarchos, Themis",,,,,,,,281,,SCOPUS,"Messas Konstantinos, 2025, ",,"Messas Konstantinos, 2025, "
+2025,15,https://app.dimensions.ai/details/publication/pub.1195230003,Comparison of machine learning models for mapping Arecanut based agroforestry system in Goa by enhancing precision and efficiency,44280,1,,Scientific Reports,10.1038/s41598-025-27845-6,2025-11-21,"Uthappa, A. R.;Das, Bappa;Chavan, S. B.;Raizada, Anurag;Desai, Sujeet;Paramesha, V.;Kumar, Parveen;Jha, Prakash Kumar;Prasad, P. V. Vara","Agroforestry plays a pivotal role in mitigating climate change and supporting rural livelihoods. Especially in coastal regions, it aids soil conservation, provides biophysical protection, and diversifies income sources. Through conventional approaches, mapping the arecanut-based agroforests is difficult. This study utilised machine learning models to identify arecanut based traditional agroforestry systems using Sentinel-2 satellite data in Goa, India. A total of 374 non-agroforestry and 70 agroforestry locations were collected for model training and testing. Random Forest (RF), Support Vector Machine (SVM), and Gradient Boosting Machine (GBM) were employed. The Boruta algorithm was applied for feature selection and to improve the model accuracy. The findings showed that the GBM model had significantly higher overall accuracy (0.86) and kappa (0.83) scores than other models during validation. The Boruta analysis revealed NDWI2, B3, and SLAVI as important variables indicating the importance of water indices and vegetation parameters in mapping agroforestry. The GBM model achieved high accuracy in identifying arecanut based agroforestry region amounting to 58.64 km2 followed by the RF with 53.36 km2 and the SVM with 23.21 km2. Using the average of three models, the estimated area under arecanut based agroforestry in Goa was 45.1 km2. The area of applicability (AOA) analysis based on GBM revealed that 97.32% of the total geographic area of Goa was inside AOA indicating better distribution of collected ground truth data. This paper demonstrated efficiency of machine learning algorithms for accurate mapping of agroforestry systems to support land use planning, resource conservation and management in coastal environments. Subsequent studies utilizing hyperspectral sensors can improve the efficiency of machine learning-based agroforestry mapping methods.",article,0,,,"Uthappa, A. R.;Das, Bappa;Chavan, S. B.;Raizada, Anurag;Desai, Sujeet;Paramesha, V.;Kumar, Parveen;Jha, Prakash Kumar;Prasad, P. V. Vara",,,,,,,Scientific Reports,,,SCOPUS,"Uthappa A. R., 2025, Scientific Reports",,"Uthappa A. R., 2025, Scientific Reports"
+2025,25,https://app.dimensions.ai/details/publication/pub.1195251562,AI-Driven Resilient Fault Diagnosis of Bearings in Rotating Machinery,7092,22,,Sensors,10.3390/s25227092,2025-11-20,"Naqvi, Syed Muhammad Wasi ul Hassan;Arif, Arsalan;Khan, Asif;Bangash, Fazail;Sirewal, Ghulam Jawad;Huang, Bin","Predictive maintenance is increasingly important in rotating machinery to prevent unexpected failures, reduce downtime, and improve operational efficiency. This study compares the efficacy of traditional machine learning (ML) and deep learning (DL) techniques in diagnosing bearing faults under varying load and speed conditions. Two classification tasks were conducted: a simpler three-class task that distinguishes healthy bearings, inner race faults, and outer race faults, and a more complex nine-class task that includes faults of varying severity in the inner and outer races. In this study, the machine learning algorithm ensemble bagged trees, achieved maximum accuracies of 93.04% for the three-class and 87.13% for the nine-class classifications, followed by neural network, SVM, KNN, decision tree, and other algorithms. For deep learning, the CNN model, trained on scalograms (time-frequency images generated by continuous wavelet transform), demonstrated superior performance, reaching up to 100% accuracy in both classification tasks after six training epochs for the nine-class classifications. While CNNs take longer training time, their superior accuracy and capability to automatically extract complex features make the investment worthwhile. Consequently, the results demonstrate that the CNN model trained on CWT-based scalogram images achieved remarkably high classification accuracy, confirming that deep learning methods can outperform traditional ML algorithms in handling complex, non-linear, and dynamic diagnostic scenarios.",article,0,,,"Naqvi, Syed Muhammad Wasi ul Hassan;Arif, Arsalan;Khan, Asif;Bangash, Fazail;Sirewal, Ghulam Jawad;Huang, Bin",,,,,,,Sensors,,,SCOPUS,"Naqvi Syed Muhammad Wasi ul Hassan, 2025, Sensors",,"Naqvi Syed Muhammad Wasi ul Hassan, 2025, Sensors"
+2025,,https://app.dimensions.ai/details/publication/pub.1195337241,Integrating Neuroimaging and Machine Learning to Predict Mental Disorder Outcomes: A Systematic Review,429,,,,10.1007/978-3-032-03398-7_41,2025-11-23,"Gkintoni, Evgenia;Telonis, Gergios;Halkiopoulos, Constantinos;Boutsinas, Basilios","This review systematically outlines research works in the integrated use of neuroimaging and machine learning to predict outcomes from mental disorders, since diagnosing and treating such conditions is very complicated. It puts into perspective neurobiomarker-based predictive models, different approaches to machine learning comprising support vector machines, random forests, and deep learning, and determines the need for early, effective interventions. The chapter reviews state-of-the-art contributions consisting of structural, functional, and diffusion tensor imaging (DTI), in addition to the use of supervised and unsupervised learning methodologies. Key findings include the predictive power of specific neuroimaging modalities and machine learning models with respect to mental health disorders such as schizophrenia, depression, bipolar disorder, and autism spectrum disorder. Concerns regarding interpretability, generalizability, and clinical applicability are discussed in relation to ethical considerations. This review focused on how multimodal neuroimaging, combined with machine learning, enabled improved diagnostic precision and treatment responses to form a basis for recommendations for future research in improving personalized interventions in mental health.",inbook,0,,GeNeDIS 2024,"Gkintoni, Evgenia;Telonis, Gergios;Halkiopoulos, Constantinos;Boutsinas, Basilios",,,,,,,,468,,SCOPUS,"Gkintoni Evgenia, 2025, ",,"Gkintoni Evgenia, 2025, "
+2025,25,https://app.dimensions.ai/details/publication/pub.1195359399,Predictions of postoperative and perioperative complications of laparoscopic cholecystectomy using machine learning algorithms: systematic review,618,1,,BMC Surgery,10.1186/s12893-025-03035-z,2025-11-24,"Leghari, Shahzeb;Tausif, Muhammad;Rehan, Rooma;Ikram, Wajiha;Santos, Raziel;Haider, Muhammad Usman","BackgroundLaparoscopic cholecystectomy (LC) is a widely performed procedure with potential postoperative and perioperative complications. Recent advances in machine learning (ML) can lead to early prediction of these complications, but no systematic review has synthesized this data. This review aims to assess ML algorithms’ accuracy in predicting these complications following LC.MethodsA systematic review was conducted by PRISMA guidelines. A comprehensive search was performed on PubMed, Embase, Scopus, and Web of Science databases for studies published between 2010 and 2024. Studies that applied ML algorithms to predict complications during and after LC were included. Quality assessment was performed using the Newcastle-Ottawa Scale (NOS). Due to study heterogeneity, a meta-analysis was not conducted; instead, a narrative synthesis was performed.ResultsA total of 6 studies were included in the review. Various machine learning algorithms, such as decision trees, deep learning, artificial neural networks (ANN), and adaptive boosting, were assessed for predicting postoperative and perioperative complications after laparoscopic cholecystectomy (LC). ANN models showed superior performance, with mean absolute percentage error (MAPE) values ranging from 4.20 to 8.60% in predicting quality of life post-LC. Deep learning models achieved a balanced accuracy of 71.4% for critical view of safety (CVS) assessment during LC. Adaboost algorithms effectively identified key risk factors for hepatic fibrosis in post-cholecystectomy patients. However, models predicting surgical adverse events faced limitations due to low prevalence, resulting in lower predictive values.ConclusionML models show great potential in predicting postoperative complications following LC while also considering intraoperative and perioperative outcomes that impact patient safety and postoperative recovery, but limitations such as small sample sizes and limited applicability remain. Further research is needed to validate these models in larger, more diverse populations.",article,0,,,"Leghari, Shahzeb;Tausif, Muhammad;Rehan, Rooma;Ikram, Wajiha;Santos, Raziel;Haider, Muhammad Usman",,,,,,,BMC Surgery,,,SCOPUS,"Leghari Shahzeb, 2025, BMC Surgery",,"Leghari Shahzeb, 2025, BMC Surgery"
+2025,15,https://app.dimensions.ai/details/publication/pub.1195447549,Analysis of factors affecting the academic performance of university students using machine learning,44027,1,,Scientific Reports,10.1038/s41598-025-28870-1,2025-11-27,"Marín, Yuri Reina;Huatangari, Lenin Quiñones;Tuesta, Judith Nathaly Alva;Caro, Omer Cruz;Guevara, Jorge Luis Maicelo;Bardales, Einstein Sánchez;Santos, River Chávez","Understanding the determinants of university students’ academic performance has become a strategic priority for higher education institutions, especially in contexts marked by social, economic, and academic diversity. However, performance assessment remains a challenge due to the complexity of the educational process and the nonlinear nature of learning behaviors. A machine learning-based prediction model was developed using primary data from 386 university students. The performance of nine educational data mining (EDM) algorithms, including XGBoost, Random Forest, artificial neural networks (ANNs), Support Vector Machines, Decision Trees, Naive Bayes, Logistic Regression, AdaBoost, and K-Nearest Neighbors (KNN), was evaluated using demographic, socioeconomic, academic, social and family, health and wellness, infrastructure and services, and time management and extracurricular activity factors. The results reveal that machine learning is an effective tool for representing nonlinear relationships between academic performance and its determinants, allowing for accurate prediction of academic outcomes and explaining the individual contribution of each variable through sensitivity and interpretability analyses. Despite differences in their predictive accuracy, all algorithms effectively modeled educational dynamics. In particular, those models that integrate multiple student dimensions demonstrated better generalization capabilities. It is concluded that, to achieve an accurate assessment of academic performance in diverse university environments, it is essential to consider influencing factors in machine learning-based predictive models.",article,0,,,"Marín, Yuri Reina;Huatangari, Lenin Quiñones;Tuesta, Judith Nathaly Alva;Caro, Omer Cruz;Guevara, Jorge Luis Maicelo;Bardales, Einstein Sánchez;Santos, River Chávez",,,,,,,Scientific Reports,,,SCOPUS,"Marín Yuri Reina, 2025, Scientific Reports",,"Marín Yuri Reina, 2025, Scientific Reports"
+2025,135,https://app.dimensions.ai/details/publication/pub.1195465317,No-Free-Lunch Theorems for Tensor Network Machine Learning Models,227301,22,,Physical Review Letters,10.1103/by9g-5bkm,2025-11-26,"Wu, Jing-Chuan;Ye, Qi;Deng, Dong-Ling;Yu, Li-Wei","Tensor network machine learning models have shown remarkable versatility in tackling complex data-driven tasks. Despite their promising performance, a comprehensive understanding of the underlying assumptions and limitations of these models is still lacking. Here we focus on the rigorous formulation of their no-free-lunch theorem, which is essential yet notoriously challenging to formalize for specific tensor network learning models. In particular, we rigorously analyze the generalization risks of learning target output functions from input data encoded in tensor network states. We first prove a no-free-lunch theorem for machine learning models based on matrix product states. Then we circumvent the challenging issue of calculating the partition function for a two-dimensional Ising model, and prove the no-free-lunch theorem for the case of two-dimensional projected entangled-pair states, by introducing the combinatorial method associated to the ""puzzle of polyominoes."" In addition, we rigorously establish an adversarial theorem that emerges naturally as a practical consequence of our no-free-lunch theorem. Our findings reveal the intrinsic limitations of tensor-network-based learning models in a rigorous fashion, and open up an avenue for future analytical exploration of both the strengths and limitations of quantum-inspired machine learning frameworks.",article,0,,,"Wu, Jing-Chuan;Ye, Qi;Deng, Dong-Ling;Yu, Li-Wei",,,,,,,Physical Review Letters,,,SCOPUS,"Wu Jing-Chuan, 2025, Physical Review Letters",,"Wu Jing-Chuan, 2025, Physical Review Letters"
+2025,41,https://app.dimensions.ai/details/publication/pub.1195502492,Utilization of Machine Learning Algorithms to Optimize the Photoluminescence Properties of Perovskite Thin Films Synthesized through Ionic Liquid-Based Techniques,32414,48,,Langmuir,10.1021/acs.langmuir.5c04149,2025-11-29,"Wei, Song;Huang, Xueyong;Chen, Xuexiao;Zhang, Lei","With their excellent optical properties, perovskite thin films demonstrate vast potential for practical applications, ranging from solid-state lighting to advanced display technique. In this work, environmentally benign ionic liquids were employed to synthesize high-quality CsPbBr3 perovskite films. Several carboxylate amine ionic liquids were introduced to prepare CsPbBr3 perovskite thin films. The optimal preparation conditions of the perovskite thin films were screened and predicted by machine learning algorithms. The predicted results are highly consistent with the subsequent verification experiments. The employment of machine learning algorithms has been demonstrated to result in enhanced PL intensity and improved film quality in perovskite thin films. This work provided a new strategy for the utilization of machine learning algorithms in perovskite luminescent materials.",article,0,,,"Wei, Song;Huang, Xueyong;Chen, Xuexiao;Zhang, Lei",,,,,,,Langmuir,32420,,SCOPUS,"Wei Song, 2025, Langmuir",,"Wei Song, 2025, Langmuir"
+2025,14,https://app.dimensions.ai/details/publication/pub.1195954765,"Artificial Intelligence in Patient Blood Management: A Systematic Review of Predictive, Diagnostic, and Decision Support Applications",8479,23,,Journal of Clinical Medicine,10.3390/jcm14238479,2025-11-29,"Coelho, Henrique;Silva, Fernando;Correia, Marta;Rodrigues, Pedro Miguel","Background: Patient blood management (PBM) is a patient-centered, evidence-based approach for optimizing anemia management, minimizing blood loss, and ensuring appropriate transfusion. Artificial intelligence (AI) provides powerful tools for prediction, diagnosis, and decision support across PBM, but current evidence remains emerging and not yet consolidated. Objectives: This review synthesizes AI applications in PBM, summarizing predictive, diagnostic, and decision support models; highlighting methodological trends; and discussing challenges for clinical translation. Methods: PubMed, Scopus, and Web of Science were searched from inception to 31 March 2025. Eligible studies reported AI models addressing the three established PBM pillars. Studies on transfusion safety and blood bank operations relevant to PBM were also included. Extracted data covered study characteristics, predictors, models, validation strategies, and performance. The findings were narratively synthesized given study heterogeneity. Results: A total of 338 studies were included, spanning anemia detection, bleeding risk stratification, transfusion prediction, transfusion safety, and inventory management. Deep learning (DL) predominated in image-based anemia detection, while ensemble and gradient boosting methods frequently outperformed baselines in bleeding and transfusion risk prediction. Recurrent and hybrid architectures proved effective for blood supply forecasting. Across domains, machine learning and DL models generally surpassed logistic regression, clinical scores, and expert judgment. Despite strong internal performance, external validation and clinical deployment remain limited. Conclusions: AI is advancing PBM by enabling earlier anemia detection, more accurate bleeding and transfusion prediction, and smarter resource allocation. Translation into practice requires standardized reporting, robust external validation, explainability, and workflow integration. Future work should emphasize multimodal learning, prospective evaluation, and cost-effectiveness.",article,0,,,"Coelho, Henrique;Silva, Fernando;Correia, Marta;Rodrigues, Pedro Miguel",,,,,,,Journal of Clinical Medicine,,,SCOPUS,"Coelho Henrique, 2025, Journal of Clinical Medicine",,"Coelho Henrique, 2025, Journal of Clinical Medicine"
+2025,16,https://app.dimensions.ai/details/publication/pub.1196023864,The Role of Artificial Intelligence in Chronic Rhinosinusitis: A Scoping Review,70,1,,International Forum of Allergy & Rhinology,10.1002/alr.70078,2025-12-11,"Pereira, Nicola M.;Wie, Sarah J.;Zhao, Karena;Demetres, Michelle;Kacker, Ashutosh","BACKGROUND: In the modern medical landscape, artificial intelligence (AI) is becoming an increasingly common tool for the diagnosis and management of chronic pathologies. Chronic rhinosinusitis (CRS) comprises a significant part of the practice of otolaryngology and thus provides ample opportunity for AI optimization of diagnosis and management.
+OBJECTIVE: With increasing interest in AI, this scoping review aims to map the current landscape of AI applications in CRS, identifying trends, gaps, and future opportunities.
+METHODS: A comprehensive literature search was performed in the following databases from inception-April 2024: Ovid MEDLINE, Ovid EMBASE, Web of Science, and The Cochrane Library. Studies retrieved were then screened for eligibility. The inclusion criteria included studies whose methods included the use of any form of AI for the diagnosis or management of chronic rhinosinusitis. Any studies that were non-English language publications, publications older than 2003, studies analyzing acute rhinosinusitis, and studies involving pediatric populations were excluded. Discrepancies were resolved by consensus.
+RESULTS: 573 records were screened, with 49 studies included in the final review. The studies were qualitatively analyzed according to the type of AI used, study objectives, application of AI, training variables for AI in CRS, and AI accuracy reporting. Commonly used forms of AI included deep learning (36.7%), neural networks (24.5%), convolutional neural networks (10.2%), and random forest models (6.1%). The majority (55%) of studies were focused on applying AI to the diagnosis of CRS. The remaining studies used AI to predict prognostic outcomes in CRS (29%) and to assess patient response to treatment or inform patient treatment plans (12%). Some studies aimed to identify biomarkers or clinical variables for the diagnosis or prognosis of CRS (37%), while others used AI to subtype CRS (33%) or assess radiologic characteristics using AI (20%). CT imaging, tissue or blood eosinophil counts, clinical or demographic patient characteristics, histopathology characteristics, blood and tissue cytokines, and nasal endoscopy findings were all variables used to train the AI models. Classification metrics and regression metrics were used to assess AI model performance.
+CONCLUSIONS: AI is a promising tool in the management of CRS, though it remains in its early stages. Current applications show significant progress in diagnosis, subtyping, and prognosticating in CRS, but there are few studies that analyze the utility of AI for surgical planning, economic evaluation, or interactive clinical tools. This review underscores the potential of AI for transforming an otolaryngologist's approach to CRS.",article,0,,,"Pereira, Nicola M.;Wie, Sarah J.;Zhao, Karena;Demetres, Michelle;Kacker, Ashutosh",,,,,,,International Forum of Allergy & Rhinology,95,,SCOPUS,"Pereira Nicola M., 2025, International Forum of Allergy & Rhinology",,"Pereira Nicola M., 2025, International Forum of Allergy & Rhinology"
+2025,255,https://app.dimensions.ai/details/publication/pub.1196036702,Artificial intelligence and machine learning applications in ambulatory surgery – A systematic review,116775,,,The American Journal of Surgery,10.1016/j.amjsurg.2025.116775,2025-12-11,"Patel, Santosh;Mishra, Vinaytosh;Manda, Venkatraman","BACKGROUND: We aimed to systematically review applications of artificial intelligence (AI) technologies for ambulatory surgical patients.
+METHODS: We systematically searched PubMed, Scopus, Web of Science, and EBSCOhost (2015-2025). Studies were included if they used artificial intelligence in ambulatory surgical populations.
+RESULTS: Of 26 studies identified, machine learning was used in 25, with a predominantly orthopaedic (65.3 %) focus. Except for two, all were originated in the USA. We found four themes: (1) Preoperative patient selection (n = 10) - Random forest (RF) and eXtreme gradient boost (XGBoost) algorithms predicted appropriateness with an area under curve (AUC) 0.72-0.85, (2) Same-day discharge prediction (n = 8) - Ensemble models demonstrated the highest AUC values (3) Postoperative management and complications (n = 3) - Artificial neural network incorporating intra- and postoperative features predicted opioid refill needs (4) Cost prediction (n = 4) - Ensemble models consistently outperformed single-model approaches.
+CONCLUSIONS: Our review underscores the promising potential of machine learning applications in ambulatory surgery, particularly with ensemble methods. We observed inconsistencies in the models; data related issues and a lack of external validation.",article,0,,,"Patel, Santosh;Mishra, Vinaytosh;Manda, Venkatraman",,,,,,,The American Journal of Surgery,,,SCOPUS,"Patel Santosh, 2025, The American Journal of Surgery",,"Patel Santosh, 2025, The American Journal of Surgery"
+2025,14,https://app.dimensions.ai/details/publication/pub.1196043324,PrevCardioOncAI: Machine Learning Algorithms for Predicting Cardiovascular Disease in Cancer Survivors,e030363,24,,Journal of the American Heart Association: Cardiovascular and Cerebrovascular Disease,10.1161/jaha.123.030363,2025-12-11,"Brown, Sherry‐Ann;Fang, Michelle Z.;Sparapani, Rodney;Zhou, Yadi;Osinski, Kristen;Taylor, Bradley;Yu, Duo;Blessing, Jeffrey;Shah, Rushabh;Collier, Patrick;BagheriMohamadiPour, Mehri;Zhang, Jun;Kothari, Anai;Echefu, Gift;Rickards, John;Otto, Cameron;Sanchez, Zanele;Olson, Jessica;Arruda‐Olson, Adelaide;Cheng, Yee Chung;Cheng, Feixiong;Equity,;Patient Similarity Algorithms in the Prevention of Cardiovascular Toxicity Research Team Investigators for the Cardio‐Oncology Artificial Intelligence Informatics;Precision","BACKGROUND: Cardiovascular disease (CVD) is a leading cause of death in cancer survivors. Predicting CVD risk in this population remains challenging. Risk prediction models that use machine learning algorithms could provide an objective method for accurate risk prediction to facilitate the prevention and management of CVD in cancer survivors. We evaluated previously tested machine learning algorithms and logistic regression (regularized by machine learning methods), in addition to testing and validating newer, more complex machine learning algorithms, for CVD prediction in cancer survivors.
+METHODS: This multicenter study used a database of 3835 multiracial cancer survivors with 89 clinical, laboratory, and echocardiographic features over 20 years. Models were trained using repeated random and time-split samples and tested on a separate cohort of 329 patients. Model performance was assessed using the area under the receiver operating characteristic curve.
+RESULTS: Regularized logistic regression achieved an area under the receiver operating characteristic curve of 0.845 (heart failure), 0.783 (atrial fibrillation), 0.792 (coronary artery disease), and 0.806 (composite CVD). These are comparable to 0.837 and 0.848 for heart failure, using Bayesian additive regression tree and random forest as more advanced machine learning models, respectively. De novo composite CVD (post-cancer diagnosis) was also predicted with an area under the receiver operating characteristic curve of 0.826 using regularized logistic regression, compared with 0.735 and 0.802 using decision tree and random forest, respectively.
+CONCLUSIONS: Regularized logistic regression and advanced machine learning models demonstrated similar predictive performance, with institutional transferability. These tools may support risk stratification and prevention strategies in cardio-oncology using longitudinal data.
+REGISTRATION: URL: https://www.clinicaltrials.gov; Unique identifier: NCT05377320.",article,0,,,"Brown, Sherry‐Ann;Fang, Michelle Z.;Sparapani, Rodney;Zhou, Yadi;Osinski, Kristen;Taylor, Bradley;Yu, Duo;Blessing, Jeffrey;Shah, Rushabh;Collier, Patrick;BagheriMohamadiPour, Mehri;Zhang, Jun;Kothari, Anai;Echefu, Gift;Rickards, John;Otto, Cameron;Sanchez, Zanele;Olson, Jessica;Arruda‐Olson, Adelaide;Cheng, Yee Chung;Cheng, Feixiong;Equity,;Patient Similarity Algorithms in the Prevention of Cardiovascular Toxicity Research Team Investigators for the Cardio‐Oncology Artificial Intelligence Informatics;Precision",,,,,,,Journal of the American Heart Association: Cardiovascular and Cerebrovascular Disease,,,SCOPUS,"Brown Sherry‐Ann, 2025, Journal of the American Heart Association: Cardiovascular and Cerebrovascular Disease",,"Brown Sherry‐Ann, 2025, Journal of the American Heart Association: Cardiovascular and Cerebrovascular Disease"
+2025,,https://app.dimensions.ai/details/publication/pub.1196072607,Development and evaluation of a multi-model stacking approach for caries risk assessment in adults using supervised machine learning,1,,,British Dental Journal,10.1038/s41415-025-9105-5,2025-12-12,"Atni, Mohd Hidir Mohd;Rosdy, Nik Mohd Mazuan Nik Mohd;Tajudin, Mohd Azrul Amir Muhamad;Rusly, Ahmad Adam;Raob, Noor Asilati Abdul;Sabri, Budi Aslinie Md","Background Dental caries is a chronic disease that requires intervention to prevent complications and minimise costs. Accurate caries risk assessment is crucial but traditional methods depend on skilled clinicians, limiting scalability. Machine learning offers an efficient and standardised alternative.Objective This study aimed to develop and evaluate computational models using machine learning techniques for predicting caries risk in adults.Methods A systematic review identified seven predictors that were applied to 3,000 balanced Universiti Teknologi MARA patient records spanning low, moderate and high caries risk. Seven algorithms (decision tree, XGBoost, k-nearest neighbors, logistic regression, multi-layer perceptron, random forest, and support vector machine) were tuned with K-fold cross-validation and stacking ensembles to enhance performance.Results The two-model stacking approach achieved the highest accuracy (95.17%) and ROC-AUC (receiver operating characteristic-area under the curve) (99.78%), followed by the three-model stacking with a strong accuracy of 93.63% and specificity (96.82%). Among single models, random forest and extreme gradient boosting stood out with an accuracy of 90.47% and 90.20%, respectively, demonstrating robust classification performance.Conclusions Multi-model machine learning approaches showed high accuracy in caries risk assessment, offering reliable predictions while reducing reliance on extensive clinical judgment. These methods provide standardised risk predictions and support the integration of machine learning into clinical workflows to enhance prevention strategies and patient care.",article,0,,,"Atni, Mohd Hidir Mohd;Rosdy, Nik Mohd Mazuan Nik Mohd;Tajudin, Mohd Azrul Amir Muhamad;Rusly, Ahmad Adam;Raob, Noor Asilati Abdul;Sabri, Budi Aslinie Md",,,,,,,British Dental Journal,7,,SCOPUS,"Atni Mohd Hidir Mohd, 2025, British Dental Journal",,"Atni Mohd Hidir Mohd, 2025, British Dental Journal"
+2025,2025,https://app.dimensions.ai/details/publication/pub.1196079269,Revolutionizing Lung Cancer Detection: A High‐Accuracy Machine Learning Framework for Early Diagnosis,9961773,1,,BioMed Research International,10.1155/bmri/9961773,2025-01,"Ali, Tahir Muhammad;Mir, Azka;Rehman, Attique Ur;Humayun, Mamoona;Shaheen, Momina;Alshammari, Rafeef Taresh Suliman","Lung cancer is a deadly disease. According to a report of 2024, it is the primary reason for 1.82 million deaths. Given the high disease burden, early detection of lung cancer is crucial for improving survival rates and implementing effective strategies. This paper is aimed at conducting a systematic literature review and developing a highly accurate framework for predicting lung cancer effectively. Tollgate methodology has been used for systematic literature review, and quality assessment criteria were applied to select published articles relevant to the research questions. The paper investigates the effectiveness of machine learning in identifying patterns relevant to lung cancer prediction (Q1), examines the pros and cons of current predictive systems (Q2), compares the use of artificial intelligence in lung cancer prediction with traditional methods (Q3), and identifies key features that distinguish lung cancer from patient symptoms (Q4). Machine learning techniques were employed for the proposed framework. Two publicly available, distinct datasets containing clinical features were obtained. Then, the SelectKBest method was used for feature selection, and SMOTE was used to handle class imbalance. Our proposed framework includes a voting ensemble with random forest, support vector machine, and logistic regression with cross-validation. The results indicate an accuracy of 99% and 92.5% for the first and second datasets, respectively. This study's systematic literature review, based on four research questions and a machine learning model, exhibits high accuracy in predicting lung cancer.",article,0,,,"Ali, Tahir Muhammad;Mir, Azka;Rehman, Attique Ur;Humayun, Mamoona;Shaheen, Momina;Alshammari, Rafeef Taresh Suliman",,,,,,,BioMed Research International,,,SCOPUS,"Ali Tahir Muhammad, 2025, BioMed Research International",,"Ali Tahir Muhammad, 2025, BioMed Research International"
+2025,13,https://app.dimensions.ai/details/publication/pub.1196148477,Artificial Intelligence in Obesity Prevention,3262,24,,Healthcare,10.3390/healthcare13243262,2025-12-12,"Jafarabadi, Golbarg Shabani;Busetto, Luca","Background/Objectives: Obesity is a complex disorder that causes further health issues linked to several chronic diseases, such as cancer, diabetes, metabolic syndrome, and cardiovascular diseases; thus, it is critical to identify and diagnose obesity as soon as possible. Traditional methods, such as anthropometric measures, were popular, although recent advances in artificial intelligence (AI) offer new opportunities for prediction models; as a result, AI has become an essential tool in obesity research. This study provides a comprehensive analysis of the research on the impact of AI on obesity prevention. Methods: In this study, the researchers performed a scoping study using AI to assess and predict obesity in PubMed, Scopus, Web of Science, and Google Scholar from February 2009 to July 2025. The researchers compiled and arranged the employed AI approaches to find connections, patterns, and trends that could guide further research and the application of machine learning algorithms for advanced data analytics. Results: Clinical professionals in obesity medicine may find chatbots valuable as a source of clinical and scientific knowledge, and for creating standard operating procedures, policies, and procedures. According to the findings, AI models can be used to identify clinically significant patterns of obesity or the connections between specific factors and weight outcomes. Moreover, the application of deep learning and machine learning approaches, such as logistic regression, decision trees, and artificial neural networks, appears to have yielded new insight into data, particularly in terms of obesity prediction. Conclusions: This work aims to contribute to a better understanding of obesity detection. While more studies are needed, AI offers solutions to modern challenges in obesity prediction.",article,0,,,"Jafarabadi, Golbarg Shabani;Busetto, Luca",,,,,,,Healthcare,,,SCOPUS,"Jafarabadi Golbarg Shabani, 2025, Healthcare",,"Jafarabadi Golbarg Shabani, 2025, Healthcare"
+2025,16,https://app.dimensions.ai/details/publication/pub.1196482900,Brain tumor detection with real-world predictions in Jordan hospitals,3321,1,,Scientific Reports,10.1038/s41598-025-33215-z,2025-12-23,"Alqaraleh, Muhyeeddin;Al-Batah, Mohammad Subhi;Alzboon, Mowafaq Salem;Alourani, Abdullah","The rising incidence of brain tumors and their diverse characteristics make early and accurate diagnosis increasingly challenging. Traditional diagnostic techniques, while effective, often rely on subjective assessment, highlighting the potential of machine learning (ML) to enhance diagnostic accuracy and efficiency. This study evaluates the performance of seven ML algorithms—Decision Tree, AdaBoost, k-Nearest Neighbors (k-NN), Neural Network, Logistic Regression, Random Forest, and Support Vector Machine (SVM)—for brain tumor classification. A comprehensive dataset of 7,023 instances, encompassing glioma, meningioma, pituitary tumors, and healthy samples, was used in a three-way balanced design, with models validated through stratified 10-fold cross-validation. With AUC values near 1.00, Specifically, the Neural Network achieved the highest performance with AUC = 0.996, accuracy = 0.958, F1 = 0.958, precision = 0.958, and recall = 0.958, followed closely by SVM (AUC = 0.993, accuracy = 0.940). the results show that sophisticated models like SVM and neural networks perform better in terms of prediction than more straightforward models like AdaBoost and Decision Trees. The work investigates data augmentation strategies like SMOTE to alleviate class imbalances and further improve model resilience. It also talks about how interpretable AI techniques like SHAP and LIME can be included to increase clinical acceptance and trust. In order to solve ethical issues with algorithmic bias and data protection, federated learning is also taken into consideration for safe multi-institutional collaboration. Notably, our models showed excellent dependability in correctly categorizing tumors when evaluated on actual clinical cases from Jordanian hospitals, highlighting their potential for practical implementation in rural healthcare settings. This research establishes benchmarks for ML-based tumor classification, paving the way for improved diagnostic capabilities in diverse and resource-constrained clinical environments, Validation on retrospective, anonymized cases from Jordanian hospitals confirmed clinical applicability, with models maintaining > 92% accuracy on real-world data.",article,0,,,"Alqaraleh, Muhyeeddin;Al-Batah, Mohammad Subhi;Alzboon, Mowafaq Salem;Alourani, Abdullah",,,,,,,Scientific Reports,,,SCOPUS,"Alqaraleh Muhyeeddin, 2025, Scientific Reports",,"Alqaraleh Muhyeeddin, 2025, Scientific Reports"
+2025,8,https://app.dimensions.ai/details/publication/pub.1196594215,Diagnostic Codes in AI Prediction Models and Label Leakage of Same-Admission Clinical Outcomes,e2550454,12,,JAMA Network Open,10.1001/jamanetworkopen.2025.50454,2025-12-01,"Ramadan, Bashar;Liu, Ming-Chieh;Burkhart, Michael C.;Parker, William F.;Beaulieu-Jones, Brett K.","Importance: Artificial intelligence models that predict same-admission outcomes for hospitalized patients, such as inpatient mortality, often rely on International Classification of Diseases (ICD) diagnostic codes, even when these codes are not finalized until after discharge.
+Objective: To investigate the extent to which the inclusion of ICD codes as features in predictive models are associated with inflated performance metrics via label leakage (eg, including the code for cardiac arrest into an inpatient mortality prediction model) and assess the prevalence and implications of this practice in existing literature.
+Design, Setting, and Participants: This prognostic study examined publicly available, deidentified inpatient electronic health record data from the Medical Information Mart for Intensive Care IV (MIMIC-IV) database. Patients admitted to an intensive care unit or emergency department at Beth Israel Deaconess Medical Center between January 1, 2008, and December 31, 2019, were included. These data were analyzed between December 18, 2024, and January 14, 2025. A targeted literature review of same-admission prediction models using MIMIC with ICD codes as features was performed between November 20 and 27, 2024.
+Main Outcome and Measures: Using a standard training-validation-test split procedure, prediction models were developed for inpatient mortality (logistic regression, random forest, and XGBoost) using only ICD codes as features. Performance in the test set was analyzed using areas under the receiver operating curve and variable importance. Frequencies of studies using same-admission prediction models using MIMIC with ICD codes were calculated from the targeted literature review.
+Results: The study cohort consisted of 180 640 patients (mean [SD] age at admission, 58.7 [19.2] years; 53.0% female), of whom 8573 (4.7%) died during the admission. The models using ICD codes predicted in-hospital mortality with high performance in the test dataset, with areas under the receiver operating curve of 0.976 (95% CI, 0.973-0.980) (logistic regression), 0.971 (95% CI, 0.967-0.974) (random forest), and 0.973 (95% CI, 0.968-0.977) (XGBoost). The most important ICD codes were subdural hemorrhage (OR, 389.99; 95% CI, 28.79-5283.59), cardiac arrest (OR, 219.58; 95% CI, 159.61-302.08), brain death (OR, 112.78; 95% CI, 13.42-947.70), and encounter for palliative care (OR, 98.04; 95% CI, 83.16-115.58). The literature review found that 37 of 92 studies (40.2%) using MIMIC to predict same-admission outcomes included ICD codes as features, even though both MIMIC publications and documentation clearly state that ICD codes are derived after discharge.
+Conclusions and Relevance: This prognostic study of the MIMIC-IV database suggests that using ICD codes as features in same-admission prediction models may be a severe methodological flaw associated with inflated performance metrics, rendering models incapable of clinically useful predictions. The literature review found that the practice is common. Addressing this challenge is essential for advancing trustworthy artificial intelligence in health care.",article,0,,,"Ramadan, Bashar;Liu, Ming-Chieh;Burkhart, Michael C.;Parker, William F.;Beaulieu-Jones, Brett K.",,,,,,,JAMA Network Open,,,SCOPUS,"Ramadan Bashar, 2025, JAMA Network Open",,"Ramadan Bashar, 2025, JAMA Network Open"
+2025,8,https://app.dimensions.ai/details/publication/pub.1196669610,Applications of Machine Learning for Cognitive Health in Older Individuals With HIV: Rapid Systematic Review,e80433,,,JMIR Aging,10.2196/80433,2025-12-31,"Cho, Hwayoung;Song, Jiyoun;Cho, Hannah;Li, Lin;Liang, Renjie;Miranda, Railton;Song, Qianqian;Bian, Jiang","Background: More than half of people with HIV are now older than 50 years, and they face an approximately 60% higher risk of developing dementia compared with the general population. In recent years, the application of artificial intelligence, particularly machine learning, combined with the growing availability of large datasets, has opened new avenues for developing prediction models that improve dementia detection, monitoring, and management.
+Objective: This systematic review aimed to synthesize the existing literature on the application of machine learning in dementia research among older people with HIV and identify directions for future research.
+Methods: A comprehensive search was conducted in PubMed, CINAHL, and Embase in September 2024, limited to studies published within the past 10 years. Eligible articles included original research involving people with HIV applying at least 1 machine learning technique and reporting dementia-related outcomes.
+Results: The search yielded 721 articles, of which 26 (3.6%) met the inclusion criteria. Most studies were retrospective and conducted in the United States (n=14, 53.8%), primarily focusing on neurocognitive impairment and HIV-associated neurocognitive disorders. Supervised machine learning techniques were most frequently used and demonstrated strong predictive performance. Common methodological challenges included small sample sizes, lack of external validation, limited participant diversity, and concerns about biological interpretability and generalizability.
+Conclusions: Machine learning research on dementia among older people with HIV primarily targets HIV-associated neurocognitive disorders, with limited exploration of age-related neurodegenerative diseases such as Alzheimer disease and related dementias. The absence of longitudinal studies and external validation remains a key limitation. Future research should broaden the focus to all-cause dementia beyond HIV-specific conditions; apply advanced machine learning methods; and leverage large-scale longitudinal, multimodal datasets. Strengthening methodological rigor and enhancing real-world applications will be critical to improving early detection and effective management of cognitive health in this unique aging population.",article,0,,,"Cho, Hwayoung;Song, Jiyoun;Cho, Hannah;Li, Lin;Liang, Renjie;Miranda, Railton;Song, Qianqian;Bian, Jiang",,,,,,,JMIR Aging,,,SCOPUS,"Cho Hwayoung, 2025, JMIR Aging",,"Cho Hwayoung, 2025, JMIR Aging"
+2025,17,https://app.dimensions.ai/details/publication/pub.1196726113,Radiomics and Machine Learning in Diagnostics of Glial Brain Tumors: a Systematic Review and Meta-Analysis,69,6,,Modern Technologies in Medicine,10.17691/stm2025.17.6.07,2025-12-29,"Danilov, G.V.;Agrba, S.B.;Strunina, Yu.V.;Shevchenko, A.M.;Konakova, T.A.;Shugay, S.V.;Batalov, A.I.;Pronin, I.N.","Glial tumors are the most common neuroepithelial neoplasms of the brain. Consequently, investigating robust, non-invasive techniques for subtyping these tumors - specifically through advanced multimodal neuroimaging and radiomics - is warranted. The present systematic review of scientific literature, including meta-analysis, was conducted to specify the major challenges of radiomics and machine learning in diagnostics of glial tumors based on the MRI data as well as to assess the quality of such non-invasive diagnostics. We analyzed 42 publications utilizing radiomics and machine learning to predict molecular biomarker status in glial tumors based on MRI data. The analysis covered mutations in the IDH, ATRX, BRAF, and H3K27M genes, as well as TERT promoter mutations, 1p/19q codeletion, MGMT promoter methylation, and proliferative activity (Ki-67 labeling index). The overall accuracy of these techniques was high and equaled 0.86 [0.83; 0.89]. At the same time, the studies demonstrated significant methodological heterogeneity, in particular, related to the lack of uniform standards to select the location, size, and shape of the area of interest for obtaining radiomic features. This greatly hinders reproduction of the experimental results in clinical practice. Therefore, standardization of radiomics procedures remains relevant for further research of glial tumors.",article,0,,,"Danilov, G.V.;Agrba, S.B.;Strunina, Yu.V.;Shevchenko, A.M.;Konakova, T.A.;Shugay, S.V.;Batalov, A.I.;Pronin, I.N.",,,,,,,Modern Technologies in Medicine,79,,SCOPUS,"Danilov G.V., 2025, Modern Technologies in Medicine",,"Danilov G.V., 2025, Modern Technologies in Medicine"
+2026,15,https://app.dimensions.ai/details/publication/pub.1196862300,A Review of High-Throughput Optical Sensors for Food Detection Based on Machine Learning,133,1,,Foods,10.3390/foods15010133,2026-01-02,"Wang, Yuzhen;Yang, Yuchen;Liu, Huilin","As the global food industry expands and consumers demand higher food safety and quality standards, high-throughput detection technology utilizing digital intelligent optical sensors has emerged as a research hotspot in food testing due to its advantages of speed, precision, and non-destructive operation. Integrating cutting-edge achievements in optics, electronics, and computer science with machine learning algorithms, this technology efficiently processes massive datasets. This paper systematically summarizes the construction principles of intelligent optical sensors and their applications in food inspection. Sensors convert light signals into electrical signals using nanomaterials such as quantum dots, metal nanoparticles, and upconversion nanoparticles, and then employ machine learning algorithms including support vector machines, random forests, and convolutional neural networks for data analysis and model optimization. This enables efficient detection of target substances like pesticide residues, heavy metals, microorganisms, and food freshness. Furthermore, the integration of multiple detection mechanisms-including spectral analysis, fluorescence imaging, and hyperspectral imaging-has significantly broadened the sensors' application scenarios. Looking ahead, optical sensors will evolve toward multifunctional integration, miniaturization, and intelligent operation. By leveraging cloud computing and IoT technologies, they will deliver innovative solutions for comprehensive monitoring of food quality and safety across the entire supply chain.",article,0,,,"Wang, Yuzhen;Yang, Yuchen;Liu, Huilin",,,,,,,Foods,,,SCOPUS,"Wang Yuzhen, 2026, Foods",,"Wang Yuzhen, 2026, Foods"
+2026,21,https://app.dimensions.ai/details/publication/pub.1196975547,Unbiased inference for echocardiogram urgency prediction using double machine learning,e0338922,1,,PLOS One,10.1371/journal.pone.0338922,2026-01-07,"Jiang, Yiqun;Zhang, Wenli;Huang, Yu-Li;MacKenzie, Cameron;Li, Qing","The increased utilization of echocardiography in clinical practice has witnessed a substantial rise, underscoring its pivotal role as a diagnostic tool for various cardiovascular conditions. However, due to the relative scarcity of echocardiography tests, challenges persist in efficiently prioritizing patients for echocardiographic assessments. In this study, we develop a model to assess the urgency of appointments by considering both clinical and administrative variables extracted from Electronic Health Record data. We use double machine learning techniques to analyze these variables and improve our predictions of patient urgency. Traditional methods for estimating variable effects have limitations, particularly in our research context, where clinical and administrative variables may influence one another while also directly impacting the outcome (i.e., the urgency of appointments). In this work, we address this issue by developing an urgency stratification model using double machine learning, which disentangles the complex relationships between variables. Our evaluations demonstrate that the proposed model not only outperforms traditional machine learning methods in predicting appointment urgency but also provides robust estimations of variable effects. Specifically, our results underscore the critical roles of administrative variables and cancer-related comorbidity variables in patient prioritization and appointment urgency prediction. By leveraging double machine learning techniques, our method can enhance the efficiency and effectiveness of echocardiography utilization in clinical practice. It provides clinicians with actionable insights for patient prioritization, facilitating the timely identification of urgent cases and the optimal allocation of resources. Our work contributes to the advancement of healthcare practices by leveraging sophisticated analytics to improve patient care delivery and streamline clinical workflows in echocardiography laboratories. A similar research design can also be extended to other advanced yet limited laboratory tests to help prioritize medical resources.",article,0,,,"Jiang, Yiqun;Zhang, Wenli;Huang, Yu-Li;MacKenzie, Cameron;Li, Qing",,,,,,,PLOS One,,,SCOPUS,"Jiang Yiqun, 2026, PLOS One",,"Jiang Yiqun, 2026, PLOS One"
+2026,8,https://app.dimensions.ai/details/publication/pub.1197112139,Artificial intelligence in financial market prediction: advancements in machine learning for stock price forecasting,1696423,,,Frontiers in Artificial Intelligence,10.3389/frai.2025.1696423,2026-01-13,"Rohan, Arafat;Hossen, Deluar;Pranto, Nuruzzaman;Hossain, Balayet;Yoshi, Areyfin Mohammed;Islam, Rakibul","This study reviews the advancements in AI-driven methods for predicting stock prices, tracing their evolution from traditional approaches to modern finance. The role of AI in the market extends beyond predictive systems to encompass the intersection of financial markets with emerging technologies, such as blockchain, and the potential influence of quantum computing on economic modeling. A decentralized finance system examines the application of Reinforcement Learning in financial market prediction, highlighting its potential for continuous learning from dynamic market conditions. The study discusses the development of hybrid prediction models, stock market machine learning systems, and AI-driven investment portfolio management. The potential of quantum computing enhances portfolio analysis, fraud detection, optimization, and asset valuation for complex market predictions, as well as the impact of blockchain technologies on transparency, security, and efficiency. Machine learning techniques can significantly automate data collection and purification. Financial decision-making and the application of time-series analysis techniques can be readily learned through deep reinforcement learning for stock price prediction. Deep Neural Networks and Strategic Asset Allocation can be managed by evaluating performance and portfolio using real-time market insights from AI models. Although there are numerous ethical, sentimental, regulatory, and data quality issues in market prediction, the future job market is heavily dependent on these criteria, particularly through effective risk management and fraud detection.",article,0,,,"Rohan, Arafat;Hossen, Deluar;Pranto, Nuruzzaman;Hossain, Balayet;Yoshi, Areyfin Mohammed;Islam, Rakibul",,,,,,,Frontiers in Artificial Intelligence,,,SCOPUS,"Rohan Arafat, 2026, Frontiers in Artificial Intelligence",,"Rohan Arafat, 2026, Frontiers in Artificial Intelligence"
+2026,51,https://app.dimensions.ai/details/publication/pub.1197145725,Fivefold Cross-Validation Approach in Evaluating the Robustness of Machine Learning Models for Prediction of Esophageal Cancer,s180,Suppl 1,,Indian Journal of Community Medicine: Official Publication of Indian Association of Preventive & Social Medicine,10.4103/ijcm.ijcm_454_24,2026-01-12,"Kalita, Biraj Kumar;Singh, Kshetrimayum Anand;Kalita, Manoj","Introduction: Esophageal cancer is a significant health concern worldwide, accounting for 3.1% of all cancer burdens and 5.5% of all cancer-related deaths. Due to its impact, interest in adopting advanced methodologies has increased. Machine learning techniques offer a promising approach for gaining a deeper understanding of this disease.
+Methodology: The study is based on a case-control study design, with a total of 400 case-control subjects equally distributed. The study examined various machine learning-based prediction models, and for each model, several performance metrics, including accuracy, precision, F1 score, recall, and ROC-AUC, were evaluated. To optimize each model and determine the importance of the factors, a fivefold cross-validation technique was employed, and the ranking of feature importance was performed based on the weights in each model.
+Results: This study identified the Extra Tree Classifier model as the optimal approach for predicting esophageal cancer, with a model accuracy of 87.50%, a sensitivity of 92.5%, and a specificity of 80%. Compared with the top 10 risk factors on the basis of weight of feature importance, the model yielded an ROC-AUC value of 0.913, representing a substantial improvement of 10.1% over the baseline value of the traditional risk prediction model (ROC-AUC 0.812; 95% CI 0.59-0.94).
+Conclusion: The extra tree classifier model exhibited higher predictability and accuracy in identifying significant predictors of esophageal cancer. The incorporation of this machine learning-based model presents exciting opportunities for policymakers to focus on specific risk factors.",article,0,,,"Kalita, Biraj Kumar;Singh, Kshetrimayum Anand;Kalita, Manoj",,,,,,,Indian Journal of Community Medicine: Official Publication of Indian Association of Preventive & Social Medicine,s188,,SCOPUS,"Kalita Biraj Kumar, 2026, Indian Journal of Community Medicine: Official Publication of Indian Association of Preventive & Social Medicine",,"Kalita Biraj Kumar, 2026, Indian Journal of Community Medicine: Official Publication of Indian Association of Preventive & Social Medicine"
+2026,25,https://app.dimensions.ai/details/publication/pub.1197159854,"Better Inputs, Better Learning: A Peptide Embedding Tutorial for Proteomic Mass Spectrometry",1160,2,,Journal of Proteome Research,10.1021/acs.jproteome.5c00563,2026-01-13,"Squires, Luke;Chavez, Jose Humberto Giraldez;Nilsson, Alfred;Käll, Lukas;Payne, Samuel H","Mass spectrometry proteomics creates complex data representing the peptide/protein contents of biological samples. Various types of machine learning have been central to computational methods used to identify peptides from tandem mass spectra and numerous other aspects of the data analysis process. As deep learning has emerged as a powerful machine learning method for modeling and interpreting data, computational proteomics researchers have leveraged large publicly available data sets to train machine learning models to predict peptide fragmentation spectra and liquid chromatography retention time. Resources like proteomicsML offer extensive demonstrative tutorials for these learning tasks and are closing the gap between the proteomics and machine learning communities. However, in these and other educational materials on deep learning, the critical step of preparing data for learning is frequently omitted. Prior to learning, peptide strings must be converted into a numeric format─an embedding. There are many different peptide embeddings, and some vastly outperform others. Yet the process for creating an embedding, and also the rationale for choosing a specific embedding, is rarely discussed in our proteomics literature. In this technical note, we introduce four Google Colab notebooks to teach peptide embeddings. The series walks users through five different peptide-embedding strategies─ from simplistic single-number encodings to state-of-the-art pretrained embeddings─ through both code examples and narrative descriptions. The final notebook compares the five embeddings in a head-to-head benchmark. By making these notebooks free, we hope to lower the barrier for researchers who want to bring modern deep learning into their proteomics workflows.",article,0,,,"Squires, Luke;Chavez, Jose Humberto Giraldez;Nilsson, Alfred;Käll, Lukas;Payne, Samuel H",,,,,,,Journal of Proteome Research,1165,,SCOPUS,"Squires Luke, 2026, Journal of Proteome Research",,"Squires Luke, 2026, Journal of Proteome Research"
+2026,16,https://app.dimensions.ai/details/publication/pub.1197162884,Integrating machine learning into acupuncture research: a scoping review,1689061,,,Frontiers in Neurology,10.3389/fneur.2025.1689061,2026-01-14,"Chan, Wancy;Huang, Guan-Jun;Huang, Chien-Chen;Chen, Yi-Hung","Objectives: Machine learning offers new tools to address the variability and subjectivity in acupuncture research. This scoping study aims to map existing literature on the use of machine learning in acupuncture research. It identifies the disease conditions most frequently targeted for machine learning-based efficacy prediction, examines the machine learning methods employed, and assesses the data inputs, methodological limitations, and existing knowledge gaps in the field.
+Methods: We conducted a comprehensive literature search in PubMed database using the keywords ""acupuncture"" and ""machine learning"" for publications from 2011 to 2024.
+Results: A total of 36 relevant articles were identified, with a notable increase after 2019. Most publications originated from China. Seventeen studies focused on predicting acupuncture efficacy, primarily for pain-related conditions. The remaining studies addressed diverse topics, including acupuncture manipulation technique detection, prescription recommendation, exploration of efficacy-related factors, acupoint sensitization prediction and specificity identification, acupuncture usage frequency prediction, investigation of acupoint-meridian conduction effects, and acupuncture robotic point localization. In efficacy prediction studies, support vector machines were the most frequently employed algorithm. Seven of the 11 studies combined Magnetic Resonance Imaging as a feature for their models, and treatment responder classification was often used as labels.
+Conclusion: Most studies reported encouraging predictive performance, indicating that machine learning methods can be effectively applied to acupuncture efficacy prediction. Support vector machines, in particular, demonstrated significant potential. These findings suggest that machine learning could improve the precision and efficiency of acupuncture treatments and help create more personalized and effective treatment plans. However, small sample sizes, methodological heterogeneity, inconsistent data types, and lack of standardized datasets limit model generalizability and comparability. Important gaps remain, including mechanistic understanding, long-term outcome prediction, and evaluation of clinical impact. Future research should focus on larger, multi-center studies with standardized protocols, rigorous external validation, and assessment of clinical utility to advance the integration of machine learning into acupuncture practice.",article,0,,,"Chan, Wancy;Huang, Guan-Jun;Huang, Chien-Chen;Chen, Yi-Hung",,,,,,,Frontiers in Neurology,,,SCOPUS,"Chan Wancy, 2026, Frontiers in Neurology",,"Chan Wancy, 2026, Frontiers in Neurology"
+2026,36,https://app.dimensions.ai/details/publication/pub.1197243544,Human–machine cooperation in social dilemma games: How human strategies shape machine learning and collective behavior,013127,1,,Chaos: An Interdisciplinary Journal of Nonlinear Science,10.1063/5.0314278,2026-01-01,"Quan, Ji;Guo, Chen;Wang, Xianjia","With the widespread application of artificial intelligence, human-machine interaction has become an essential component of social systems. This study investigates human-machine cooperation from an evolutionary game perspective by constructing a mixed spatial prisoner's dilemma environment that integrates reinforcement learning-based machine strategies and traditional reactive human strategies. The results show that machines interacting with tolerant human strategies tend to converge toward stable cooperative patterns and, under certain conditions, significantly enhance group cooperation. The effect of machine proportion is context-dependent: in low-temptation settings, machines strengthen cooperative stability, whereas in high-temptation environments, cooperation relies more on human strategies. Furthermore, the analysis of average Q-values reveals that machine learning not only reproduces conditional cooperation logic but is also deeply shaped by human strategic patterns. These findings highlight the critical role of humans in shaping machine learning and cooperative tendencies, offering new theoretical insights into the evolution of human-machine cooperation and methodological implications for applications such as intelligent manufacturing and autonomous driving.",article,0,,,"Quan, Ji;Guo, Chen;Wang, Xianjia",,,,,,,Chaos: An Interdisciplinary Journal of Nonlinear Science,,,SCOPUS,"Quan Ji, 2026, Chaos: An Interdisciplinary Journal of Nonlinear Science",,"Quan Ji, 2026, Chaos: An Interdisciplinary Journal of Nonlinear Science"
+2026,174,https://app.dimensions.ai/details/publication/pub.1197556094,Comprehensive review of heart disease prediction: A comparative study from 2019 onwards,103354,,,Artificial Intelligence in Medicine,10.1016/j.artmed.2026.103354,2026-01-24,"Gulhane, Monali;Kumar, Sandeep;Choudhary, Shilpa;Rakesh, Nitin;Khatri, Narendra;Tandon, Chanderdeep;Balusamy, Balamurugan;Nayyar, Anand","In recent decades, cardiovascular disease, or heart disease, has been the number one cause of death worldwide, establishing an urgent need for timely and accurate early diagnosis. The primary purpose of this review is to examine the current state of the art in heart disease prediction, addressing a shift from traditional diagnostic techniques to modern machine learning and deep learning methods, while maintaining a systematic and comprehensive approach. A critical review of the literature is conducted to assess the effectiveness and limitations of various predictive algorithms. This approach provides historical context, highlights outstanding research needs, and presents recent advancements. The review provides a comprehensive assessment of the challenges in predicting heart disease, which includes both the identification of specific risk factors and non-linear interactions between selected factors. The study also examines how the relationship between CVDs and kidney stones can influence the development of predictive models in the future. In conclusion, this study summarizes its key findings in a defined roadmap for future research, emphasizing the potential benefits of applying deep learning methods to enhance diagnostic precision and thus optimize patient management and outcomes.",article,0,,,"Gulhane, Monali;Kumar, Sandeep;Choudhary, Shilpa;Rakesh, Nitin;Khatri, Narendra;Tandon, Chanderdeep;Balusamy, Balamurugan;Nayyar, Anand",,,,,,,Artificial Intelligence in Medicine,,,SCOPUS,"Gulhane Monali, 2026, Artificial Intelligence in Medicine",,"Gulhane Monali, 2026, Artificial Intelligence in Medicine"
+2026,22,https://app.dimensions.ai/details/publication/pub.1197590874,Artificial intelligence in diagnosis of pediatric neurodevelopmental disorders: a scoping review,315,3,,World Journal of Pediatrics,10.1007/s12519-025-00999-z,2026-01-27,"Ramírez, María Alejandra Nieto;Rodríguez, Mateo Mariño;Salas, María José Castro;Rincón, Erwin Hernando Hernández","BackgroundNeurodevelopmental disorders are a group of conditions that affect key areas of development and may significantly impact a child’s quality of life. This underscores the importance of accurate diagnostic tools to improve outcomes. Artificial intelligence (AI) has shown measurable effectiveness for enhancing the diagnosis and monitoring of neurodevelopmental disorders. This scoping review aims to summarize the current evidence on the use of AI technologies, including deep learning, supervised machine learning, decision support systems, and biosignal analysis, in improving diagnostic accuracy for pediatric neurodevelopmental disorders.Data sourcesA systematic search was conducted across PubMed, LILACS, MEDLINE, Google Scholar, and psychology-indexed journals, covering publications from 2000 to January 2025. Keywords and Medical Subject Headings terms were used to search for and select studies, applying specific inclusion and exclusion criteria. Selection followed the Preferred Reporting Items for Systematic Reviews and Meta-Analyses extension for Scoping Reviews guidelines and included clinical studies, reviews, and validation research. The data were extracted and synthesized descriptively.ResultsTwenty-two studies were included. Deep learning models achieved diagnostic accuracies exceeding 85% in most studies in neuroimaging interpretation, whereas supervised machine learning improved the subtype classification of autism spectrum disorder and attention deficit hyperactivity disorder. Decision support systems have increased diagnostic efficiency, and biosignal-based AI has shown potential in identifying physiological markers related to neurodevelopmental disorders.ConclusionsAI technologies may significantly contribute to improving early diagnosis and clinical decision-making in pediatric neurodevelopment. However, variability in study design, population, and algorithm standardization remains a challenge. AI technologies are also facing ethical concerns such as data privacy and security, interpretability, equity and access, and algorithmic bias. Further multicenter validation and regulatory frameworks are essential for clinical translation.Graphical abstract",article,0,,,"Ramírez, María Alejandra Nieto;Rodríguez, Mateo Mariño;Salas, María José Castro;Rincón, Erwin Hernando Hernández",,,,,,,World Journal of Pediatrics,329,,SCOPUS,"Ramírez María Alejandra Nieto, 2026, World Journal of Pediatrics",,"Ramírez María Alejandra Nieto, 2026, World Journal of Pediatrics"
+2026,13,https://app.dimensions.ai/details/publication/pub.1197831453,From machine learning to digital twin integration for livestock production and research,1744053,,,Frontiers in Veterinary Science,10.3389/fvets.2026.1744053,2026-02-02,"Abdelrahman, Mohamed;Issa, Sali;Ali, Montaser Elsayed;Alotaibi, Jamal;Alshanbari, Fahad","Globally, climate change, economic crises, and increased food demand pose significant challenges to the stability of agricultural production systems, underscoring the urgent need for more innovative approaches and tools to advance livestock production science. Machine Learning (ML) development supported the Digital Twin (DT), a digital replica of a real-world entity, as a game-changer in modern livestock science, enabling the prediction, optimisation, and simulation across various research environments. At the same time, it has been shown that synergism between ML and Digital Twin (DT) can mimic animals' physiological and physical state and behavior based on input data, leading to a better understanding of animal behavior, nutritional requirements, physiological status, or environmental stressors to investigate responses and suggest precise decisions. Moreover, such animal simulation models can offer deeper insights and predictive analytical tools that support animal welfare, forecast production efficiency, and sustainability. Although traditional simulation models are mainly snapshot-state models that indicate what should happen on average, ML-DT integration serves as a living mirror, dynamically predicting what is happening right now and what will happen to each animal under various changes. This integration can be a versatile tool for introducing solutions in the research domain; however, its augmentation remains complex and poses significant ethical, economic, and governance challenges. This review discusses recent ML-DT synergism applications in both barns and labs, highlighting their potential to reform both industry and research.",article,0,,,"Abdelrahman, Mohamed;Issa, Sali;Ali, Montaser Elsayed;Alotaibi, Jamal;Alshanbari, Fahad",,,,,,,Frontiers in Veterinary Science,,,SCOPUS,"Abdelrahman Mohamed, 2026, Frontiers in Veterinary Science",,"Abdelrahman Mohamed, 2026, Frontiers in Veterinary Science"
+2026,417,https://app.dimensions.ai/details/publication/pub.1197896515,Association of urinary heavy metals with osteoporosis in US adults using interpretable machine learning,111853,,,Toxicology Letters,10.1016/j.toxlet.2026.111853,2026-02-04,"Huang, Weihuan;Liu, Dongpei;Liu, Gang;Chen, Guihua","BACKGROUND: Exposure to heavy metals in the environment has always been the focus of public concern. More and more evidence suggests that heavy metal exposure may lead to bone degeneration and an increased risk of pathological fractures. In this study, we analyzed the data of NHANES (National Health and Nutrition Survey) and applied nine machine learning models to check the relationship between heavy metal exposure and osteoporosis.
+METHODS: The data originates from NHANES conducted during the periods of 2003-2004,2005-2006,2007-2008,2009-2010,2013-2014 and 2017-2018 and is utilized for the development of machine learning models. The Spearman Correlation analysis was employed to identify the relationships among all independent variables, while the Boruta algorithm was utilized for feature selection. The chosen data was equilibrated with SMOTE and partitioned into training and testing sets in a 7:3 ratio. Support Vector Machine, Gradient Boosting Machine, Neural Network, Random Forest, XGBoost, K-Nearest Neighbors, AdaBoost, LightGBM, and CatBoost were employed to construct machine learning models. The optimum model was chosen for further research based on area under the curve (AUC), accuracy, sensitivity, specificity, precision, and F1 score. The Shapley additive explanation (SHAP) method was employed to elucidate the contribution of variables to the machine learning model.
+RESULTS: The XGBoost model among nine machine learning models demonstrated the best and most balanced performance in evaluating the correlation between heavy metal exposure and osteoporosis (AUC value of 0.834), significantly outperforming the other eight models. It achieved an accuracy of 0.822, sensitivity of 0.709, specificity of 0.830. Age was identified as the primary influencing factor in this machine learning model (mean |SHAP| = 0.30). Based on SHAP feature importance, the metals were ranked (descending) as Tl, Pb, Cd, Ba, Mo, Sb, Cs, Co and Tu, with Tl showing the strongest contribution to osteoporosis prediction.SHAP dependency plots and waterfall plots further illustrate the decision-making mechanism of the model.
+CONCLUSIONS: In this study, the XGBoost model showed better performance than the other eight models. Among the nine types of urine metals, thallium (Tl) is the most important variable in the prediction of osteoporosis in machine learning models. Among all independent variables, age and gender are considered the most important components of the model. Subsequent research should develop more sophisticated algorithms to authenticate these findings and adjust relevant parameters to improve the model's precision.",article,0,,,"Huang, Weihuan;Liu, Dongpei;Liu, Gang;Chen, Guihua",,,,,,,Toxicology Letters,,,SCOPUS,"Huang Weihuan, 2026, Toxicology Letters",,"Huang Weihuan, 2026, Toxicology Letters"
+2026,37,https://app.dimensions.ai/details/publication/pub.1197912714,Machine learning to predict elevated lipoprotein(a),58,2,,Current Opinion in Lipidology,10.1097/mol.0000000000001024,2026-01-28,"Aminorroaya, Arya;Khera, Rohan","PURPOSE OF REVIEW: Lipoprotein(a), Lp(a), is a genetically determined, lifelong risk factor for atherosclerotic cardiovascular disease (ASCVD). Despite broad guideline support for universal one-time testing, Lp(a) measurement remains rare in clinical practice. This review summarizes recent advances in machine learning-based strategies that can enhance the efficiency, yield, and equity of Lp(a) screening.
+RECENT FINDINGS: To date, three studies have developed and validated machine learning models to identify individuals with elevated Lp(a) using routinely available clinical variables. The ARISE framework, derived from the UK Biobank and validated across multiple US cohorts, reduced the number needed to test by more than 50% while maintaining consistent discrimination across demographic subgroups. Additional studies have confirmed the feasibility of decision-tree and neural network models to improve case finding for elevated Lp(a) in both clinical and population-based settings.
+SUMMARY: Machine learning-based strategies provide a scalable means of operationalizing universal Lp(a) testing recommendations within health systems. When developed using unbiased data, externally validated, and assessed for fairness and interpretability, these models can support systematic identification of individuals with elevated Lp(a) and integration of Lp(a) measurement into routine cardiovascular risk assessment.",article,0,,,"Aminorroaya, Arya;Khera, Rohan",,,,,,,Current Opinion in Lipidology,64,,SCOPUS,"Aminorroaya Arya, 2026, Current Opinion in Lipidology",,"Aminorroaya Arya, 2026, Current Opinion in Lipidology"
+2026,296,https://app.dimensions.ai/details/publication/pub.1198101713,Commercialization path of data-driven green catalytic technology: the application of machine learning in technology lifecycle management,123925,,,Environmental Research,10.1016/j.envres.2026.123925,2026-02-08,"Zhou, Tingfa;Hu, Chao","In the context of the global strategy of sustainable development and carbon neutrality, green catalytic technology, as the core of achieving efficient and clean chemical conversion, has a complex and uncertain path from laboratory innovation to large-scale commercial application. The traditional R&D and commercialization models are often limited by bottlenecks such as high trial and error costs, long cycles, and difficulties in coupling and analyzing multi-scale factors. This review is based on the perspective of technology lifecycle management and systematically explores how data-driven paradigms, especially machine learning methods, can profoundly reshape the full chain management logic of green catalytic technology from conceptual design, process development, engineering scaling up to market deployment. The article first analyzes the core challenges and data requirements of each stage of commercialization of green catalytic technology (basic research, concept validation, process optimization, pilot scale, commercial operation), pointing out that it is essentially a complex system optimization problem with multiple objectives and constraints. Furthermore, this article provides an in-depth overview of the cutting-edge applications and typical cases of machine learning in key areas such as intelligent design and screening of catalytic materials (such as high-throughput virtual screening, structure-activity relationship modeling), reaction mechanism analysis and kinetic simulation, intelligent optimization of reactor design and process conditions, as well as full lifecycle environmental impact and economic technology analysis. The advantages and limitations of different paradigms such as supervised learning, unsupervised learning, reinforcement learning, and generative models in solving specific problems were analyzed in detail. Finally, this article critically summarizes the common challenges faced by the current data-driven path, including the scarcity of high-quality datasets, interpretability and physical consistency of models, and integration difficulties in cross scale modeling. It also looks forward to future research directions, such as physical information machine learning that integrates domain knowledge, the construction of standardized data platforms, and the development of intelligent decision support systems for human-machine collaboration. This review aims to provide a systematic framework and forward-looking guidance for interdisciplinary research in the fields of catalytic science, chemical engineering, and data science, accelerating the commercialization of green catalytic technology in a more efficient and predictable manner, and serving the construction of green manufacturing systems.",article,0,,,"Zhou, Tingfa;Hu, Chao",,,,,,,Environmental Research,,,SCOPUS,"Zhou Tingfa, 2026, Environmental Research",,"Zhou Tingfa, 2026, Environmental Research"
+2026,39,https://app.dimensions.ai/details/publication/pub.1198255572,Machine learning for hemodynamic instability prediction and hemorrhage management in trauma and perioperative care,136,2,,Current Opinion in Anesthesiology,10.1097/aco.0000000000001624,2026-02-11,"Le, Joshua;Rusin, Walter;Joosten, Alexandre;Cannesson, Maxime;Pal, Ravi","PURPOSE OF REVIEW: Hemodynamic instability and uncontrolled hemorrhage remain leading causes of preventable morbidity and mortality in trauma and perioperative critical care. This review summarizes recent advances in machine learning-based approaches for early detection before overt decompensation and for supporting time-critical hemorrhage management in trauma patients.
+RECENT FINDINGS: Recent studies have explored machine learning across multiple stages of trauma care, including early warning systems, outcome and mortality prediction, prediction of massive transfusion needs, risk stratification, and bleeding monitoring. Outcome prediction - particularly mortality and complications such as sepsis - remains one of the most extensively studied domains. More recent work has increasingly favored neural network-based architectures, including deep and hybrid models, reflecting their capacity to model complex, high-dimensional, and temporal physiologic data, while ensemble methods such as extreme gradient boosting remain widely used due to their robustness to missing data and class imbalance. Although many models outperform traditional clinical scores in retrospective analyses, performance frequently declines during external validation, and few systems have demonstrated clinical impact in prospective or workflow-integrated settings.
+SUMMARY: Machine learning-based predictive analytics show promise for anticipating hemodynamic instability and guiding hemorrhage management before conventional vital-sign thresholds are crossed. However, clinical adoption remains constrained by data quality, generalizability, interpretability, and integration into time-critical workflows. Future progress will depend on incremental performance gains and physiology-informed model design, rigorous external validation, and careful positioning of machine learning tools as decision-support systems that augment - rather than replace - clinician judgment.",article,0,,,"Le, Joshua;Rusin, Walter;Joosten, Alexandre;Cannesson, Maxime;Pal, Ravi",,,,,,,Current Opinion in Anesthesiology,143,,SCOPUS,"Le Joshua, 2026, Current Opinion in Anesthesiology",,"Le Joshua, 2026, Current Opinion in Anesthesiology"
+2026,39,https://app.dimensions.ai/details/publication/pub.1198255575,Artificial intelligence and predictive analytics in obstetric anesthesia: early warning for maternal complications,231,3,,Current Opinion in Anesthesiology,10.1097/aco.0000000000001613,2026-02-11,"Kovacheva, Vesela P.;Burns, Michael L.","PURPOSE OF REVIEW: Maternal morbidity and mortality remain largely preventable, yet current risk-assessment tools identify only a fraction of women who experience severe complications. This review synthesizes recent advances in artificial intelligence and machine learning for early prediction, decision support, and procedural guidance in obstetric anesthesia, with a focus on postpartum hemorrhage, hypertensive disease, sepsis, hemodynamic instability, neuraxial procedures, and peripartum pain.
+RECENT FINDINGS: Recently, electronic health record (EHR)-integrated and imaging-based machine learning models have outperformed traditional risk scores for postpartum hemorrhage, placenta accreta spectrum, and pre-eclampsia, and are beginning to incorporate multiomics and genetic data. Obstetric-specific early warning systems and parsimonious machine learning models for maternal sepsis and epidural-related fever show promise but remain limited by sensitivity and external validation. Waveform analytics, noninvasive hemodynamic indices, and artificial intelligence-assisted ultrasound can anticipate hypotension and enhance neuraxial and regional block placement. Machine learning frameworks for postcesarean and chronic postpartum pain, together with virtual reality interventions, support more individualized analgesia.
+SUMMARY: Artificial intelligence-enabled tools are poised to augment, rather than replace, clinician judgment in obstetric anesthesia. Real-world impact will depend on rigorous external validation, equitable implementation, interpretable model design, seamless EHR integration, and close collaboration between clinicians, data scientists, and vendors.",article,0,,,"Kovacheva, Vesela P.;Burns, Michael L.",,,,,,,Current Opinion in Anesthesiology,239,,SCOPUS,"Kovacheva Vesela P., 2026, Current Opinion in Anesthesiology",,"Kovacheva Vesela P., 2026, Current Opinion in Anesthesiology"
+2026,16,https://app.dimensions.ai/details/publication/pub.1198515393,Time series electrocardiography (ECG) data for early prediction of cardiac arrest,9761,1,,Scientific Reports,10.1038/s41598-026-35788-9,2026-02-18,"Umair, M. Khurram;Waheed, Rabbia;Abrar, Muhammad Faisal;Ali, Sikandar;Lee, It Ee;Jan, Salman;Shaheen, Farah","Artificial intelligence is revolutionizing modern healthcare by enabling more precise and predictive diagnostics. In cardiology, AI is playing a vital role by assisting medical practitioners in analyzing complex electrocardiography (ECG) patterns with greater accuracy. As cardiovascular diseases continue to be a leading cause of mortality globally, the early prediction of sudden cardiac arrest remains a significant clinical challenge. This study explores the application of both machine learning (ML) and deep learning (DL) techniques of time series ECG data for the early prediction of life-threatening cardiac events. The analysis confirms that deep learning models excel at detecting intricate patterns by automatically learning features directly from raw data, though they often demand large datasets and substantial computational resources. In contrast, traditional machine learning approaches are more computationally efficient and interpretable, making them a practical choice for resource-constrained environments. Experimental results demonstrate the superior performance of deep learning models, with a Convolutional Neural Network (CNN) achieving an accuracy of 99.89%. Among machine learning models, the Random Forest classifier performed best, achieving an accuracy of 99.06% and highlighting the reliability of ensemble learning methods. These findings demonstrate the significant potential of AI-based ECG analysis to improve early diagnosis and clinical decision making.",article,0,,,"Umair, M. Khurram;Waheed, Rabbia;Abrar, Muhammad Faisal;Ali, Sikandar;Lee, It Ee;Jan, Salman;Shaheen, Farah",,,,,,,Scientific Reports,,,SCOPUS,"Umair M. Khurram, 2026, Scientific Reports",,"Umair M. Khurram, 2026, Scientific Reports"
+2026,96,https://app.dimensions.ai/details/publication/pub.1198639605,Predicting Surgical Outcomes in Breast Reconstruction With Machine Learning,s159,4S,,Annals of Plastic Surgery,10.1097/sap.0000000000004667,2026-02-19,"Rosenbloom, Ashton;Gasbeck, Thomas;Mamoun, Lana;Shah, Nikhil;Nanda, Asha;Lee, Gordon","INTRODUCTION: The applications of artificial intelligence (AI) in plastic surgery have grown considerably in recent years. As large patient datasets become more accessible, surgeons are increasingly leveraging machine learning (ML), a subset of AI, to predict patient outcomes and guide surgical decision-making. This review evaluates the relative performance of ML prediction models in breast reconstruction.
+METHODS: A systematic review was conducted utilizing PubMed, Scopus, and EMBASE according to Preferred Reporting Items for Systematic Reviews and Meta-Analyses guidelines. Studies using ML to predict patient outcomes in breast reconstruction were included. The type of ML model and the specific outcome measures were reported. Performance of the models was reported as area under the receiver operating characteristic curve and compared using descriptive statistics, multivariate linear regression, and random-effects meta-regression in RStudio.
+RESULTS: Our search yielded 1025 citations, of which 24 were assessed for eligibility. Fourteen studies met the inclusion criteria and were sought for data extraction. There were 19 ML models and 11,013 patients assessed across 92 testing conditions. Models were trained on varying patient demographics, comorbidities, and operative characteristics, whereas outcomes assessed included various surgical complications or patient satisfaction using BREAST-Q. The median area under the receiver operating characteristic curve of all models was 0.71 (interquartile range = 0.16). When adjusting for the number of patients, number of predictors, ML model category, and outcome of interest, models predicting BREAST-Q performed higher with skin necrosis used as the reference outcome (β = 0.13, P < 0.01). After adjusting for number of patients and predictors, models that employed strategies to mitigate class imbalance were associated with higher model discrimination (β = 0.038; 95% CI, 0.002-0.075; P = 0.041).
+CONCLUSION: Machine learning applications for risk prediction and surgical planning are growing rapidly. The models evaluated in this review demonstrated the ability to predict a variety of outcomes, with models predicting BREAST-Q, various surgical outcomes, and those reporting class imbalance methods leading to higher model discrimination. Notably, covariate adjustment and study heterogeneity may have impacted these associations. As ML models are increasingly integrated into plastic surgery practice, standardized reporting practices are essential to promote reproducibility and cross-study comparison.",article,0,,,"Rosenbloom, Ashton;Gasbeck, Thomas;Mamoun, Lana;Shah, Nikhil;Nanda, Asha;Lee, Gordon",,,,,,,Annals of Plastic Surgery,s172,,SCOPUS,"Rosenbloom Ashton, 2026, Annals of Plastic Surgery",,"Rosenbloom Ashton, 2026, Annals of Plastic Surgery"
+2026,,https://app.dimensions.ai/details/publication/pub.1198785649,Research progress of machine learning applications in gastric cancer diagnosis and therapy,1,,,Clinical and Translational Oncology,10.1007/s12094-026-04279-8,2026-02-26,"Cui, Wen-Zhuo;Wen, Cheng-Quan;Li, Chao-Qun;Zhang, Qiu-Jie;Yu, Qing-Qing;Sun, Wei-Wei","Gastric cancer (GC), a malignant neoplasm originating from the gastric mucosal epithelium, represents one of the most prevalent cancers worldwide. Early detection is critical for improving treatment outcomes and patient prognosis. Recent advances in artificial intelligence (AI), particularly in machine learning, have introduced powerful computational and analytical capabilities that are increasingly being applied in GC research. Machine learning algorithms have shown considerable promise in enhancing the accuracy of GC diagnosis and optimizing therapeutic strategies. This review provides a concise overview of progress in machine learning applications within oncology, examines their current role and clinical utility in GC diagnosis and treatment, and highlights the transformative potential of machine learning in advancing GC management and patient care.",article,0,,,"Cui, Wen-Zhuo;Wen, Cheng-Quan;Li, Chao-Qun;Zhang, Qiu-Jie;Yu, Qing-Qing;Sun, Wei-Wei",,,,,,,Clinical and Translational Oncology,15,,SCOPUS,"Cui Wen-Zhuo, 2026, Clinical and Translational Oncology",,"Cui Wen-Zhuo, 2026, Clinical and Translational Oncology"
+2026,17,https://app.dimensions.ai/details/publication/pub.1198798817,Overview in Machine-Learning-Assisted Sensing Techniques for Monitoring COVID-19,283,3,,Micromachines,10.3390/mi17030283,2026-02-25,"Feng, Yan;La, Ming","Viruses suddenly emerging from obscurity or anonymity affect our quality of life and increase incidence rate and mortality. A typical example is the global coronavirus disease 2019 (COVID-19) pandemic. Although severe acute respiratory syndrome coronavirus 2, known as the pathogen of COVID-19 has been significantly eliminated, its monitoring is still crucial, as the infectious disease may break out again. Therefore, it is necessary to develop simple and effective tools for monitoring COVID-19 and other diseases. Here, we summarize the progress of machine-learning-based biosensors in the monitoring and management of COVID-19. This article mainly includes three sections: machine learning algorithms, machine-learning-assisted biosensors, and challenges and future perspectives. We believe that this work is valuable for developing artificial-intelligence-based innovative analytical devices for healthcare monitoring and management of COVID-19 and other infectious diseases.",article,0,,,"Feng, Yan;La, Ming",,,,,,,Micromachines,,,SCOPUS,"Feng Yan, 2026, Micromachines",,"Feng Yan, 2026, Micromachines"
+2026,384,https://app.dimensions.ai/details/publication/pub.1198860710,Resource constrained learning over wireless networks,20240508,2315,,"Philosophical Transactions of the Royal Society A: Mathematical, Physical and Engineering Sciences",10.1098/rsta.2024.0508,2026-02-26,"Poor, H. Vincent","It is anticipated that the next generation of wireless networks will incorporate artificial intelligence (AI) to a significant degree at all network layers. A major part of this trend is the migration of AI and machine learning functions to the network edge. There are several reasons for this: (i) a growing number of AI applications demand implementations involving end-user devices, (ii) much data of interest are collected at the network edge, and (iii) fog/edge computing has emerged to take advantage of the increasing sophistication of end-user devices. A notable framework for engaging the wireless network edge in machine learning is wireless federated learning, in which multiple end-user devices collaborate with the help of an aggregator to build a common model, each using its local data. In this framework, exchanges between end-user devices and the aggregator necessarily take place over wireless links. Since wireless networks are notoriously resource-limited, this creates a situation in which the interactions between the wireless medium and machine learning algorithms must be considered as a factor in the design and implementation of AI applications. This paper explores aspects of this problem, including trade-offs among energy consumption and other criteria such as bandwidth efficiency, learning rate and data privacy. This article is part of the discussion meeting issue 'Bits, neurons and qubits for sustainable AI'.",article,0,,,"Poor, H. Vincent",,,,,,,"Philosophical Transactions of the Royal Society A: Mathematical, Physical and Engineering Sciences",,,SCOPUS,"Poor H. Vincent, 2026, Philosophical Transactions of the Royal Society A: Mathematical, Physical and Engineering Sciences",,"Poor H. Vincent, 2026, Philosophical Transactions of the Royal Society A: Mathematical, Physical and Engineering Sciences"
+2026,,https://app.dimensions.ai/details/publication/pub.1198952467,Systematic Review of Studies Investigating Infant Feeding Difficulties: Focus on Machine Learning Applications,,,,Journal of Pediatric Health Care,10.1016/j.pedhc.2026.01.009,2026-03-02,"Ji, Eun Sun;Lee, Kyoung Ju;Chung, Yoon Chung","INTRODUCTION: This study aims to systematically review studies using machine learning for infant feeding difficulties and identify the clinical applicability and limitations of such approaches.
+METHODS: A literature search was conducted in accordance with the PRISMA guidelines. Studies on the use of machine learning for infants with feeding difficulties were analyzed.
+RESULTS: We screened 1,104 studies, and 10 were eligible for inclusion. These studies applied machine learning to measure physiological signals during feeding, such as the number of sucking, swallowing and breathing events, to classify or predict feeding difficulties. The most common algorithms in the analyzed studies included support vector machines (SVMs), k-nearest neighbors (KNNs), and decision trees (DTs), which generally achieved high classification accuracy.
+DISCUSSION: Although all included studies used sensor-based data, only four directly applied machine learning models. Future research should expand the direct applications of machine learning, standardize measurements, and validate algorithms to improve clinical utility.",article,0,,,"Ji, Eun Sun;Lee, Kyoung Ju;Chung, Yoon Chung",,,,,,,Journal of Pediatric Health Care,,,SCOPUS,"Ji Eun Sun, 2026, Journal of Pediatric Health Care",,"Ji Eun Sun, 2026, Journal of Pediatric Health Care"
+2026,68,https://app.dimensions.ai/details/publication/pub.1199161800,Machine learning in the analysis of mental health at work: a scoping review,uiag014,1,,Journal of Occupational Health,10.1093/joccuh/uiag014,2026-01-06,"Varje, Pekka;Väänänen, Ari;Haavisto, Olli;Kivimäki, Ilkka;Taimela, Simo;Kalliomäki-Levanto, Tiina","OBJECTIVES: This scoping review aimed to assess the role of machine learning in workplace mental health research by systematically analyzing existing studies to understand current methodologies, applications, and trends.
+METHODS: We conducted a comprehensive search across multiple databases, including EBSCO, Scopus, ProQuest, Web of Science, PsycINFO, IEEE, and ACM, screening a total of 5600 abstracts. Altogether, we analyzed 92 journal articles, conference papers, and book chapters published before September 2025.
+RESULTS: Since 2020, there has been a notable increase in publications on the topic. Studies have mainly employed cross-sectional designs (73%) and workplace questionnaires (51%) targeting specific occupational groups (67%), particularly from Asia excluding China (41%). Supervised learning methods, such as Random Forest and Neural Networks, have been frequently utilized to investigate conditions like depression, burnout, and anxiety. Most studies predicting mental health at work using machine learning are currently conducted by data scientists as single-measurement studies, whereas longitudinal studies from medicine, epidemiology, social sciences, or behavioral sciences are comparatively rare. In the context of machine learning, prediction denotes the model's ability to infer outcomes based on input data. However, most publications do not systematically analyze the temporal dynamics of mental health or forecast mental health outcomes from an epidemiological perspective.
+CONCLUSIONS: The application of machine learning in occupational mental health research remains in its preliminary stages, with a primary focus on methodology and computer science. The review highlights the necessity for interdisciplinary collaboration to fully leverage the potential of machine learning in advancing occupational health research.",article,0,,,"Varje, Pekka;Väänänen, Ari;Haavisto, Olli;Kivimäki, Ilkka;Taimela, Simo;Kalliomäki-Levanto, Tiina",,,,,,,Journal of Occupational Health,,,SCOPUS,"Varje Pekka, 2026, Journal of Occupational Health",,"Varje Pekka, 2026, Journal of Occupational Health"
+2026,118,https://app.dimensions.ai/details/publication/pub.1199257364,Machine Learning‐Based Risk Prediction Models for Pregnancy‐Related Syndromes,e70038,3,,Birth Defects Research,10.1002/bdr2.70038,2026-03-12,"Wu, Yanqi","BACKGROUND: Pregnancy-related syndromes, such as hypertensive disorders, gestational diabetes mellitus, and preterm birth, pose a significant global health burden, affecting maternal and fetal outcomes. Traditional screening methods, reliant on isolated biomarkers or linear models, often fail to address the complex pathophysiology of these conditions.
+METHOD: This review synthesizes current literature on machine learning applications in obstetric care, analyzing multimodal data integration from electronic health records, biochemical markers, multi-omics, and imaging. It outlines model development workflows, including preprocessing for class imbalance (e.g., SMOTE) and interpretability tools (e.g., SHAP), while addressing ethical and technical challenges.
+RESULTS: Ensemble methods (e.g., Random Forest, XGBoost) and deep learning (e.g., CNNs) outperform logistic regression, achieving AUC values > 0.90. Key advancements include federated learning for privacy and bias mitigation strategies to enhance generalizability across populations.
+CONCLUSIONS: Machine learning-based models enable predictive, preventive, and personalized obstetrics, facilitating early interventions and improved perinatal outcomes, though external validation and regulatory frameworks are essential for clinical adoption.",article,0,,,"Wu, Yanqi",,,,,,,Birth Defects Research,,,SCOPUS,"Wu Yanqi, 2026, Birth Defects Research",,"Wu Yanqi, 2026, Birth Defects Research"
+2026,16,https://app.dimensions.ai/details/publication/pub.1199352334,Progress in Machine Learning-Assisted Biosensors for Alzheimer’s Disease,161,3,,Biosensors,10.3390/bios16030161,2026-03-13,"Feng, Yan;Chen, Changdong","Alzheimer's disease (AD) is the most common cause of dementia, affecting 55 million people worldwide. Its characteristics include the accumulation of senile plaques and neurofibrillary tangles. This disease is associated with changes in the concentration of AD biomarkers, such as microRNAs, amyloid peptides, Tau protein, and neurofilament light chains. Due to the fact that neuropathological processes begin decades before the onset of cognitive symptoms, accurate detection of AD biomarkers is crucial for its early diagnosis. The combination of analytical techniques and machine learning methods plays a crucial role in medical innovation. Recently, efforts have been made to develop machine learning-assisted biosensors for AD diagnosis. This article provides an overview of the progress in machine learning-assisted sensing of AD biomarkers in bodily fluids. It mainly includes three parts: machine learning algorithms, machine learning-assisted electrochemical and optical biosensors, and challenges and future perspectives. We believe that this work will contribute to the development of innovative analytical devices based on artificial intelligence for monitoring and managing neurodegenerative diseases.",article,0,,,"Feng, Yan;Chen, Changdong",,,,,,,Biosensors,,,SCOPUS,"Feng Yan, 2026, Biosensors",,"Feng Yan, 2026, Biosensors"
+2026,17,https://app.dimensions.ai/details/publication/pub.1199414061,Machine learning studies of drug-induced nephrotoxicity: a scoping review,20420986261430234,,,Therapeutic Advances in Drug Safety,10.1177/20420986261430234,2026-03-15,"Ihsan, Mawardi;Chang, Shu-Ting;Chan, Wei-Kai;Chen, Hsiang-Yin","Background: Machine learning methods have emerged as a promising approach to prevent drug-induced nephrotoxicity.
+Objective: This review evaluates the quality and highlights recent advances of machine learning algorithms for predicting drug-induced nephrotoxicity.
+Eligibility criteria: Studies on machine learning models to predict drug-induced acute kidney injury, acute kidney disease, or both published between January 2014 and August 2024 were eligible.
+Sources of evidence: A comprehensive search was conducted by using PubMed, Embase, Web of Science, Cochrane Library, and Scopus.
+Charting methods: A standardized charting form was developed based on CHARMS, TRIPOD+AI, and PROBAST tools to assess the quality and risk of bias across studies.
+Results: From the initial 5,179 articles searched, 24 studies were included in this review. All studies achieved good area under the receiver operating characteristic curves (AUROCs) above 0.75, with boosting machines being the most frequently outperforming algorithms (n = 7, 29.17%), and neural networks showed the highest median AUROC of 0.90 (0.86-0.92). Two-thirds of studies (n = 16; 66.67%) predicted acute kidney injury, whereas only 5 (20.83%) focused on acute kidney disease. Estimated glomerular filtration rate, blood urea nitrogen, serum creatinine, hemoglobin, and albumin emerged as the most utilized features by 10 (41.67%), 9 (37.5%), 9 (37.5%), 8 (33.33%), and 8 (33.33%) studies, respectively. Diabetes, heart failure, diuretics, and non-steroidal anti-inflammatory drugs were frequently selected features by 7 (29.17%), 5 (20.83%), 5 (20.83%), and 4 (16.67%) studies, respectively. The 2025 PROBAST+AI risk-of-bias assessment indicated that 7 (29.17%) studies had a low risk of bias. A high risk of bias was observed in 20 (83.33%), 18 (75%), and 17 (70.83%) studies due to insufficient performance evaluation, small sample sizes, and lack of external validation.
+Conclusion: Recent machine learning studies have demonstrated great performance using clinically obtainable features. Incorporating acute kidney injury and disease, methodological enhancement, and guideline adherence can facilitate clinical applicability in preventing drug-induced nephrotoxicity.",article,0,,,"Ihsan, Mawardi;Chang, Shu-Ting;Chan, Wei-Kai;Chen, Hsiang-Yin",,,,,,,Therapeutic Advances in Drug Safety,,,SCOPUS,"Ihsan Mawardi, 2026, Therapeutic Advances in Drug Safety",,"Ihsan Mawardi, 2026, Therapeutic Advances in Drug Safety"
+2026,6,https://app.dimensions.ai/details/publication/pub.1200032947,Machine learning approaches for biomarker discovery using single-cell RNA sequencing,1767362,,,Frontiers in Bioinformatics,10.3389/fbinf.2026.1767362,2026-04-02,"Dewa, Gabriel;Munier, C. Mee Ling;Ballouz, Sara;Louie, Raymond","The application of single-cell RNA sequencing (scRNA-seq) for biomarker discovery promises unprecedented resolution in identifying potential biomarkers by capturing and analysing cellular heterogeneity. Traditionally, biomarker discovery efforts within single-cell transcriptomics have primarily relied on conventional statistical approaches, particularly through the application of differential gene expression analysis, to identify candidate biomarkers. However, in recent years, with the rapid advancement and growing popularity of artificial intelligence and machine learning, their application in scRNA-seq biomarker discovery has become increasingly prominent. Currently, machine learning-based approaches for scRNA-seq biomarker discovery exhibit considerable methodological diversity, which can be distinguished by factors such as the level of discovery, choice of supervised learning algorithm, feature selection methods, classification metrics, and downstream biological analyses. This review provides a comprehensive overview of the current landscape of machine learning methods for scRNA-seq biomarker discovery, offering researchers a complete and detailed understanding of the field.",article,0,,,"Dewa, Gabriel;Munier, C. Mee Ling;Ballouz, Sara;Louie, Raymond",,,,,,,Frontiers in Bioinformatics,,,SCOPUS,"Dewa Gabriel, 2026, Frontiers in Bioinformatics",,"Dewa Gabriel, 2026, Frontiers in Bioinformatics"
+2026,17,https://app.dimensions.ai/details/publication/pub.1200266866,Machine learning-driven model construction for automated classification of cognitive styles,1774233,,,Frontiers in Psychology,10.3389/fpsyg.2026.1774233,2026-04-09,"Wu, Xiangwen;Feng, Jing;Ma, Jianjun;Li, Yu;Sun, Jiuning","Accurate identification of cognitive styles is important for personalized learning environment optimization and human-computer interaction system design. Traditional self-report measures suffer from subjectivity bias, so this study developed a machine learning classification model based on objective physiological data. Focusing on the distinction between verbal and representational cognitive styles, the study collected eye-movement data from 85 participants in a standardized cognitive task via eye-tracking technology. We extracted multidimensional eye-movement features and systematically evaluated the classification performance of six machine learning algorithms: decision tree (DT), K-nearest neighbor algorithm (KNN), plain Bayes (NB), support vector machine (SVM), logistic regression (LR), and integrated learning model (EL). Experimental results show that all algorithms can effectively utilize eye movement features for cognitive style classification, with SVM performing optimally, after optimizing the parameters using the grid optimization method, achieving 82.1% classification accuracy (F1 = 0.715). The method proposed in this study provides a new way for non-invasive assessment of cognitive styles, which can be applied to real-time adaptive learning systems. The research results provide important insights into the development of personalization of educational technology, adaptive design of learning interfaces, and cognitive-perceptual computing systems, and provide valuable references for the fields of educational psychology and human-computer interaction research.",article,0,,,"Wu, Xiangwen;Feng, Jing;Ma, Jianjun;Li, Yu;Sun, Jiuning",,,,,,,Frontiers in Psychology,,,SCOPUS,"Wu Xiangwen, 2026, Frontiers in Psychology",,"Wu Xiangwen, 2026, Frontiers in Psychology"
+2026,156,https://app.dimensions.ai/details/publication/pub.1200289401,"Machine Learning and Artificial Intelligence in Nutrition Research: Analytical Methods, Applications, and Key Considerations",101528,6,,The Journal of Nutrition,10.1016/j.tjnut.2026.101528,2026-04-09,"Southey, Nicole L;Zhu, Ruoqing;Holscher, Hannah D","BACKGROUND: Nutrition research is increasingly using artificial intelligence and machine learning to address analytical challenges posed by high-dimensional data and to enable personalized recommendations and health predictions.
+OBJECTIVE: This review provides an overview of machine learning techniques and their application in nutrition research.
+METHODS: The article is structured according to the steps of a typical analysis pipeline. First, we outline data quality control, preprocessing, and classical statistical tests for detecting group differences, assessing covariate associations, and prescreening input features. Next, dimension reduction and visualization methods such as principal component analysis, t-distributed stochastic neighbor embedding, and uniform manifold approximation and projection are presented to simplify high-dimensional data and reveal nutrition indicators. Supervised learning approaches that support classification and outcome prediction are then reviewed, followed by unsupervised learning methods for clustering unlabeled observations. Integrative tools combining approaches such as canonical correlation analysis and supervised multiblock methods are discussed for their suitability in multiomics and multimodal studies. A comparison of commonly used supervised approaches is presented, including random forest, gradient boosting regression, penalized regression methods, least absolute shrinkage and selection operator, support vector machines, and k-nearest neighbors. Deep learning techniques, including convolutional neural networks, recurrent neural networks, long short-term memory models, natural language processing, and large language models, are highlighted for analyzing unstructured, sequential, and text-based data. To ensure the reproducibility and generalizability of findings, we discuss strategies for model validation, including cross-validation, external replication, and permutation testing. We also discuss practical considerations for implementing advanced analytical approaches in nutrition research, such as interpretability, sample size constraints, and overfitting, to guide responsible implementation.
+RESULTS: A range of manuscripts were reviewed to provide vignettes exemplifying the use of artificial intelligence and machine learning in nutrition research, highlighting key methodological approaches and representative applications across diverse data types.
+CONCLUSIONS: Collectively, this review provides a framework for understanding and thoughtfully applying machine learning approaches to nutrition research.",article,0,,,"Southey, Nicole L;Zhu, Ruoqing;Holscher, Hannah D",,,,,,,The Journal of Nutrition,,,SCOPUS,"Southey Nicole L, 2026, The Journal of Nutrition",,"Southey Nicole L, 2026, The Journal of Nutrition"
+2026,27,https://app.dimensions.ai/details/publication/pub.1200492986,Use of Artificial Intelligence in the Interpretation of Electroretinography (ERG) Studies,3491,8,,International Journal of Molecular Sciences,10.3390/ijms27083491,2026-04-14,"Hegde, Manasi;Thomis, Alexander;Shirke, Sheetal","Electroretinograms are an important diagnostic tool to measure retinal electrical activity. However, their interpretation, done by sub-specialised ophthalmologists, can be not only time consuming but also challenging to obtain due to availability. In recent years, studies have investigated the use of artificial intelligence in the analysis of electroretinograms. This systematic review summarises the accuracy of artificial intelligence in interpreting electroretinograms and appraises the studies included. The review comprises primary, peer-reviewed published studies that determined accuracy of artificial intelligence by comparison to an expert ophthalmologist. In the 14 studies retrieved from databases and published between 2006 and 2025, machine learning was the most widely used artificial intelligence, with an accuracy rate between 39.3% and 100%. Overall, the ""artificial neural network"" machine learning tool was the most accurate. Quality assessment of the studies demonstrated high bias in patient selection but robustness in the methodology for the reference standard, flow and timing. The results revealed potential benefits in the real-world use of artificial intelligence in ophthalmic diagnostic testing; however, the variability in results suggests a requirement for further investigation prior to clinical implementation.",article,0,,,"Hegde, Manasi;Thomis, Alexander;Shirke, Sheetal",,,,,,,International Journal of Molecular Sciences,,,SCOPUS,"Hegde Manasi, 2026, International Journal of Molecular Sciences",,"Hegde Manasi, 2026, International Journal of Molecular Sciences"
+2026,9,https://app.dimensions.ai/details/publication/pub.1200664829,Maize yield prediction using machine learning: a systematic literature review,1735157,,,Frontiers in Artificial Intelligence,10.3389/frai.2026.1735157,2026-04-20,"Nyengere, Jabulani;Tchuwa, Frank;Tholo, Harineck Mayamiko;Malalu, Lucius;Njala, Allena Laura;Kachulu, Petros;Maganga, Rodney;Matewere, Brenda;Jamu, Lackson;Nyirenda, Clement;Kanjira, Jones;Chabwera, Macdonald;Nalivata, Patson;Mwase, Weston;Mwangwela, Agness","Introduction: Accurate maize yield prediction is critical for food security planning, particularly in sub-Saharan Africa, where maize is essential to national economies and livelihoods. This systematic review assesses the use of machine learning (ML) techniques in maize yield estimation, focusing on the methodologies, predictor variables, and results in peer-reviewed studies.
+Methods: The review followed the PRISMA 2021 guidelines, synthesizing 81 peer-reviewed studies published between 2014 and 2025. The analysis examined the ML algorithms, predictor variables, evaluation metrics, and methodological gaps identified in these studies.
+Results: The review found a significant increase in publications after 2021, reflecting growing confidence in the application of ML for agronomic decision-support. Random Forest (49.4%), XGBoost (16.1%), and Support Vector Machines (12.4%) were the most common algorithms, with hybrid deep-learning frameworks showing superior performance. Environmental variables, remote-sensing indices, and soil properties were the most frequently used predictors. RMSE and R 2 were the primary evaluation metrics.
+Discussion: The findings underscore the challenges of data scarcity, limited interpretability, and geographical imbalance in the research, with Africa contributing less than 25% of the studies. There is a need for open-access agricultural data systems, hybrid explainable AI frameworks, and capacity building in computational agronomy to improve the effectiveness of ML applications in maize yield prediction.",article,0,,,"Nyengere, Jabulani;Tchuwa, Frank;Tholo, Harineck Mayamiko;Malalu, Lucius;Njala, Allena Laura;Kachulu, Petros;Maganga, Rodney;Matewere, Brenda;Jamu, Lackson;Nyirenda, Clement;Kanjira, Jones;Chabwera, Macdonald;Nalivata, Patson;Mwase, Weston;Mwangwela, Agness",,,,,,,Frontiers in Artificial Intelligence,,,SCOPUS,"Nyengere Jabulani, 2026, Frontiers in Artificial Intelligence",,"Nyengere Jabulani, 2026, Frontiers in Artificial Intelligence"
+2026,21,https://app.dimensions.ai/details/publication/pub.1200846757,Machine learning identifies pupil size and corneal thickness as key predictors of axial elongation rate,e0348085,4,,PLOS One,10.1371/journal.pone.0348085,2026-04-24,"Zhou, Peng;Chen, Sitong;Li, Yingli;Li, Yan","PURPOSE: This study aimed to develop a machine learning-based prediction model for myopia progression using ocular biometric parameters to provide an objective assessment tool for clinical practice.
+METHODS: A retrospective analysis was conducted on patients treated at Shanghai Parkway Health Ophthalmology Department as the training set, and myopic individuals from the Optometry Center of Peking University People's Hospital as the validation set. Demographic and biometric data were collected, including central corneal thickness (CCT), axial length (AL), corneal curvature (K-value), anterior chamber depth (ACD), corneal diameter (WTW), and pupil size (PS). Seven machine learning models (e.g., XGBoost, random forest, support vector machine) were employed for modeling, with performance optimized via 5-fold cross-validation. Model accuracy was evaluated using mean squared error (MSE) and the coefficient of determination (R²), and variable importance was analyzed.
+RESULTS: No statistically significant differences were observed in baseline characteristics between the training and validation sets (all P > 0.05). The XGBoost model demonstrated the best performance, achieving R² = 0.913 (MSE = 0.005) on the training set and R² = 0.766 (MSE = 0.016) on the test set. Variable importance analysis revealed pupil size (score 100) and corneal thickness (40.88) as the key predictors of axial elongation rate, followed by age of onset (17.96).
+CONCLUSION: The machine learning-based prediction model effectively utilizes ocular biometric data to assess myopia progression risk, with pupil size and corneal thickness identified as core predictive factors. This model provides a quantitative tool for early clinical intervention. Future studies should expand the sample size and incorporate additional biomarkers to optimize performance.",article,0,,,"Zhou, Peng;Chen, Sitong;Li, Yingli;Li, Yan",,,,,,,PLOS One,,,SCOPUS,"Zhou Peng, 2026, PLOS One",,"Zhou Peng, 2026, PLOS One"
+2026,16,https://app.dimensions.ai/details/publication/pub.1200879759,Machine-Learning Models Outperform Clinicians in Predicting Postnatal Growth Failure Among Very Low Birth Weight Infants,1282,9,,Diagnostics,10.3390/diagnostics16091282,2026-04-24,"Lim, Joohee;Park, Sook Hyun;Cha, Teahyen;Yoon, So Jin;Han, Jung Ho;Shin, Jeong Eun;Song, In Gyu;Lee, Soon Min;Eun, Ho Seon;Park, Min Soo","Background/Objectives: Early detection of postnatal growth failure (PGF) is essential for optimizing nutritional management in preterm infants, as PGF is associated with adverse neurodevelopmental outcomes. Early prediction remains difficult because postnatal growth is influenced by multiple clinical factors including gestation age, birth weight, nutritional status, and comorbidities. Machine-learning approaches have been proposed to predict complex neonatal outcomes. This study compared the predictive performance of neonatologists with that of a machine-learning model for predicting PGF. Methods: PGF was defined as a decrease in weight z-score greater than 1.28 at discharge compared with birth. A machine-learning model based on extreme gradient boosting (XGBoost) was trained using a dataset of 7954 very low birth weight (VLBW) infants. Nine neonatologists independently assessed 100 clinical cases through a questionnaire-based evaluation, including 50 patients with PGF. Predictive performance was evaluated using seven metrics: area under the receiver operating characteristic curve (AUROC), accuracy, error rate, positive predictive value (PPV), sensitivity, specificity, and F1 score. Results: The neonatologists had a median of 5 years (range: 4-10 years) of clinical experience. The median prediction score among the neonatologists was 52/100 (range, 44-60), whereas the XGBoost model achieved 79/100. The XGBoost model achieved an AUROC of 0.79, accuracy of 0.79, error rate of 0.21, sensitivity of 0.82, and an F1 score of 0.80, demonstrating superior overall performance compared to the neonatologists. In addition, the XGBoost model had a lower error rate than the neonatologists (0.21 vs. 0.49), whereas specificity (0.76 vs. 0.86) and PPV (0.77 vs. 0.53) did not differ significantly. Conclusions: The machine-learning model demonstrated superior or comparable predictive performance to that of neonatologists in detecting PGF. Machine-learning-based prediction models may support early risk stratification and targeted nutritional management in VLBW infants.",article,0,,,"Lim, Joohee;Park, Sook Hyun;Cha, Teahyen;Yoon, So Jin;Han, Jung Ho;Shin, Jeong Eun;Song, In Gyu;Lee, Soon Min;Eun, Ho Seon;Park, Min Soo",,,,,,,Diagnostics,,,SCOPUS,"Lim Joohee, 2026, Diagnostics",,"Lim Joohee, 2026, Diagnostics"
+2026,39,https://app.dimensions.ai/details/publication/pub.1201027069,Risk and protective factors in addictive behaviors: Integrating artificial intelligence and traditional analytical methods to assess social and psychological determinants,294,4,,Current Opinion in Psychiatry,10.1097/yco.0000000000001091,2026-04-30,"Cruz, Germano Vera;Da Rosa, Clarice;Khazaal, Yasser","PURPOSE OF REVIEW: Addictive behaviors, including both substance use disorders and behavioral addictions, arise from complex interactions among biological, psychological, social, and environmental factors including digital ones. This review focuses on the assessment of social and psychological risk and protective factors, highlighting how artificial intelligence and machine learning approaches complement conventional qualitative and quantitative methodologies. The aim is to clarify how these tools can enhance understanding, prediction, and prevention of addictive behaviors.
+RECENT FINDINGS: Recent research identifies impulsivity, emotion dysregulation, peer norms, and family functioning as central psychosocial risk factors for addictive behaviors. Protective factors - such as self-efficacy, social support, and family cohesion - moderate these risks. Conventional analyses provide foundational evidence, while ML methods (predictive machine learning, explainable artificial intelligence, reinforcement learning) now enable integration of multimodal data, detection of nonlinear patterns, and identification of latent psychosocial profiles. Emerging studies demonstrate potential for early-warning prediction and personalized intervention design.
+SUMMARY: AI/ML offers unprecedented opportunities to advance addiction science by handling high-dimensional psychosocial and behavioral data. Yet, ethical, interpretative, and causal challenges persist. The most promising path forward lies in synergizing theory-driven analytics with data-driven AI approaches to achieve more precise and contextually grounded prevention and intervention strategies for addictive behaviors.",article,0,,,"Cruz, Germano Vera;Da Rosa, Clarice;Khazaal, Yasser",,,,,,,Current Opinion in Psychiatry,307,,SCOPUS,"Cruz Germano Vera, 2026, Current Opinion in Psychiatry",,"Cruz Germano Vera, 2026, Current Opinion in Psychiatry"
+2026,,https://app.dimensions.ai/details/publication/pub.1201063294,Feasibility of No-Code Deep Learning for Diagnosing Bone Metastasis in Bone Scans: A Comparative Study of Teachable Machine and ResNet,1,,,Journal of Imaging Informatics in Medicine,10.1007/s10278-026-01981-5,2026-05-01,"Pak, Sehyun;Woo, Ji Young;Yang, Ik;Son, Hye Joo;Kim, Soo-Jong;Lee, Suk Hyun","This study explored the feasibility of developing a model that can diagnose positive and negative bone metastasis from bone scan images using Teachable Machine by Google, a no-code AI platform that does not require programming skills or a GPU environment. A fourth-year medical student trained deep learning models using a Teachable Machine on a dataset of 4626 bone scan images from patients with cancer (mean age 65.1 ± 11.3 years; 50.5% female). Because of severe class imbalance (bone metastasis positive:negative = 400:4226), we compared the diagnostic performance of two strategies (original set and augmented dataset with tenfold data augmentation applied to positive images). We investigated the diagnostic performance using various hyperparameters (epochs 50–1000, batch sizes 16–32) with a learning rate of 0.001. The final model generated by Teachable Machine was compared with a conventional deep learning model based on ResNet50. The combination of epoch = 150 and batch size = 16 showed the optimal diagnostic performance. The overall sensitivity, specificity, and positive and negative predictive values were 57.1%, 93.9%, 90.4%, and 68.7%, respectively. Both Teachable Machine and ResNet50 showed good diagnostic performance (area under the curve = 0.812 and 0.869, respectively), although the diagnostic performance of Teachable Machine was inferior to that of the conventional ResNet50 model (p < 0.001). Given its convenience, Teachable Machine represents a valuable and accessible tool for medical education and preliminary model development. It allows researchers without programming skills or GPU resources to construct feasibility models for medical image classification.",article,0,,,"Pak, Sehyun;Woo, Ji Young;Yang, Ik;Son, Hye Joo;Kim, Soo-Jong;Lee, Suk Hyun",,,,,,,Journal of Imaging Informatics in Medicine,9,,SCOPUS,"Pak Sehyun, 2026, Journal of Imaging Informatics in Medicine",,"Pak Sehyun, 2026, Journal of Imaging Informatics in Medicine"
+2026,,https://app.dimensions.ai/details/publication/pub.1201220481,Predicting online motor learning after stroke in lower limb task using machine learning,,,,Scientific Reports,10.1038/s41598-026-50638-4,2026-05-06,"Tiwari, Anjali;Paxton, Hunter;Delmas, Stefan;Diwakar, Prasoon;Misra, Gaurav;Lodha, Neha","Online motor learning is central to effective learning and a crucial determinant of functional recovery after stroke. Despite its clinical significance, predictors of online motor learning remain understudied. Machine Learning (ML) offers a data-driven approach to identify predictors of online motor learning that would otherwise be limited using traditional statistical approaches, such as logistic regression. This study leveraged ML to determine key predictors and their relative importance in online motor learning after stroke. One hundred and seven stroke survivors completed assessments of sociodemographic, stroke characteristics, health-related, functional, cognitive, and physical capacity. Online motor learning was quantified using a goal-directed ankle task. To predict those with and without online motor learning capacity, we applied and compared XGBoost and logistic regression approaches. The XGBoost model outperformed logistic regression, achieving a precision = 0.82, recall = 0.78, F1 score = 0.80, and an area under the precision-recall curve = 0.84. The feature importance analysis identified logical memory, DGT-backward, selective attention, functional capacity index, and physical capacity as the key predictors of online motor learning. Online motor learning after stroke is not solely a motor-driven process but is predicted by cognitive and functional capacity. ML identified multidomain predictors, offering a framework for understanding individual differences in learning potential during the session, laying the foundation for precision rehabilitation.",article,0,,,"Tiwari, Anjali;Paxton, Hunter;Delmas, Stefan;Diwakar, Prasoon;Misra, Gaurav;Lodha, Neha",,,,,,,Scientific Reports,,,SCOPUS,"Tiwari Anjali, 2026, Scientific Reports",,"Tiwari Anjali, 2026, Scientific Reports"
+2026,17,https://app.dimensions.ai/details/publication/pub.1201266023,Machine learning models in post-stroke aphasia: a scoping review,1806856,,,Frontiers in Neurology,10.3389/fneur.2026.1806856,2026-05-07,"Li, Xiaoxue;Song, Hengjie;Guo, Ningjing;Kang, Congmin;Gong, Xiaoyan;Ji, Xinyu;Zheng, Jie","Objective: To systematically review the literature on the application of machine learning models in post-stroke aphasia, and to provide a reference for the construction and clinical application of related models.
+Methods: Based on scoping review methodology, we searched Web of Science, PubMed, Cochrane Library, Embase, CINAHL, CNKI, VIP database, Wanfang database, and China Biology Medicine. The search time limit was from the database's establishment to November 20, 2025, and the retrieved literature was screened, summarized, extracted, and analyzed.
+Results: A total of 19 articles were included. The analysis results showed that the machine learning algorithms used in post-stroke aphasia models were mainly supervised methods, including random forests, neural networks, and support vector machines. The data sources of the model were diverse. The indicators included in the model covered multimodal data. The functions of the model include diagnosis and classification of aphasia patients, assessment and prediction of the severity of aphasia patients, prediction of the language function and rehabilitation outcome of patients, monitoring and evaluation of symptoms, etc.
+Conclusion: Machine learning models have high applicability and broad scope in post-stroke aphasia. Future research still requires multi-center, multi-modal data and external validation to enhance its robustness and clinical feasibility.",article,0,,,"Li, Xiaoxue;Song, Hengjie;Guo, Ningjing;Kang, Congmin;Gong, Xiaoyan;Ji, Xinyu;Zheng, Jie",,,,,,,Frontiers in Neurology,,,SCOPUS,"Li Xiaoxue, 2026, Frontiers in Neurology",,"Li Xiaoxue, 2026, Frontiers in Neurology"
+2026,384,https://app.dimensions.ai/details/publication/pub.1201552619,Empowerment gain and causal model construction: children and adults are sensitive to controllability and variability in their causal interventions,20250003,2320,,"Philosophical Transactions of the Royal Society A: Mathematical, Physical and Engineering Sciences",10.1098/rsta.2025.0003,2026-05-14,"Yiu, Eunice;Allen, Kelsey;Ginosar, Shiry;Gopnik, Alison","Learning about the causal structure of the world is a fundamental problem for human cognition. Causal models and especially causal learning have proved to be difficult for large pretrained models using standard techniques of deep learning. In contrast, cognitive scientists have applied advances in our formal understanding of causation in computer science, particularly within the causal Bayes net formalism, to understand human causal learning. In the very different tradition of reinforcement learning (RL), researchers have described an intrinsic reward signal called 'empowerment' which maximizes mutual information between actions and their outcomes. Empowerment may be an important bridge between classical Bayesian causal learning and RL and may help to characterize causal learning in humans and enable it in machines. If an agent learns an accurate causal world model, they will necessarily increase their empowerment, and increasing empowerment will lead to a more accurate causal world model. Empowerment may also explain distinctive features of children's causal learning, as well as providing a more tractable computational account of how that learning is possible. In an empirical study, we systematically test how children and adults use cues to empowerment to infer causal relations and design effective causal interventions. This article is part of the theme issue 'World models in natural and artificial intelligence'.",article,0,,,"Yiu, Eunice;Allen, Kelsey;Ginosar, Shiry;Gopnik, Alison",,,,,,,"Philosophical Transactions of the Royal Society A: Mathematical, Physical and Engineering Sciences",,,SCOPUS,"Yiu Eunice, 2026, Philosophical Transactions of the Royal Society A: Mathematical, Physical and Engineering Sciences",,"Yiu Eunice, 2026, Philosophical Transactions of the Royal Society A: Mathematical, Physical and Engineering Sciences"
+2026,,https://app.dimensions.ai/details/publication/pub.1201600029,Machine learning models for outcome prediction of patients with ischaemic stroke undergoing reperfusion therapy: a systematic review and meta-analysis,svn-2025,,,Stroke and Vascular Neurology,10.1136/svn-2025-004020,2026-05-14,"He, Song;Gao, Yijie;Tan, Quandan;An, Yuanyuan;Zhu, Guoliang;Lin, Yapeng;Zhang, Min;Mao, Fengkai;Deng, Hongwei;Chen, Xiaoling;Chen, Kejie;Hao, Junli;Yang, Jie;Wang, Xia","BACKGROUND: Reperfusion therapy, including thrombolysis and thrombectomy, is crucial for ischaemic stroke treatment. However, patient outcomes often remain suboptimal. Conventional regression models show limited accuracy in predicting outcomes after reperfusion therapy. Machine learning predictive models offer potential by integrating multidimensional data. However, their relative advantages over conventional regression models in this context remain uncertain.
+AIM: We aim to compare the performance of conventional regression models, machine learning models in predicting the prognosis of patients undergoing reperfusion therapy.
+METHODS: We identified studies using regression or machine learning models to predict outcomes in patients with ischaemic stroke undergoing thrombolysis or thrombectomy. Model performance was summarised as the area under the receiver operating characteristic curve (AUC), with 95% CIs for prediction of modified Rankin Scale (mRS), symptomatic intracranial haemorrhage (sICH) and mortality. Heterogeneity was assessed using Cochran's Q test. Pooled AUCs were calculated. Risk of bias was assessed using Prediction model Risk Of Bias Assessment Tool (PROBAST) and reporting quality was assessed using Transparent Reporting of a multivariable prediction model for Individual Prognosis or Diagnosis (TRIPOD).
+SUMMARY OF REVIEW: In total, 53 studies were included, of which 37 reported AUCs with 95% CI on validation datasets. Pooled analyses were conducted for mRS (n=37), sICH (n=14) and mortality (n=2). Specifically, 24 studies used conventional regression models (pooled AUC 0.80 (95% CI 0.77 to 0.82)), while 13 used machine learning models (0.86 (0.81 to 0.90)). Pooled machine learning model performance showed significant improvement over conventional regression models (p=0.004). Significant differences in model performance were also observed in thrombolysis subgroup (pooled AUC 0.79 (95% CI 0.77 to 0.82) for conventional regression models vs 0.88 (0.80 to 0.96) for machine learning models, p for interaction=0.009).
+CONCLUSION: Machine learning models generally outperformed conventional regression models in predicting outcomes after reperfusion therapy, highlighting their potential for prognostic prediction of patients with ischaemic stroke undergoing reperfusion therapy. However, the high risk of bias across studies and limited availability of external validation warrant cautious interpretation of the predictive performance.",article,0,,,"He, Song;Gao, Yijie;Tan, Quandan;An, Yuanyuan;Zhu, Guoliang;Lin, Yapeng;Zhang, Min;Mao, Fengkai;Deng, Hongwei;Chen, Xiaoling;Chen, Kejie;Hao, Junli;Yang, Jie;Wang, Xia",,,,,,,Stroke and Vascular Neurology,004020,,SCOPUS,"He Song, 2026, Stroke and Vascular Neurology",,"He Song, 2026, Stroke and Vascular Neurology"
+2026,513,https://app.dimensions.ai/details/publication/pub.1201943510,Machine learning for the spatial prediction of soil and groundwater contamination: An integrative global review,142518,,,Journal of Hazardous Materials,10.1016/j.jhazmat.2026.142518,2026-05-25,"Wu, He;Zhang, Zhuo;Wang, Panpan;Liang, Chouyuan;Liu, Yue;Wang, Yakun;Wu, Tianyi;Zhang, Han;Ren, Jie","The spatial distribution of soil and groundwater pollutants is critical for effective remediation. Machine learning methods are increasingly applied in predicting pollutant distributions due to their efficiency, low cost, and ability to capture complex nonlinear relationships. To date, however, systematic and quantitative reviews of the full modeling workflow remain limited. In this study, 214 publications worldwide were systematically reviewed and quantitatively analyzed across three core dimensions: data, models, and driving factors. The analysis revealed that, although data types and sources are diverse, Challenges remain in obtaining high-quality data and effectively integrating heterogeneous data sources. Most studies partitioned datasets into training and testing subsets, with training proportions typically ranging from 60% to 80%, and applied evaluation metrics tailored to research objectives. In terms of models, traditional approaches are well-established and generally perform satisfactorily, whereas complex and emerging methods, such as graph neural networks, offer higher predictive accuracy and broader spatial coverage, and warrant further exploration with a focus on enhancing interpretability. The selection of driving factors is primarily influenced by pollutant characteristics and the intrinsic properties of the soil or groundwater, as well as the surrounding environmental context, which collectively determine the relative importance and contribution of different variables in prediction models. Collectively, this review provides methodological guidance for feature design, model choice, and the application of interpretability tools in future pollution prediction studies.",article,0,,,"Wu, He;Zhang, Zhuo;Wang, Panpan;Liang, Chouyuan;Liu, Yue;Wang, Yakun;Wu, Tianyi;Zhang, Han;Ren, Jie",,,,,,,Journal of Hazardous Materials,,,SCOPUS,"Wu He, 2026, Journal of Hazardous Materials",,"Wu He, 2026, Journal of Hazardous Materials"
+2026,13,https://app.dimensions.ai/details/publication/pub.1201969565,MNISQ: A Large-Scale Quantum Circuit Dataset for Machine Learning in the NISQ Era,810,1,,Scientific Data,10.1038/s41597-026-07493-9,2026-05-26,"Placidi, Leonardo;Hataya, Ryuichiro;Mori, Toshio;Aoyama, Koki;Morisaki, Hayata;Mitarai, Kosuke;Fujii, Keisuke","We introduce MNISQ, the first large-scale dataset for both quantum and classical machine learning during the NISQ era, containing 4.95 million circuits of 10 qubits constructed with up to 100 two-qubit gates. MNISQ serves as a foundational resource for developing natural language processing (NLP) models for quantum computing and deep learning models. The dataset is derived from quantum-encoded classical data (e.g., MNIST) and is available in two formats: quantum circuits and classical descriptions (Quantum Assembly Language, QASM). We perform baseline experiments on circuit classification using both quantum and classical methods. Quantum Kernel methods achieve up to 97% accuracy in multiclass classification. We also explore the impact of noise in quantum machine learning, helping develop error-mitigation strategies for noisy hardware. In classical experiments, we use QASM files with NLP models: S4, Transformer, and LSTM. The S4 model reaches 77% accuracy (81% with data augmentation), demonstrating that modern machine learning models can effectively classify quantum circuits. The dataset is publicly available at https://doi.org/10.5281/zenodo.19656638 and related codes are available on GitHub.",article,0,,,"Placidi, Leonardo;Hataya, Ryuichiro;Mori, Toshio;Aoyama, Koki;Morisaki, Hayata;Mitarai, Kosuke;Fujii, Keisuke",,,,,,,Scientific Data,,,SCOPUS,"Placidi Leonardo, 2026, Scientific Data",,"Placidi Leonardo, 2026, Scientific Data"
+2026,ahead-of-print,https://app.dimensions.ai/details/publication/pub.1202030209,A voyage on computer aided intelligent algorithms for the segmentation of brain tissues for neurodisorder diagnosis,1,ahead-of-print,,International Journal of Neuroscience,10.1080/00207454.2026.2680936,2026-06-02,"Pillai, Kumar Subbiah Pillai Neelakanta;Hamid, Nor Asilah Wati Abdul;Dafik, Dafik;Ramasamy, Sunder;Subramanian, Siva Shankar;Sundaram, Arun;Suriyan, Kannadhasan","Neurodisorders pose a considerable burden to global health, frequently requiring early treatment and diagnosis to avoid irreversible cognitive and motor impairments. Segmentation of brain tissue is an essential task in neurodiagnostics due to its inability to accurately separate grey matter, white matter and cerebrospinal fluid within imaging modalities like MRI and CT. This article reviews the progress of brain tissue segmentation techniques from manual and semi-automated approaches to sophisticated machine learning and deep learning algorithms. It discusses how these contemporary methodologies enhance segmentation quality, address difficult anatomical variation and optimize diagnostic accuracy in diseases like Alzheimer's, multiple sclerosis, traumatic brain injury and stroke. This research work compares supervised, unsupervised and deep learning paradigms on the basis of their advantages, disadvantages and potential use in clinical settings. In addition, it presents hybrid and ensemble methods that blend conventional and AI-based approaches to mitigate obstacles such as data heterogeneity, annotation limitations and interpretability. This survey details the revolutionizing potential of machine learning in neuroimaging and ultimately seeks to facilitate early diagnosis, treatment planning and individualized healthcare provision for neurological diseases.",article,0,,,"Pillai, Kumar Subbiah Pillai Neelakanta;Hamid, Nor Asilah Wati Abdul;Dafik, Dafik;Ramasamy, Sunder;Subramanian, Siva Shankar;Sundaram, Arun;Suriyan, Kannadhasan",,,,,,,International Journal of Neuroscience,23,,SCOPUS,"Pillai Kumar Subbiah Pillai Neelakanta, 2026, International Journal of Neuroscience",,"Pillai Kumar Subbiah Pillai Neelakanta, 2026, International Journal of Neuroscience"
+2026,,https://app.dimensions.ai/details/publication/pub.1202072839,Supervised machine learning algorithms for classifications of gender-based violence in Somalia: a comparison of oversampling techniques,,,,Scientific Reports,10.1038/s41598-026-51299-z,2026-05-28,"Yilema, Seyifemickael Amare;Belay, Denekew Bitew;Ali, Mahad Ibrahim;Birhan, Nigussie Adam;Rad, Najmeh Nakhaei;Chen, Ding-Geng","Gender-based violence can include sexual, physical, mental, and economic harm inflicted in public or in private. This violence also has a direct psychological effect, physical and financial consequences, and it has multiple underlying reasons, such as social, economic, cultural, political, and religious aspects. By applying multiple resampling techniques, this study aims to improve the precision and accuracy of supervised machine learning classifications of gender-based violence (GBV) using the SDHS dataset. The class imbalance between GBV-positive and GBV-negative instances makes it very challenging to produce reliable classification machine learning models. To address this issue, oversampling machine learning approaches, including synthetic minority over-sampling technique (SMOTE), adaptive synthetic (ADASYN), and random over-sampling (ROS), were employed to classify the GBV data in Somalia. The logistic regression (LR), decision tree (CART), random forest (RF), naïve Bayes (NB), k-nearest Neighbors (KNN), and support vector machine (SVM) methods were trained and evaluated. In addition, oversampling techniques were employed for improving the imbalanced datasets. Receiver operating characteristic curve (ROC) and the area under the curve (AUC) were used to assess each machine learning classifier and to compare performance on the original GBV dataset. Among the resampling techniques, SMOTE (RF = 0.992, CART = 0.969, and KNN = 0.957) outperformed ADASYN (RF = 0.912, CART = 0.910, and KNN = 0.876) and ROS (RF = 0.920, CART = 0.919, and KNN = 0.880) across almost all evaluation metrics. The classifiers that performed the best were random forest (RF) and classification and regression trees (CART), then k-nearest Neighbors. After resampling the imbalanced dataset, we may therefore conclude that the random forest (AUC = 0.972), CART (AUC = 0.969) and KNN (AUC = 0.957) machine learning classifiers are better at accurately classifying the k-nearest Neighbors dataset. In addition, compared to the other oversampling techniques, SMOTE was used to the machine learning classifiers to balance the imbalanced class distributions in favour of the minority class. In addition, SMOTE with the Mathews correlation coefficient (MCC) outperformed ADASYN and ROS resampling techniques. The MCC values for SMOTE reached their highest values (RF = 0.86, CART = 0.85, and KNN = 0.80), indicating strong overall predictive reliability of the machine learning models. Therefore, the findings of this analysis will assist government and non-government organizations in making policy decisions to GBV risks.",article,0,,,"Yilema, Seyifemickael Amare;Belay, Denekew Bitew;Ali, Mahad Ibrahim;Birhan, Nigussie Adam;Rad, Najmeh Nakhaei;Chen, Ding-Geng",,,,,,,Scientific Reports,,,SCOPUS,"Yilema Seyifemickael Amare, 2026, Scientific Reports",,"Yilema Seyifemickael Amare, 2026, Scientific Reports"
+2026,26,https://app.dimensions.ai/details/publication/pub.1202080160,Machine learning for postoperative complication prediction and early recurrence risk assessment across cancer types: a systematic review and meta-analysis,212,1,,Cancer Cell International,10.1186/s12935-025-03912-w,2026-05-28,"Chen, Wen;Liu, Xinliang;Wu, Zhenheng;Tan, Haifen;Yu, Fuqian;Wang, Dongmei;Gao, Hengyi;Chen, Zhigang","BackgroundAlthough machine learning is often used in medical diagnosis, its effectiveness in cancer diagnosis remains uncertain.ObjectiveTo explore the ability of machine learning to predict cancer postoperative complications and early recurrence.MethodsFrom the creation of the database until October 4, 2024, we conducted a comprehensive search of PubMed, Web of Science (WoS), Embase, Scopus, Cochrane Library, Wanfang, and the China National Knowledge Infrastructure (CNKI). The pooled sensitivity, specificity, Fagan plot analysis, and area under the curve (AUC) were used to assess the overall test performance of machine learning. In addition, meta-regression analysis was used to explore the sources of heterogeneity further. Furthermore, Deeks’ funnel plot asymmetry test was used to assess publication bias.ResultsUltimately, 31 publications were identified and incorporated into this meta-analysis. In the subgroup of postoperative complications, the combined sensitivity, specificity, and AUC values of all studies were 0.75 (95% CI, 0.65–0.83), 0.78 (95% CI, 0.65–0.87), and 0.83 (95% CI, 0.79–0.86), respectively. Moreover, the combined sensitivity, specificity, and AUC values of proposed studies (studies that proposed the best predictive model) were 0.85 (95% CI, 0.71–0.93), 0.76 (95% CI, 0.39–0.94), and 0.88 (95% CI, 0.85–0.91), respectively. In the subgroup of early recurrence, the combined sensitivity, specificity, and AUC values of all studies were 0.74 (95% CI, 0.68–0.80), 0.73 (95% CI, 0.67–0.77), and 0.80 (95% CI, 0.76–0.83), respectively. Furthermore, the combined sensitivity, specificity, and AUC values of proposed studies were 0.78 (95% CI, 0.70–0.85), 0.76 (95% CI, 0.70–0.82), and 0.84 (95% CI, 0.80–0.87), respectively. In addition, Deeks’ Funnel Plot, p-value > 0.05, indicating no publication bias. Furthermore, meta-regression analysis showed that sample size and machine learning may be the main influencing factors.ConclusionMachine learning can accurately predict cancer postoperative complications and early recurrence. However, its accuracy is influenced by multiple factors, including the type of machine learning model, tumor type, sample size, year of publication, and country of publication. Therefore, more studies with larger sample sizes and more standardized methodology are needed to improve the reliability of its prediction.",article,0,,,"Chen, Wen;Liu, Xinliang;Wu, Zhenheng;Tan, Haifen;Yu, Fuqian;Wang, Dongmei;Gao, Hengyi;Chen, Zhigang",,,,,,,Cancer Cell International,,,SCOPUS,"Chen Wen, 2026, Cancer Cell International",,"Chen Wen, 2026, Cancer Cell International"
diff --git a/pytest.ini b/pytest.ini
new file mode 100644
index 000000000..8ea463ef0
--- /dev/null
+++ b/pytest.ini
@@ -0,0 +1,4 @@
+[pytest]
+markers =
+ integration: marks tests that make real API network calls
+ file_sources: marks tests that load real sample files from sources/
diff --git a/requirements.txt b/requirements.txt
index d94f94d9f..cc1620a7f 100644
Binary files a/requirements.txt and b/requirements.txt differ
diff --git a/tests/test_etl.py b/tests/test_etl.py
new file mode 100644
index 000000000..30de319f7
--- /dev/null
+++ b/tests/test_etl.py
@@ -0,0 +1,696 @@
+"""
+ETL pipeline test suite.
+
+Tests are organized by pipeline phase. Integration tests (test_fetch_*)
+make real API calls and are marked with pytest.mark.integration so they
+can be excluded with: pytest -m "not integration"
+
+File-source tests require the sample files in sources/ to be present.
+They are marked with pytest.mark.file_sources and can be excluded with:
+ pytest -m "not file_sources"
+
+Run all fast unit tests (no network, no file I/O) with:
+ pytest -m "not integration and not file_sources"
+"""
+
+import sys
+import types
+from pathlib import Path
+
+import pytest
+import pandas as pd
+
+# ---------------------------------------------------------------------------
+# Stub www.services.utils BEFORE any www.services import so that parsers.py
+# can do `from .utils import *` without pulling in Shiny-only deps.
+# ---------------------------------------------------------------------------
+_ROOT = str(Path(__file__).resolve().parent.parent)
+if _ROOT not in sys.path:
+ sys.path.insert(0, _ROOT)
+
+
+def _stub_pkg(name: str, fs_path: str) -> None:
+ if name not in sys.modules:
+ mod = types.ModuleType(name)
+ mod.__path__ = [fs_path] # type: ignore[attr-defined]
+ mod.__package__ = name
+ sys.modules[name] = mod
+
+
+_stub_pkg("www", str(Path(_ROOT) / "www"))
+_stub_pkg("www.services", str(Path(_ROOT) / "www" / "services"))
+
+if "www.services.utils" not in sys.modules:
+ import re as _re
+ _utils_mod = types.ModuleType("www.services.utils")
+ _utils_mod.re = _re # type: ignore[attr-defined]
+ sys.modules["www.services.utils"] = _utils_mod
+
+from www.services.mapping_dicts import LIST_FIELDS, MANDATORY_COLUMNS, SCALAR_FIELDS # noqa: E402
+from www.services.standardizer import ( # noqa: E402
+ add_calculated_fields,
+ detect_source,
+ enforce_types,
+ export_to_csv,
+ handle_nulls,
+ load_file,
+ rename_columns,
+ run_pipeline,
+)
+from www.services.validator import ValidationError, validate # noqa: E402
+
+# ---------------------------------------------------------------------------
+# Paths to sample files in sources/
+# ---------------------------------------------------------------------------
+_SOURCES = Path(_ROOT) / "sources"
+
+_SCOPUS_CSV = _SOURCES / "Scopus" / "Scopus.csv"
+_SCOPUS_BIB = _SOURCES / "Scopus" / "Scopus.bib"
+_WOS_TXT = _SOURCES / "Web_of_Science" / "WoS.txt"
+_WOS_CIW = _SOURCES / "Web_of_Science" / "WoS.ciw"
+_WOS_BIB = _SOURCES / "Web_of_Science" / "WoS.bib"
+_DIMENSIONS = _SOURCES / "Dimensions" / "Dimensions.csv"
+_DIM_XLSX = _SOURCES / "Dimensions" / "Dimensions.xlsx"
+_LENS = _SOURCES / "Lens" / "Lens.csv"
+_COCHRANE = _SOURCES / "Cochrane" / "citation-export.txt"
+_PUBMED_FILE = _SOURCES / "PubMed" / "pubmed-allergicrh-set.txt"
+
+
+# ---------------------------------------------------------------------------
+# Fixtures — minimal synthetic DataFrames that mimic raw API output
+# ---------------------------------------------------------------------------
+
+@pytest.fixture()
+def raw_pubmed_df() -> pd.DataFrame:
+ """Minimal PubMed-like raw DataFrame (2 records)."""
+ return pd.DataFrame([
+ {
+ "PMID": "12345678",
+ "TI": "Artificial intelligence in medicine",
+ "AU": "Smith J;Jones A",
+ "FAU": "Smith, John;Jones, Alice",
+ "AD": "University of Naples;MIT",
+ "DP": "2022 Mar 15",
+ "TA": "J Med Inform",
+ "JT": "Journal of Medical Informatics",
+ "PT": "Journal Article",
+ "MH": "Artificial Intelligence;Medicine",
+ "OT": "AI;healthcare",
+ "AB": "This paper reviews AI in medicine.",
+ "VI": "10",
+ "IP": "3",
+ "PG": "100-110",
+ "AID": "10.1234/abc [doi]",
+ "LA": "eng",
+ "DB": "PUBMED",
+ },
+ {
+ "PMID": "87654321",
+ "TI": "Deep learning for drug discovery",
+ "AU": "Brown K",
+ "FAU": "Brown, Kate",
+ "AD": "Stanford University",
+ "DP": "2021 Nov",
+ "TA": "Nat Biotechnol",
+ "JT": "Nature Biotechnology",
+ "PT": "Review",
+ "MH": "Deep Learning;Drug Discovery",
+ "OT": "deep learning",
+ "AB": "Deep learning accelerates drug discovery.",
+ "VI": "39",
+ "IP": "11",
+ "PG": "1400-1408",
+ "AID": "10.5678/xyz [doi]",
+ "LA": "eng",
+ "DB": "PUBMED",
+ },
+ ])
+
+
+@pytest.fixture()
+def raw_openalex_df() -> pd.DataFrame:
+ """Minimal OpenAlex-like raw DataFrame (2 records)."""
+ return pd.DataFrame([
+ {
+ "display_name": "Bibliometric analysis of machine learning",
+ "author_names": ["Rossi, Mario", "Bianchi, Luigi"],
+ "author_full_names": ["Mario Rossi", "Luigi Bianchi"],
+ "affiliations": ["University Federico II"],
+ "doi": "10.9999/ml001",
+ "publication_year": "2023",
+ "source_title": "Scientometrics",
+ "source_abbr": "Scientometrics",
+ "volume": "128",
+ "issue": "2",
+ "first_page": "500",
+ "last_page": "520",
+ "abstract": "A bibliometric analysis of machine learning literature.",
+ "concepts": ["Machine Learning", "Bibliometrics"],
+ "keywords": ["bibliometrics", "machine learning"],
+ "cited_by_count": 12,
+ "type": "article",
+ "language": "en",
+ "referenced_works": [],
+ "openalex_id": "https://openalex.org/W111",
+ "pmid": "",
+ "reprint_author": "Rossi, Mario",
+ "DB": "OPENALEX",
+ },
+ {
+ "display_name": "Scientometric study of AI research",
+ "author_names": ["Chen, Wei"],
+ "author_full_names": ["Wei Chen"],
+ "affiliations": ["Tsinghua University"],
+ "doi": "10.9999/ai002",
+ "publication_year": "2022",
+ "source_title": "Journal of Informetrics",
+ "source_abbr": "J Informetr",
+ "volume": "16",
+ "issue": "4",
+ "first_page": "101230",
+ "last_page": "",
+ "abstract": "Scientometric analysis of AI research trends.",
+ "concepts": ["Artificial Intelligence", "Scientometrics"],
+ "keywords": ["AI", "scientometrics"],
+ "cited_by_count": 5,
+ "type": "article",
+ "language": "en",
+ "referenced_works": [],
+ "openalex_id": "https://openalex.org/W222",
+ "pmid": "",
+ "reprint_author": "Chen, Wei",
+ "DB": "OPENALEX",
+ },
+ ])
+
+
+@pytest.fixture()
+def std_pubmed_df(raw_pubmed_df) -> pd.DataFrame:
+ return run_pipeline(raw_pubmed_df, source="PUBMED")
+
+
+@pytest.fixture()
+def std_openalex_df(raw_openalex_df) -> pd.DataFrame:
+ return run_pipeline(raw_openalex_df, source="OPENALEX")
+
+
+# ---------------------------------------------------------------------------
+# Phase 1 — Integration tests (real API calls)
+# ---------------------------------------------------------------------------
+
+@pytest.mark.integration
+def test_fetch_pubmed_returns_nonempty_dataframe():
+ from www.services.api_retriever import fetch_pubmed
+ df = fetch_pubmed("machine learning", max_results=5)
+ assert isinstance(df, pd.DataFrame)
+ assert len(df) > 0, "PubMed fetch returned empty DataFrame"
+ assert "TI" in df.columns or "display_name" in df.columns or "PMID" in df.columns
+
+
+@pytest.mark.integration
+def test_fetch_openalex_returns_nonempty_dataframe():
+ from www.services.api_retriever import fetch_openalex
+ df = fetch_openalex("bibliometrics", max_results=5)
+ assert isinstance(df, pd.DataFrame)
+ assert len(df) > 0, "OpenAlex fetch returned empty DataFrame"
+ assert "display_name" in df.columns
+
+
+# ---------------------------------------------------------------------------
+# Phase 2a — detect_source
+# ---------------------------------------------------------------------------
+
+def test_detect_source_pubmed(raw_pubmed_df):
+ assert detect_source(raw_pubmed_df) == "PUBMED"
+
+
+def test_detect_source_openalex(raw_openalex_df):
+ assert detect_source(raw_openalex_df) == "OPENALEX"
+
+
+# ---------------------------------------------------------------------------
+# Phase 2a — rename_columns
+# ---------------------------------------------------------------------------
+
+def test_rename_columns_pubmed_maps_to_wos(raw_pubmed_df):
+ renamed = rename_columns(raw_pubmed_df, "PUBMED")
+ assert "TI" in renamed.columns
+ assert "AF" in renamed.columns # FAU → AF
+ assert "ID" in renamed.columns # MH → ID
+ assert "DE" in renamed.columns # OT → DE
+
+
+def test_rename_columns_openalex_maps_to_wos(raw_openalex_df):
+ renamed = rename_columns(raw_openalex_df, "OPENALEX")
+ assert "TI" in renamed.columns # display_name → TI
+ assert "TC" in renamed.columns # cited_by_count → TC
+ assert "AU" in renamed.columns # author_names → AU
+
+
+# ---------------------------------------------------------------------------
+# Phase 2b — enforce_types
+# ---------------------------------------------------------------------------
+
+def test_enforce_types_list_fields_are_lists(raw_pubmed_df):
+ renamed = rename_columns(raw_pubmed_df, "PUBMED")
+ typed = enforce_types(renamed)
+ for col in LIST_FIELDS:
+ if col in typed.columns:
+ assert typed[col].apply(lambda v: isinstance(v, list)).all(), \
+ f"Column {col} is not list[str] after enforce_types"
+
+
+def test_enforce_types_py_is_4digit_year(raw_pubmed_df):
+ renamed = rename_columns(raw_pubmed_df, "PUBMED")
+ typed = enforce_types(renamed)
+ assert "PY" in typed.columns
+ for val in typed["PY"]:
+ assert val == "" or (len(val) == 4 and val.isdigit()), \
+ f"PY value {val!r} is not a 4-digit year"
+
+
+def test_enforce_types_tc_is_int(raw_openalex_df):
+ renamed = rename_columns(raw_openalex_df, "OPENALEX")
+ typed = enforce_types(renamed)
+ assert typed["TC"].dtype == int or typed["TC"].apply(lambda v: isinstance(v, int)).all()
+
+
+def test_enforce_types_doi_cleaned(raw_pubmed_df):
+ renamed = rename_columns(raw_pubmed_df, "PUBMED")
+ typed = enforce_types(renamed)
+ for val in typed["DI"]:
+ assert "[doi]" not in val, f"DOI not cleaned: {val!r}"
+ assert "[pmc]" not in val
+
+
+def test_enforce_types_ep_derived_from_page_range(raw_pubmed_df):
+ renamed = rename_columns(raw_pubmed_df, "PUBMED")
+ typed = enforce_types(renamed)
+ assert typed["EP"].iloc[0] == "110" # "100-110" → EP = "110"
+ assert typed["BP"].iloc[0] == "100"
+
+
+# ---------------------------------------------------------------------------
+# Phase 2c — handle_nulls
+# ---------------------------------------------------------------------------
+
+def test_handle_nulls_no_nan_in_output(std_pubmed_df):
+ scalar_cols = [c for c in MANDATORY_COLUMNS if c in std_pubmed_df.columns and c not in LIST_FIELDS]
+ for col in scalar_cols:
+ assert std_pubmed_df[col].isnull().sum() == 0, f"NaN found in {col}"
+
+
+def test_handle_nulls_list_fields_are_lists(std_pubmed_df):
+ for col in LIST_FIELDS:
+ if col in std_pubmed_df.columns:
+ assert std_pubmed_df[col].apply(lambda v: isinstance(v, list)).all()
+
+
+# ---------------------------------------------------------------------------
+# Phase 2 — full pipeline output checks (API sources)
+# ---------------------------------------------------------------------------
+
+def test_pipeline_mandatory_columns_present_pubmed(std_pubmed_df):
+ for col in MANDATORY_COLUMNS:
+ assert col in std_pubmed_df.columns, f"Mandatory column missing: {col}"
+
+
+def test_pipeline_mandatory_columns_present_openalex(std_openalex_df):
+ for col in MANDATORY_COLUMNS:
+ assert col in std_openalex_df.columns, f"Mandatory column missing: {col}"
+
+
+def test_pipeline_no_nan(std_pubmed_df):
+ scalar_cols = [c for c in std_pubmed_df.columns if c not in LIST_FIELDS]
+ assert std_pubmed_df[scalar_cols].isnull().sum().sum() == 0
+
+
+def test_pipeline_tc_is_int(std_pubmed_df):
+ assert std_pubmed_df["TC"].apply(lambda v: isinstance(v, int)).all()
+
+
+def test_pipeline_py_is_4digit_string(std_pubmed_df):
+ non_empty = std_pubmed_df["PY"][std_pubmed_df["PY"] != ""]
+ assert non_empty.apply(lambda v: len(v) == 4 and v.isdigit()).all()
+
+
+def test_pipeline_sr_is_nonempty_string(std_pubmed_df):
+ assert std_pubmed_df["SR"].apply(lambda v: isinstance(v, str) and len(v) > 0).all()
+
+
+def test_pipeline_db_set_correctly_pubmed(std_pubmed_df):
+ assert (std_pubmed_df["DB"] == "PUBMED").all()
+
+
+def test_pipeline_db_set_correctly_openalex(std_openalex_df):
+ assert (std_openalex_df["DB"] == "OPENALEX").all()
+
+
+def test_pipeline_openalex_no_nan(std_openalex_df):
+ scalar_cols = [c for c in std_openalex_df.columns if c not in LIST_FIELDS]
+ assert std_openalex_df[scalar_cols].isnull().sum().sum() == 0
+
+
+# ---------------------------------------------------------------------------
+# Phase 3 — validate()
+# ---------------------------------------------------------------------------
+
+def test_validate_passes_on_good_data(std_pubmed_df):
+ report = validate(std_pubmed_df)
+ assert report["passed"] is True
+ assert all(c["passed"] for c in report["checks"])
+
+
+def test_validate_report_structure(std_pubmed_df):
+ report = validate(std_pubmed_df)
+ assert "passed" in report
+ assert "checks" in report
+ assert len(report["checks"]) == 3
+ for check in report["checks"]:
+ assert "name" in check
+ assert "passed" in check
+ assert "problem_columns" in check
+
+
+def test_validate_raises_on_missing_column(std_pubmed_df):
+ broken = std_pubmed_df.drop(columns=["TI"])
+ with pytest.raises(ValidationError, match="TI"):
+ validate(broken)
+
+
+def test_validate_raises_on_nan_value(std_pubmed_df):
+ broken = std_pubmed_df.copy()
+ broken.loc[0, "SO"] = None
+ with pytest.raises(ValidationError):
+ validate(broken)
+
+
+def test_validate_raises_on_non_list_field(std_pubmed_df):
+ broken = std_pubmed_df.copy()
+ broken["AU"] = broken["AU"].apply(lambda v: ";".join(v) if isinstance(v, list) else v)
+ with pytest.raises(ValidationError, match="AU"):
+ validate(broken)
+
+
+# ===========================================================================
+# FILE SOURCE TESTS
+#
+# Each test loads a real sample file, runs the pipeline, and asserts
+# schema correctness. Marked @pytest.mark.file_sources so they can be
+# excluded on machines without the sources/ directory.
+# ===========================================================================
+
+def _assert_standardized(df: pd.DataFrame, source_name: str) -> None:
+ """Shared post-pipeline assertions for any standardized DataFrame."""
+ assert isinstance(df, pd.DataFrame), f"{source_name}: result is not a DataFrame"
+ assert len(df) > 0, f"{source_name}: pipeline returned empty DataFrame"
+
+ # All mandatory columns present
+ for col in MANDATORY_COLUMNS:
+ assert col in df.columns, f"{source_name}: mandatory column missing: {col}"
+
+ # No NaN / None in scalar columns
+ scalar_cols = [c for c in df.columns if c not in LIST_FIELDS]
+ total_nan = df[scalar_cols].isnull().sum().sum()
+ assert total_nan == 0, f"{source_name}: {total_nan} NaN values found in scalar columns"
+
+ # List fields must be list[str]
+ for col in LIST_FIELDS:
+ if col in df.columns:
+ non_list = df[col].apply(lambda v: not isinstance(v, list))
+ assert not non_list.any(), f"{source_name}: {col} has non-list values"
+
+ # TC must be int
+ assert df["TC"].apply(lambda v: isinstance(v, int)).all(), \
+ f"{source_name}: TC has non-int values"
+
+ # PY must be empty string or 4-digit string
+ for val in df["PY"]:
+ assert val == "" or (len(val) == 4 and val.isdigit()), \
+ f"{source_name}: PY value {val!r} is not 4-digit year"
+
+ # SR must be non-empty string
+ assert df["SR"].apply(lambda v: isinstance(v, str) and len(v) > 0).all(), \
+ f"{source_name}: SR has empty / non-string values"
+
+
+# ---- Individual load_file() smoke tests ----
+
+@pytest.mark.file_sources
+@pytest.mark.skipif(not _SCOPUS_CSV.exists(), reason="Scopus CSV sample not found")
+def test_load_file_scopus_csv():
+ df, src = load_file(_SCOPUS_CSV)
+ assert src == "SCOPUS_CSV"
+ assert isinstance(df, pd.DataFrame)
+ assert len(df) > 0
+ assert "EID" in df.columns or "Authors" in df.columns
+
+
+@pytest.mark.file_sources
+@pytest.mark.skipif(not _SCOPUS_BIB.exists(), reason="Scopus BibTeX sample not found")
+def test_load_file_scopus_bib():
+ df, src = load_file(_SCOPUS_BIB)
+ assert src == "SCOPUS_BIB"
+ assert isinstance(df, pd.DataFrame)
+ assert len(df) > 0
+ assert "author" in df.columns or "AU" in df.columns
+
+
+@pytest.mark.file_sources
+@pytest.mark.skipif(not _WOS_TXT.exists(), reason="WoS TXT sample not found")
+def test_load_file_wos_txt():
+ df, src = load_file(_WOS_TXT)
+ assert src == "WOS_TXT"
+ assert isinstance(df, pd.DataFrame)
+ assert len(df) > 0
+
+
+@pytest.mark.file_sources
+@pytest.mark.skipif(not _WOS_CIW.exists(), reason="WoS CIW sample not found")
+def test_load_file_wos_ciw():
+ df, src = load_file(_WOS_CIW)
+ assert src == "WOS_TXT"
+ assert isinstance(df, pd.DataFrame)
+ assert len(df) > 0
+
+
+@pytest.mark.file_sources
+@pytest.mark.skipif(not _WOS_BIB.exists(), reason="WoS BibTeX sample not found")
+def test_load_file_wos_bib():
+ df, src = load_file(_WOS_BIB)
+ assert src == "WOS_BIB"
+ assert isinstance(df, pd.DataFrame)
+ assert len(df) > 0
+ assert "author" in df.columns or "AU" in df.columns
+
+
+@pytest.mark.file_sources
+@pytest.mark.skipif(not _DIMENSIONS.exists(), reason="Dimensions CSV sample not found")
+def test_load_file_dimensions_csv():
+ df, src = load_file(_DIMENSIONS)
+ assert src == "DIMENSIONS"
+ assert isinstance(df, pd.DataFrame)
+ assert len(df) > 0
+ # Dimensions header at row 1; "Publication ID" should appear after skiprows=1
+ assert "Publication ID" in df.columns or "PubYear" in df.columns
+
+
+@pytest.mark.file_sources
+@pytest.mark.skipif(not _DIM_XLSX.exists(), reason="Dimensions XLSX sample not found")
+def test_load_file_dimensions_xlsx():
+ df, src = load_file(_DIM_XLSX)
+ assert src == "DIMENSIONS"
+ assert isinstance(df, pd.DataFrame)
+ assert len(df) > 0
+
+
+@pytest.mark.file_sources
+@pytest.mark.skipif(not _LENS.exists(), reason="Lens CSV sample not found")
+def test_load_file_lens():
+ df, src = load_file(_LENS)
+ assert src == "LENS"
+ assert isinstance(df, pd.DataFrame)
+ assert len(df) > 0
+ assert "Lens ID" in df.columns or "Author/s" in df.columns
+
+
+@pytest.mark.file_sources
+@pytest.mark.skipif(not _COCHRANE.exists(), reason="Cochrane TXT sample not found")
+def test_load_file_cochrane():
+ df, src = load_file(_COCHRANE)
+ assert src == "COCHRANE"
+ assert isinstance(df, pd.DataFrame)
+ assert len(df) > 0
+
+
+@pytest.mark.file_sources
+@pytest.mark.skipif(not _PUBMED_FILE.exists(), reason="PubMed TXT sample not found")
+def test_load_file_pubmed_file():
+ df, src = load_file(_PUBMED_FILE)
+ assert src == "PUBMED_FILE"
+ assert isinstance(df, pd.DataFrame)
+ assert len(df) > 0
+ # MEDLINE format must include PMID field
+ assert "PMID" in df.columns
+
+
+# ---- Explicit source override ----
+
+@pytest.mark.file_sources
+@pytest.mark.skipif(not _WOS_CIW.exists(), reason="WoS CIW sample not found")
+def test_load_file_explicit_source_override():
+ """load_file() must respect an explicit source= argument."""
+ df, src = load_file(_WOS_CIW, source="WOS_TXT")
+ assert src == "WOS_TXT"
+ assert len(df) > 0
+
+
+# ---- Parametrized full pipeline tests ----
+
+_PIPELINE_PARAMS = [
+ pytest.param("SCOPUS_CSV", _SCOPUS_CSV, id="scopus_csv"),
+ pytest.param("SCOPUS_BIB", _SCOPUS_BIB, id="scopus_bib"),
+ pytest.param("WOS_TXT", _WOS_TXT, id="wos_txt"),
+ pytest.param("WOS_BIB", _WOS_BIB, id="wos_bib"),
+ pytest.param("DIMENSIONS", _DIMENSIONS, id="dimensions_csv"),
+ pytest.param("LENS", _LENS, id="lens_csv"),
+ pytest.param("COCHRANE", _COCHRANE, id="cochrane_txt"),
+ pytest.param("PUBMED_FILE", _PUBMED_FILE, id="pubmed_file"),
+]
+
+
+@pytest.mark.file_sources
+@pytest.mark.parametrize("source,filepath", _PIPELINE_PARAMS)
+def test_pipeline_file_source(source: str, filepath: Path):
+ """Load a file, run the full ETL pipeline, assert schema correctness."""
+ if not filepath.exists():
+ pytest.skip(f"Sample file not found: {filepath}")
+
+ raw_df, detected_source = load_file(filepath, source=source)
+ assert len(raw_df) > 0, f"{source}: loaded empty DataFrame"
+
+ std_df = run_pipeline(raw_df, source=detected_source)
+ _assert_standardized(std_df, source)
+
+
+@pytest.mark.file_sources
+@pytest.mark.parametrize("source,filepath", _PIPELINE_PARAMS)
+def test_validate_file_output(source: str, filepath: Path):
+ """Pipeline output for every file source must pass validate() without errors."""
+ if not filepath.exists():
+ pytest.skip(f"Sample file not found: {filepath}")
+
+ raw_df, detected_source = load_file(filepath, source=source)
+ std_df = run_pipeline(raw_df, source=detected_source)
+ report = validate(std_df)
+
+ assert report["passed"] is True, (
+ f"{source}: validation failed. "
+ f"Checks: {[c for c in report['checks'] if not c['passed']]}"
+ )
+
+
+# ---- Source-specific column-mapping spot checks ----
+
+@pytest.mark.file_sources
+@pytest.mark.skipif(not _SCOPUS_CSV.exists(), reason="Scopus CSV sample not found")
+def test_scopus_csv_db_value():
+ raw, src = load_file(_SCOPUS_CSV)
+ df = run_pipeline(raw, source=src)
+ assert (df["DB"] == "SCOPUS").all(), f"Expected DB='SCOPUS', got {df['DB'].unique()}"
+
+
+@pytest.mark.file_sources
+@pytest.mark.skipif(not _WOS_TXT.exists(), reason="WoS TXT sample not found")
+def test_wos_txt_db_value():
+ raw, src = load_file(_WOS_TXT)
+ df = run_pipeline(raw, source=src)
+ assert (df["DB"] == "WOS").all(), f"Expected DB='WOS', got {df['DB'].unique()}"
+
+
+@pytest.mark.file_sources
+@pytest.mark.skipif(not _DIMENSIONS.exists(), reason="Dimensions CSV sample not found")
+def test_dimensions_csv_db_value():
+ raw, src = load_file(_DIMENSIONS)
+ df = run_pipeline(raw, source=src)
+ assert (df["DB"] == "DIMENSIONS").all(), f"Expected DB='DIMENSIONS', got {df['DB'].unique()}"
+
+
+@pytest.mark.file_sources
+@pytest.mark.skipif(not _LENS.exists(), reason="Lens CSV sample not found")
+def test_lens_db_value():
+ raw, src = load_file(_LENS)
+ df = run_pipeline(raw, source=src)
+ assert (df["DB"] == "LENS").all(), f"Expected DB='LENS', got {df['DB'].unique()}"
+
+
+@pytest.mark.file_sources
+@pytest.mark.skipif(not _COCHRANE.exists(), reason="Cochrane TXT sample not found")
+def test_cochrane_db_value():
+ raw, src = load_file(_COCHRANE)
+ df = run_pipeline(raw, source=src)
+ assert (df["DB"] == "COCHRANE").all(), f"Expected DB='COCHRANE', got {df['DB'].unique()}"
+
+
+@pytest.mark.file_sources
+@pytest.mark.skipif(not _PUBMED_FILE.exists(), reason="PubMed TXT sample not found")
+def test_pubmed_file_db_value():
+ raw, src = load_file(_PUBMED_FILE)
+ df = run_pipeline(raw, source=src)
+ assert (df["DB"] == "PUBMED").all(), f"Expected DB='PUBMED', got {df['DB'].unique()}"
+
+
+@pytest.mark.file_sources
+@pytest.mark.skipif(not _SCOPUS_BIB.exists(), reason="Scopus BibTeX sample not found")
+def test_scopus_bib_au_is_list():
+ """BibTeX 'and'-delimited author string must be split into list[str]."""
+ raw, src = load_file(_SCOPUS_BIB)
+ df = run_pipeline(raw, source=src)
+ assert df["AU"].apply(lambda v: isinstance(v, list)).all(), \
+ "SCOPUS_BIB: AU field not converted to list[str]"
+ # Ensure at least one record has >1 author (confirming 'and' split works)
+ multi_author = df["AU"].apply(lambda v: len(v) > 1)
+ # This is a soft check: if all records happen to be single-author, skip
+ if not multi_author.any():
+ pytest.skip("All Scopus BibTeX records are single-author; cannot verify 'and' split")
+
+
+@pytest.mark.file_sources
+@pytest.mark.skipif(not _WOS_BIB.exists(), reason="WoS BibTeX sample not found")
+def test_wos_bib_ut_starts_with_wos():
+ """WoS BibTeX entry keys (e.g. 'WOS:001...') must become the UT field."""
+ raw, src = load_file(_WOS_BIB)
+ df = run_pipeline(raw, source=src)
+ non_empty_ut = df["UT"][df["UT"] != ""]
+ if len(non_empty_ut) == 0:
+ pytest.skip("WoS BibTeX sample has no UT values")
+ assert non_empty_ut.str.startswith("WOS:").any(), \
+ "WOS_BIB: UT values do not start with 'WOS:'"
+
+
+@pytest.mark.file_sources
+@pytest.mark.skipif(not _DIMENSIONS.exists(), reason="Dimensions CSV sample not found")
+def test_dimensions_py_4digit():
+ """Dimensions PubYear must be extracted as a 4-digit string."""
+ raw, src = load_file(_DIMENSIONS)
+ df = run_pipeline(raw, source=src)
+ non_empty = df["PY"][df["PY"] != ""]
+ assert (non_empty.str.len() == 4).all(), \
+ f"Dimensions: PY not 4-digit strings — sample: {non_empty.head().tolist()}"
+
+
+# ---- export_to_csv round-trip ----
+
+@pytest.mark.file_sources
+@pytest.mark.skipif(not _SCOPUS_CSV.exists(), reason="Scopus CSV sample not found")
+def test_export_to_csv_round_trip(tmp_path: Path):
+ """CSV export must produce a file readable as a DataFrame with correct columns."""
+ raw, src = load_file(_SCOPUS_CSV)
+ std_df = run_pipeline(raw, source=src)
+ csv_path = export_to_csv(std_df, src, output_dir=str(tmp_path))
+
+ assert csv_path.exists(), "export_to_csv did not create the file"
+ reloaded = pd.read_csv(csv_path)
+ assert len(reloaded) == len(std_df), "Row count mismatch after CSV round-trip"
+ for col in MANDATORY_COLUMNS:
+ assert col in reloaded.columns, f"Mandatory column {col} missing from CSV"
diff --git a/www/services/api_retriever.py b/www/services/api_retriever.py
new file mode 100644
index 000000000..fa2246dad
--- /dev/null
+++ b/www/services/api_retriever.py
@@ -0,0 +1,380 @@
+"""
+API retrieval module for PubMed (E-utilities) and OpenAlex REST API.
+
+Each fetch_* function returns a raw pandas DataFrame whose column names
+match the keys in the corresponding mapping dictionary in mapping_dicts.py.
+No WoS-schema column names are used here; all renaming happens downstream
+in standardizer.py.
+"""
+
+import logging
+import re
+import time
+from typing import Any
+
+import pandas as pd
+import requests
+
+logger = logging.getLogger(__name__)
+
+# ---------------------------------------------------------------------------
+# Constants
+# ---------------------------------------------------------------------------
+
+PUBMED_BASE = "https://eutils.ncbi.nlm.nih.gov/entrez/eutils"
+OPENALEX_BASE = "https://api.openalex.org/works"
+OPENALEX_EMAIL = "bibliometrix-python@example.com" # polite-pool identifier
+
+_BACKOFF_BASE = 1.0 # seconds; doubled on each retry
+_MAX_RETRIES = 5
+_PUBMED_BATCH = 200 # efetch batch size
+_OPENALEX_PAGE_SIZE = 200
+
+
+# ---------------------------------------------------------------------------
+# Shared helpers
+# ---------------------------------------------------------------------------
+
+def _get_with_backoff(url: str, params: dict, timeout: int = 30) -> requests.Response:
+ """
+ HTTP GET with exponential-backoff retry on 429 / 5xx responses.
+
+ Args:
+ url: Endpoint URL.
+ params: Query parameters dict.
+ timeout: Per-request timeout in seconds.
+
+ Returns:
+ A successful requests.Response object.
+
+ Raises:
+ RuntimeError: If all retries are exhausted.
+ """
+ delay = _BACKOFF_BASE
+ for attempt in range(1, _MAX_RETRIES + 1):
+ try:
+ resp = requests.get(url, params=params, timeout=timeout)
+ if resp.status_code in (429, 500, 502, 503, 504):
+ logger.warning("HTTP %s on attempt %d; retrying in %.1fs", resp.status_code, attempt, delay)
+ time.sleep(delay)
+ delay *= 2
+ continue
+ resp.raise_for_status()
+ return resp
+ except requests.RequestException as exc:
+ if attempt == _MAX_RETRIES:
+ raise RuntimeError(f"Request failed after {_MAX_RETRIES} attempts: {exc}") from exc
+ logger.warning("Request error on attempt %d: %s; retrying in %.1fs", attempt, exc, delay)
+ time.sleep(delay)
+ delay *= 2
+ raise RuntimeError("Unreachable") # pragma: no cover
+
+
+# ---------------------------------------------------------------------------
+# PubMed
+# ---------------------------------------------------------------------------
+
+def _parse_medline_text(text: str) -> list[dict[str, str]]:
+ """
+ Parse a MEDLINE-format text block into a list of record dicts.
+
+ Multi-value fields (AU, FAU, MH, OT, AD, PT) are joined with ";".
+ Continuation lines (starting with 6 spaces) are appended to the
+ current field value.
+
+ Args:
+ text: Raw MEDLINE text from efetch.
+
+ Returns:
+ List of dicts, one per PubMed record.
+ """
+ records: list[dict[str, str]] = []
+ current: dict[str, str] = {}
+ current_key: str | None = None
+
+ for line in text.splitlines():
+ if line.strip() == "":
+ if current:
+ records.append(current)
+ current = {}
+ current_key = None
+ continue
+
+ if line.startswith(" "):
+ # Continuation line — append to previous field
+ if current_key and current_key in current:
+ current[current_key] += " " + line.strip()
+ continue
+
+ match = re.match(r"^([A-Z]{2,4})\s*-\s*(.*)", line)
+ if match:
+ key = match.group(1)
+ value = match.group(2).strip()
+ current_key = key
+ if key in current:
+ current[key] += ";" + value
+ else:
+ current[key] = value
+
+ if current:
+ records.append(current)
+
+ return records
+
+
+def _esearch_pmids(query: str, max_results: int) -> list[str]:
+ """
+ Search PubMed and return a list of PMIDs up to max_results.
+
+ Args:
+ query: PubMed search query string.
+ max_results: Maximum number of PMIDs to retrieve.
+
+ Returns:
+ List of PMID strings.
+ """
+ params = {
+ "db": "pubmed",
+ "term": query,
+ "retmax": max_results,
+ "retmode": "json",
+ "usehistory": "y",
+ }
+ resp = _get_with_backoff(f"{PUBMED_BASE}/esearch.fcgi", params)
+ data = resp.json()
+ pmids: list[str] = data.get("esearchresult", {}).get("idlist", [])
+ logger.info("esearch returned %d PMIDs for query: %s", len(pmids), query)
+ return pmids
+
+
+def _efetch_records(pmids: list[str]) -> list[dict[str, str]]:
+ """
+ Fetch full MEDLINE records for a list of PMIDs in batches.
+
+ Args:
+ pmids: List of PubMed IDs.
+
+ Returns:
+ List of parsed record dicts.
+ """
+ all_records: list[dict[str, str]] = []
+ for start in range(0, len(pmids), _PUBMED_BATCH):
+ batch = pmids[start: start + _PUBMED_BATCH]
+ params = {
+ "db": "pubmed",
+ "id": ",".join(batch),
+ "rettype": "medline",
+ "retmode": "text",
+ }
+ resp = _get_with_backoff(f"{PUBMED_BASE}/efetch.fcgi", params)
+ records = _parse_medline_text(resp.text)
+ all_records.extend(records)
+ logger.info("Fetched %d records (batch %d-%d)", len(records), start, start + len(batch))
+ if start + _PUBMED_BATCH < len(pmids):
+ time.sleep(0.34) # NCBI rate-limit: max 3 requests/second without API key
+ return all_records
+
+
+def fetch_pubmed(query: str, max_results: int = 100) -> pd.DataFrame:
+ """
+ Retrieve PubMed records via E-utilities and return a raw DataFrame.
+
+ Column names match PUBMED_MAP keys from mapping_dicts.py.
+ Multi-value fields are stored as ";"-joined strings — enforce_types
+ will split them into list[str].
+
+ Args:
+ query: PubMed search query (supports full Entrez syntax).
+ max_results: Maximum number of records to retrieve (default 100).
+
+ Returns:
+ Raw DataFrame with one row per article and PubMed field tags as columns.
+
+ Raises:
+ RuntimeError: If the API cannot be reached after retries.
+ ValueError: If no results are found for the query.
+ """
+ logger.info("PubMed fetch: query=%r max_results=%d", query, max_results)
+ pmids = _esearch_pmids(query, max_results)
+ if not pmids:
+ raise ValueError(f"No PubMed results for query: {query!r}")
+
+ records = _efetch_records(pmids)
+ df = pd.DataFrame(records)
+
+ # Tag the source so the standardizer can identify it without ambiguity
+ df["DB"] = "PUBMED"
+ logger.info("fetch_pubmed complete: %d rows, %d columns", len(df), len(df.columns))
+ return df
+
+
+# ---------------------------------------------------------------------------
+# OpenAlex
+# ---------------------------------------------------------------------------
+
+def _reconstruct_abstract(inverted_index: dict | None) -> str:
+ """
+ Reconstruct abstract text from OpenAlex abstract_inverted_index.
+
+ The inverted index maps each word to a list of its positions in the
+ abstract. Reconstruction sorts words by position to recover the original.
+
+ Args:
+ inverted_index: Dict mapping word -> [position, ...], or None.
+
+ Returns:
+ Reconstructed abstract string, or "" if index is missing/empty.
+ """
+ if not inverted_index:
+ return ""
+ position_word: dict[int, str] = {}
+ for word, positions in inverted_index.items():
+ for pos in positions:
+ position_word[pos] = word
+ return " ".join(position_word[i] for i in sorted(position_word))
+
+
+def _flatten_openalex_record(record: dict[str, Any]) -> dict[str, Any]:
+ """
+ Flatten a single OpenAlex work JSON object into a flat dict.
+
+ Produces column names that match OPENALEX_MAP keys in mapping_dicts.py.
+ All multi-value fields are stored as lists at this stage; enforce_types
+ will normalise them later.
+
+ Args:
+ record: A single OpenAlex work dict from the API response.
+
+ Returns:
+ Flat dict with one entry per column.
+ """
+ flat: dict[str, Any] = {}
+
+ flat["display_name"] = record.get("title") or record.get("display_name") or ""
+ flat["publication_year"] = str(record.get("publication_year") or "")
+ flat["type"] = record.get("type") or ""
+ flat["language"] = record.get("language") or ""
+ flat["cited_by_count"] = record.get("cited_by_count") or 0
+
+ # DOI — strip resolver prefix
+ raw_doi = record.get("doi") or ""
+ flat["doi"] = raw_doi.replace("https://doi.org/", "").replace("http://doi.org/", "")
+
+ # OpenAlex ID
+ flat["openalex_id"] = record.get("id") or ""
+
+ # PubMed ID
+ ids = record.get("ids") or {}
+ raw_pmid = ids.get("pmid") or ""
+ flat["pmid"] = str(raw_pmid).replace("https://pubmed.ncbi.nlm.nih.gov/", "").strip("/")
+
+ # Authors
+ authorships = record.get("authorships") or []
+ author_names: list[str] = []
+ author_full_names: list[str] = []
+ affiliations: list[str] = []
+
+ for a in authorships:
+ author = a.get("author") or {}
+ display = author.get("display_name") or ""
+ author_names.append(display)
+ author_full_names.append(display) # OpenAlex provides full names only
+ for inst in (a.get("institutions") or []):
+ inst_name = inst.get("display_name") or ""
+ if inst_name:
+ affiliations.append(inst_name)
+
+ flat["author_names"] = author_names
+ flat["author_full_names"] = author_full_names
+ flat["affiliations"] = affiliations
+ flat["reprint_author"] = author_names[0] if author_names else ""
+
+ # Journal / source
+ primary = record.get("primary_location") or {}
+ source = primary.get("source") or {}
+ flat["source_title"] = source.get("display_name") or ""
+ flat["source_abbr"] = source.get("abbreviated_title") or source.get("display_name") or ""
+
+ # Bibliographic details
+ biblio = record.get("biblio") or {}
+ flat["volume"] = str(biblio.get("volume") or "")
+ flat["issue"] = str(biblio.get("issue") or "")
+ flat["first_page"] = str(biblio.get("first_page") or "")
+ flat["last_page"] = str(biblio.get("last_page") or "")
+
+ # Abstract
+ flat["abstract"] = _reconstruct_abstract(record.get("abstract_inverted_index"))
+
+ # Keywords (author keywords)
+ kw_raw = record.get("keywords") or []
+ flat["keywords"] = [k.get("keyword", "") for k in kw_raw if k.get("keyword")]
+
+ # Concepts (index keywords)
+ concepts_raw = record.get("concepts") or []
+ flat["concepts"] = [c.get("display_name", "") for c in concepts_raw if c.get("display_name")]
+
+ # Referenced works (as OpenAlex IDs — used as CR placeholders)
+ flat["referenced_works"] = record.get("referenced_works") or []
+
+ # DB tag added here for early source identification
+ flat["DB"] = "OPENALEX"
+
+ return flat
+
+
+def fetch_openalex(query: str, max_results: int = 100) -> pd.DataFrame:
+ """
+ Retrieve works from OpenAlex REST API and return a raw DataFrame.
+
+ Column names match OPENALEX_MAP keys from mapping_dicts.py.
+ Multi-value fields are stored as Python lists at this stage.
+
+ Args:
+ query: Full-text search query string.
+ max_results: Maximum number of records to retrieve (default 100).
+
+ Returns:
+ Raw DataFrame with one row per work and flattened OpenAlex fields.
+
+ Raises:
+ RuntimeError: If the API cannot be reached after retries.
+ ValueError: If no results are found for the query.
+ """
+ logger.info("OpenAlex fetch: query=%r max_results=%d", query, max_results)
+ records: list[dict[str, Any]] = []
+ page = 1
+ per_page = min(_OPENALEX_PAGE_SIZE, max_results)
+
+ while len(records) < max_results:
+ remaining = max_results - len(records)
+ params: dict[str, Any] = {
+ "search": query,
+ "per-page": min(per_page, remaining),
+ "page": page,
+ "mailto": OPENALEX_EMAIL,
+ }
+ resp = _get_with_backoff(OPENALEX_BASE, params)
+ data = resp.json()
+ results = data.get("results") or []
+
+ if not results:
+ break
+
+ records.extend(results)
+ logger.info("OpenAlex page %d: %d results (total so far: %d)", page, len(results), len(records))
+
+ meta = data.get("meta") or {}
+ count = meta.get("count") or 0
+ if len(records) >= count or len(records) >= max_results:
+ break
+
+ page += 1
+ time.sleep(0.1) # polite-pool courtesy delay
+
+ if not records:
+ raise ValueError(f"No OpenAlex results for query: {query!r}")
+
+ flat_records = [_flatten_openalex_record(r) for r in records[:max_results]]
+ df = pd.DataFrame(flat_records)
+ logger.info("fetch_openalex complete: %d rows, %d columns", len(df), len(df.columns))
+ return df
diff --git a/www/services/biblionetwork.py b/www/services/biblionetwork.py
index 7e65b4880..4d50345de 100644
--- a/www/services/biblionetwork.py
+++ b/www/services/biblionetwork.py
@@ -75,7 +75,8 @@ def crossprod(A, B):
db_name = M["DB"].iloc[0]
print(f"db_name: {db_name}")
- if network == "references" and db_name == "SCOPUS":
+ # PATCHED: accept both "Scopus" (Shiny) and "SCOPUS" (ETL pipeline) DB values.
+ if network == "references" and db_name.upper() == "SCOPUS":
ind = [i for i, col in enumerate(NetMatrix.columns) if str(col)[0].isalpha()]
NetMatrix = NetMatrix.iloc[ind, ind]
@@ -91,12 +92,17 @@ def label_short(NET, db="isi"):
LABEL = pd.Series(NET.columns)
YEAR = LABEL.str.extract(r'(\d{4})')[0].fillna("")
- if db == "web_of_science":
+ if db in ("web_of_science", "wos"):
AU = LABEL.str.split(" ").str[:2].str.join(" ")
LABEL = AU + " " + YEAR
- elif db == "scopus":
+ elif db in ("scopus",):
AU = LABEL.str.split(". ").str[0]
LABEL = AU + ". " + YEAR
+ # PATCHED: PubMed, OpenAlex, Dimensions, Lens, and Cochrane all use the
+ # same WoS-compatible SR format; reuse the WoS label-shortening logic.
+ elif db in ("pubmed", "openalex", "dimensions", "lens", "cochrane"):
+ AU = LABEL.str.split(" ").str[:2].str.join(" ")
+ LABEL = AU + " " + YEAR
return LABEL.tolist()
diff --git a/www/services/histnetwork.py b/www/services/histnetwork.py
index 7848d9744..2e43fb0f3 100644
--- a/www/services/histnetwork.py
+++ b/www/services/histnetwork.py
@@ -34,10 +34,15 @@ def histNetwork(df, min_citations=0, sep=";", network=True):
# Fill missing values in TC
M['TC'] = M['TC'].fillna(0)
- if db == "Web_of_Science":
+ # PATCHED: accept all ETL pipeline DB values in addition to original Shiny names.
+ if db in ("Web_of_Science", "WOS"):
results = wos(M, min_citations=min_citations, sep=sep, network=network)
- elif db == "Scopus":
+ elif db in ("Scopus", "SCOPUS"):
results = scopus(M, min_citations=min_citations, sep=sep, network=network)
+ # PATCHED: route all supported sources through the WoS-compatible citation
+ # analysis path (SR/DOI-based reference matching is source-agnostic).
+ elif db in ("PUBMED", "OPENALEX", "DIMENSIONS", "LENS", "COCHRANE"):
+ results = wos(M, min_citations=min_citations, sep=sep, network=network)
else:
print("\nDatabase not compatible with direct citation analysis\n")
return None
diff --git a/www/services/mapping_dicts.py b/www/services/mapping_dicts.py
new file mode 100644
index 000000000..385668161
--- /dev/null
+++ b/www/services/mapping_dicts.py
@@ -0,0 +1,333 @@
+"""
+Column mapping dictionaries for each bibliographic source.
+
+Each dictionary maps source-native field names to the WoS Field Tag schema.
+Never reference column names directly elsewhere in the codebase — import and
+use these dictionaries instead.
+"""
+
+from typing import Final
+
+# ---------------------------------------------------------------------------
+# PubMed — MEDLINE flat-tag format (E-utilities efetch rettype=medline)
+# ---------------------------------------------------------------------------
+# Multi-value fields (AU, FAU, MH, OT, AD, PT) are pre-joined with ";"
+# by the API retriever before the DataFrame is built.
+# AID contains entries like "10.1234/abc [doi]" — DOI extraction happens
+# in enforce_types, not here.
+# PG contains a page range like "100-110"; EP is derived in enforce_types.
+# ---------------------------------------------------------------------------
+PUBMED_MAP: Final[dict[str, str]] = {
+ "PMID": "PMID",
+ "TI": "TI",
+ "AU": "AU",
+ "FAU": "AF",
+ "AD": "C1",
+ "DP": "PY", # "2023 Jan 15" → 4-digit year extracted in enforce_types
+ "TA": "JI",
+ "JT": "SO",
+ "PT": "DT",
+ "MH": "ID",
+ "OT": "DE",
+ "AB": "AB",
+ "VI": "VL",
+ "IP": "IS",
+ "PG": "BP", # full page string, EP derived in enforce_types
+ "AID": "DI", # DOI candidate; cleaned in enforce_types
+ "LA": "LA",
+ "GR": "FU",
+ "RP": "RP",
+ "EDAT": "UT", # used as unique identifier fallback
+}
+
+# ---------------------------------------------------------------------------
+# OpenAlex — flattened JSON field names produced by fetch_openalex()
+# ---------------------------------------------------------------------------
+# The API retriever flattens nested JSON into these scalar/list column names
+# before the DataFrame is constructed. Nested extraction (authorships,
+# biblio, primary_location, abstract_inverted_index) is done in the
+# retriever, not here.
+# ---------------------------------------------------------------------------
+OPENALEX_MAP: Final[dict[str, str]] = {
+ "display_name": "TI",
+ "author_names": "AU",
+ "author_full_names": "AF",
+ "affiliations": "C1",
+ "doi": "DI",
+ "publication_year": "PY",
+ "source_title": "SO",
+ "source_abbr": "JI",
+ "volume": "VL",
+ "issue": "IS",
+ "first_page": "BP",
+ "last_page": "EP",
+ "abstract": "AB",
+ "concepts": "ID",
+ "keywords": "DE",
+ "cited_by_count": "TC",
+ "type": "DT",
+ "language": "LA",
+ "referenced_works": "CR",
+ "openalex_id": "UT",
+ "pmid": "PMID",
+ "reprint_author": "RP",
+}
+
+# ---------------------------------------------------------------------------
+# PubMed file — MEDLINE plaintext export (uses LID instead of AID for DOI)
+# ---------------------------------------------------------------------------
+# IS in MEDLINE file format is ISSN (not issue number!). IP is issue number.
+# LID contains the DOI with "[doi]" suffix, same cleaning as AID.
+# Parsed by parse_pubmed_data() from parsers.py; multi-value fields joined ";".
+# ---------------------------------------------------------------------------
+PUBMED_FILE_MAP: Final[dict[str, str]] = {
+ "PMID": "PMID",
+ "TI": "TI",
+ "AU": "AU",
+ "FAU": "AF",
+ "AD": "C1",
+ "DP": "PY",
+ "TA": "JI",
+ "JT": "SO",
+ "PT": "DT",
+ "MH": "ID",
+ "OT": "DE",
+ "AB": "AB",
+ "VI": "VL",
+ "IP": "IS", # IP = Issue Number in MEDLINE
+ "PG": "BP",
+ "LID": "DI", # DOI in file exports with "[doi]" suffix
+ "IS": "SN", # IS = ISSN in MEDLINE file (not issue number!)
+ "LA": "LA",
+ "GR": "FU",
+}
+
+# ---------------------------------------------------------------------------
+# Scopus CSV — column headers from the Scopus CSV export
+# ---------------------------------------------------------------------------
+SCOPUS_CSV_MAP: Final[dict[str, str]] = {
+ "Title": "TI",
+ "Authors": "AU",
+ "Author full names": "AF",
+ "Abstract": "AB",
+ "Source title": "SO",
+ "Abbreviated Source Title": "JI",
+ "Year": "PY",
+ "Volume": "VL",
+ "Issue": "IS",
+ "Page start": "BP",
+ "Page end": "EP",
+ "Cited by": "TC",
+ "DOI": "DI",
+ "References": "CR",
+ "Affiliations": "C1",
+ "Author Keywords": "DE",
+ "Index Keywords": "ID",
+ "ISSN": "SN",
+ "Language of Original Document": "LA",
+ "Document Type": "DT",
+ "Correspondence Address": "RP",
+ "Funding Details": "FU",
+ "Funding Texts": "FX",
+ "PubMed ID": "PMID",
+ "Open Access": "OA",
+ "EID": "UT",
+ "Publisher": "PU",
+ "Author(s) ID": "OI",
+}
+
+# ---------------------------------------------------------------------------
+# Scopus BibTeX — fields returned by bibtexparser v1.x (all lowercase)
+# ---------------------------------------------------------------------------
+# author → "Surname, Name and Surname2, Name2" — split in enforce_types.
+# note → "Cited by: N; Export Date: ..." — TC integer extracted in enforce_types.
+# url → Scopus record URL; EID extracted via regex in enforce_types → UT.
+# pages → "100 - 110" (with spaces) — EP derived in enforce_types.
+# ---------------------------------------------------------------------------
+SCOPUS_BIB_MAP: Final[dict[str, str]] = {
+ "title": "TI",
+ "author": "AU",
+ "abstract": "AB",
+ "journal": "SO",
+ "abbrev_source_title": "JI",
+ "year": "PY",
+ "volume": "VL",
+ "number": "IS",
+ "pages": "BP",
+ "doi": "DI",
+ "affiliations": "C1",
+ "author_keywords": "DE",
+ "keywords": "ID",
+ "issn": "SN",
+ "language": "LA",
+ "type": "DT",
+ "correspondence_address": "RP",
+ "funding-acknowledgement": "FU",
+ "funding-text": "FX",
+ "pmid": "PMID",
+ "url": "UT",
+ "note": "TC",
+ "publisher": "PU",
+ "cited-references": "CR",
+}
+
+# ---------------------------------------------------------------------------
+# Web of Science TXT/CIW — parse_wos_data() already returns WoS tags.
+# Only non-trivial renames are listed; all other fields keep their names.
+# ---------------------------------------------------------------------------
+WOS_TXT_MAP: Final[dict[str, str]] = {
+ "PM": "PMID", # PubMed ID field in WoS TXT
+}
+
+# ---------------------------------------------------------------------------
+# Web of Science BibTeX — fields returned by bibtexparser v1.x (lowercase)
+# ---------------------------------------------------------------------------
+# The bibtexparser "ID" key holds the BibTeX entry key, which for WoS BibTeX
+# exports is the WoS accession number (e.g. "WOS:001012311500028").
+# author → "Surname, Name and Surname2, Name2" — split in enforce_types.
+# Both "affiliation" and "affiliations" fields may be present; "affiliation"
+# (per-author detail) is preferred for C1.
+# ---------------------------------------------------------------------------
+WOS_BIB_MAP: Final[dict[str, str]] = {
+ "ID": "UT",
+ "title": "TI",
+ "author": "AU",
+ "abstract": "AB",
+ "journal": "SO",
+ "booktitle": "SO",
+ "journal-iso": "JI",
+ "year": "PY",
+ "volume": "VL",
+ "number": "IS",
+ "pages": "BP",
+ "doi": "DI",
+ "affiliation": "C1",
+ "keywords": "DE",
+ "keywords-plus": "ID",
+ "issn": "SN",
+ "language": "LA",
+ "type": "DT",
+ "publisher": "PU",
+ "times-cited": "TC",
+ "research-areas": "SC",
+ "funding-acknowledgement": "FU",
+ "funding-text": "FX",
+ "author-email": "EM",
+ "orcid-numbers": "OI",
+}
+
+# ---------------------------------------------------------------------------
+# Dimensions CSV/XLSX — column headers from Dimensions export (skiprows=1)
+# ---------------------------------------------------------------------------
+# Pagination: "100-110" — EP derived in enforce_types.
+# Authors (Raw Affiliation): "Author (Affiliation); ..." — affiliation
+# extraction handled in enforce_types for DIMENSIONS source.
+# ---------------------------------------------------------------------------
+DIMENSIONS_MAP: Final[dict[str, str]] = {
+ "Title": "TI",
+ "Authors": "AU",
+ "Abstract": "AB",
+ "Source title": "SO",
+ "PubYear": "PY",
+ "Volume": "VL",
+ "Issue": "IS",
+ "Pagination": "BP",
+ "Times cited": "TC",
+ "DOI": "DI",
+ "Authors (Raw Affiliation)": "C1",
+ "Corresponding Authors": "RP",
+ "MeSH terms": "ID",
+ "Fields of Research (ANZSRC 2020)": "SC",
+ "Acknowledgements": "FX",
+ "Funding": "FU",
+ "PMID": "PMID",
+ "Open Access": "OA",
+ "Publication Type": "DT",
+ "Publication ID": "UT",
+}
+
+# ---------------------------------------------------------------------------
+# Lens.org CSV — column headers from the Lens CSV export
+# ---------------------------------------------------------------------------
+LENS_MAP: Final[dict[str, str]] = {
+ "Title": "TI",
+ "Author/s": "AU",
+ "Abstract": "AB",
+ "Source Title": "SO",
+ "Publication Year": "PY",
+ "Volume": "VL",
+ "Issue Number": "IS",
+ "Start Page": "BP",
+ "End Page": "EP",
+ "Citing Works Count": "TC",
+ "DOI": "DI",
+ "References": "CR",
+ "Keywords": "DE",
+ "MeSH Terms": "ID",
+ "ISSNs": "SN",
+ "Publication Type": "DT",
+ "PMID": "PMID",
+ "Lens ID": "UT",
+ "Publisher": "PU",
+ "Funding": "FU",
+ "Fields of Study": "SC",
+ "Open Access Colour": "OA",
+}
+
+# ---------------------------------------------------------------------------
+# Cochrane CDSR TXT — tags returned by parse_cochrane_data()
+# ---------------------------------------------------------------------------
+# "ID" in Cochrane format = Cochrane record ID (e.g., "CD006605").
+# It is mapped to UT (unique identifier) to avoid collision with the WoS
+# "ID" field (Index Keywords). The rename happens in rename_columns before
+# enforce_types processes list fields.
+# Multiple AU values are pre-joined with "; " by the parser.
+# ---------------------------------------------------------------------------
+COCHRANE_MAP: Final[dict[str, str]] = {
+ "TI": "TI",
+ "AU": "AU",
+ "AB": "AB",
+ "SO": "SO",
+ "YR": "PY",
+ "SN": "SN",
+ "KY": "DE",
+ "DOI": "DI",
+ "ID": "UT",
+ "PB": "PU",
+ "NO": "IS",
+}
+
+# ---------------------------------------------------------------------------
+# Source identifier → DB column value written to the output CSV
+# ---------------------------------------------------------------------------
+SOURCE_TO_DB: Final[dict[str, str]] = {
+ "PUBMED": "PUBMED",
+ "OPENALEX": "OPENALEX",
+ "SCOPUS_CSV": "SCOPUS",
+ "SCOPUS_BIB": "SCOPUS",
+ "WOS_TXT": "WOS",
+ "WOS_BIB": "WOS",
+ "DIMENSIONS": "DIMENSIONS",
+ "LENS": "LENS",
+ "COCHRANE": "COCHRANE",
+ "PUBMED_FILE": "PUBMED",
+}
+
+# ---------------------------------------------------------------------------
+# Schema constants
+# ---------------------------------------------------------------------------
+
+MANDATORY_COLUMNS: Final[list[str]] = [
+ "DB", "UT", "DI", "PMID", "TI", "SO", "JI", "PY", "DT", "LA",
+ "TC", "AU", "AF", "C1", "RP", "CR", "DE", "ID", "AB", "VL",
+ "IS", "BP", "EP", "SR",
+]
+
+# Fields that must be list[str] in the standardized DataFrame
+LIST_FIELDS: Final[list[str]] = ["AU", "AF", "C1", "CR", "DE", "ID"]
+
+# Fields that must be str ("" when missing)
+SCALAR_FIELDS: Final[list[str]] = [
+ "TI", "SO", "AB", "DI", "UT", "DT", "LA", "RP", "JI",
+ "VL", "IS", "BP", "EP", "PMID", "DB", "SR", "SN",
+]
diff --git a/www/services/metatagextraction.py b/www/services/metatagextraction.py
index 5e1f8b9c8..7c3c7cc26 100644
--- a/www/services/metatagextraction.py
+++ b/www/services/metatagextraction.py
@@ -231,7 +231,11 @@ def extract_affiliations(l):
return ";".join(index)
M["AU_UN"] = listAFF.apply(extract_affiliations)
- if M["DB"].iloc[0] in ["ISI", "OPENALEX"] and "C3" in M.columns:
+ # PATCHED: added all ETL pipeline DB values so every supported source
+ # benefits from the C3 institution-name override (DIMENSIONS, LENS,
+ # COCHRANE, SCOPUS added alongside existing PUBMED, OPENALEX, WOS).
+ if M["DB"].iloc[0] in ["ISI", "OPENALEX", "PUBMED", "WOS",
+ "SCOPUS", "DIMENSIONS", "LENS", "COCHRANE"] and "C3" in M.columns:
M["AU_UN"].loc[M["C3"].notna() & (M["C3"] != "")] = M["C3"]
M["AU_UN"] = M["AU_UN"].str.split(sep).apply(lambda l: sep.join([x.strip() for x in l]))
diff --git a/www/services/standardizer.py b/www/services/standardizer.py
new file mode 100644
index 000000000..a0cd5869e
--- /dev/null
+++ b/www/services/standardizer.py
@@ -0,0 +1,888 @@
+"""
+ETL Transform pipeline — Phase 2 + file loading.
+
+Each function handles exactly one responsibility. run_pipeline() is the
+only orchestrator; it calls each step in order and must not contain
+any field-level logic itself.
+
+The existing SR(M) function from metatagextraction.py is called by
+add_calculated_fields() — it is never reimplemented here.
+"""
+
+import logging
+import re
+import tempfile
+from pathlib import Path
+from typing import Literal
+
+import pandas as pd
+
+from .mapping_dicts import (
+ COCHRANE_MAP,
+ DIMENSIONS_MAP,
+ LENS_MAP,
+ LIST_FIELDS,
+ MANDATORY_COLUMNS,
+ OPENALEX_MAP,
+ PUBMED_FILE_MAP,
+ PUBMED_MAP,
+ SCALAR_FIELDS,
+ SCOPUS_BIB_MAP,
+ SCOPUS_CSV_MAP,
+ SOURCE_TO_DB,
+ WOS_BIB_MAP,
+ WOS_TXT_MAP,
+)
+
+logger = logging.getLogger(__name__)
+
+# All supported source identifiers (internal routing codes)
+Source = Literal[
+ "PUBMED", # PubMed E-utilities API
+ "OPENALEX", # OpenAlex REST API
+ "PUBMED_FILE", # PubMed MEDLINE plaintext file
+ "SCOPUS_CSV", # Scopus CSV export
+ "SCOPUS_BIB", # Scopus BibTeX export
+ "WOS_TXT", # Web of Science TXT/CIW plaintext
+ "WOS_BIB", # Web of Science BibTeX export
+ "DIMENSIONS", # Dimensions CSV or XLSX export
+ "LENS", # Lens.org CSV export
+ "COCHRANE", # Cochrane CDSR TXT export
+]
+
+# Maps each Source code to the mapping dictionary for rename_columns()
+_MAPPING_REGISTRY: dict[str, dict[str, str]] = {
+ "PUBMED": PUBMED_MAP,
+ "OPENALEX": OPENALEX_MAP,
+ "PUBMED_FILE": PUBMED_FILE_MAP,
+ "SCOPUS_CSV": SCOPUS_CSV_MAP,
+ "SCOPUS_BIB": SCOPUS_BIB_MAP,
+ "WOS_TXT": WOS_TXT_MAP,
+ "WOS_BIB": WOS_BIB_MAP,
+ "DIMENSIONS": DIMENSIONS_MAP,
+ "LENS": LENS_MAP,
+ "COCHRANE": COCHRANE_MAP,
+}
+
+# Column fingerprints used by detect_source() fallback path
+_PUBMED_SIGNATURE = {"PMID", "TI", "AU", "FAU", "MH", "DP"}
+_OPENALEX_SIGNATURE = {"display_name", "cited_by_count", "openalex_id", "author_names"}
+_SCOPUS_CSV_SIG = {"EID", "Authors", "Source title"}
+_DIMENSIONS_SIG = {"Publication ID", "PubYear", "Times cited"}
+_LENS_SIG = {"Lens ID", "Author/s", "Citing Works Count"}
+_COCHRANE_SIG = {"KY", "YR"} # after parse_cochrane_data
+
+# DB column value → default Source code (used by detect_source())
+_DB_TO_SOURCE: dict[str, Source] = {
+ "PUBMED": "PUBMED",
+ "OPENALEX": "OPENALEX",
+ "SCOPUS": "SCOPUS_CSV", # default to CSV when file format unspecified
+ "WOS": "WOS_TXT", # default to TXT when file format unspecified
+ "DIMENSIONS": "DIMENSIONS",
+ "LENS": "LENS",
+ "COCHRANE": "COCHRANE",
+}
+
+# Lazy import gate for text-file parsers (parsers.py → from .utils import *)
+try:
+ from .parsers import parse_cochrane_data, parse_pubmed_data, parse_wos_data
+ _PARSERS_OK = True
+except Exception:
+ _PARSERS_OK = False
+ logger.warning(
+ "parsers module could not be imported; WoS TXT, PubMed TXT and "
+ "Cochrane file sources will be unavailable until the environment "
+ "is configured correctly."
+ )
+ parse_wos_data = parse_pubmed_data = parse_cochrane_data = None # type: ignore[assignment]
+
+# Pre-compiled patterns for source-specific field extraction
+_CITED_BY_RE = re.compile(r"Cited\s+by:\s*(\d+)", re.IGNORECASE)
+_EID_RE = re.compile(r"eid=([\w.\-]+)", re.IGNORECASE)
+
+
+# ---------------------------------------------------------------------------
+# Phase 1 (file) — load raw DataFrame from a local file
+# ---------------------------------------------------------------------------
+
+def _detect_file_source(fp: Path, ext: str) -> Source:
+ """
+ Auto-detect the bibliographic source from file extension and content.
+
+ Args:
+ fp: Path to the file.
+ ext: Lowercase file extension (e.g. ".csv").
+
+ Returns:
+ Source literal for the detected format.
+
+ Raises:
+ ValueError: If the source cannot be determined.
+ """
+ if ext in (".xlsx", ".xls"):
+ return "DIMENSIONS"
+
+ if ext == ".bib":
+ text = fp.read_text(encoding="utf-8", errors="replace")[:3000]
+ if re.search(r'\{\s*WOS:', text):
+ return "WOS_BIB"
+ if "abbrev_source_title" in text.lower():
+ return "SCOPUS_BIB"
+ # Heuristic: entry keys that look like "AuthorYear" → Scopus
+ return "SCOPUS_BIB"
+
+ if ext in (".txt", ".ciw"):
+ with open(fp, encoding="utf-8", errors="replace") as fh:
+ head = "".join(fh.readline() for _ in range(6))
+
+ if re.search(r'^PMID-\s|^PMID -\s', head, re.MULTILINE):
+ return "PUBMED_FILE"
+ if re.search(r'^Record #\d+', head, re.MULTILINE):
+ return "COCHRANE"
+ if re.search(r'^(FN|VR|PT)\s', head, re.MULTILINE) or ext == ".ciw":
+ return "WOS_TXT"
+ # Additional content check for PubMed files that don't start with PMID
+ with open(fp, encoding="utf-8", errors="replace") as fh:
+ body = fh.read(800)
+ if "PMID-" in body or "PMID -" in body:
+ return "PUBMED_FILE"
+ if "Record #" in body:
+ return "COCHRANE"
+ return "WOS_TXT"
+
+ if ext == ".csv":
+ try:
+ hdr = pd.read_csv(fp, nrows=0)
+ cols: set[str] = set(hdr.columns)
+ except Exception:
+ cols = set()
+
+ if "EID" in cols:
+ return "SCOPUS_CSV"
+ if "Lens ID" in cols:
+ return "LENS"
+ if "Publication ID" in cols and "PubYear" in cols:
+ return "DIMENSIONS"
+
+ # Try Dimensions with skiprows=1 (row 0 is a title/export header)
+ try:
+ hdr2 = pd.read_csv(fp, skiprows=1, nrows=0)
+ cols2: set[str] = set(hdr2.columns)
+ if "Publication ID" in cols2 and "PubYear" in cols2:
+ return "DIMENSIONS"
+ except Exception:
+ pass
+
+ raise ValueError(
+ f"Cannot detect CSV source from headers: {sorted(cols)}. "
+ "Pass source= explicitly to load_file()."
+ )
+
+ raise ValueError(
+ f"Unsupported file extension: {ext!r}. "
+ "Supported: .csv, .bib, .txt, .ciw, .xlsx, .xls"
+ )
+
+
+def _load_bib(fp: Path) -> pd.DataFrame:
+ """
+ Parse a BibTeX file with bibtexparser v1.x and return a raw DataFrame.
+
+ Args:
+ fp: Path to the .bib file.
+
+ Returns:
+ DataFrame where each row is one BibTeX entry; field names are lowercase.
+
+ Raises:
+ ImportError: If bibtexparser is not installed.
+ ValueError: If the file contains no entries.
+ """
+ try:
+ import bibtexparser # noqa: PLC0415
+ from bibtexparser.bparser import BibTexParser # noqa: PLC0415
+ from bibtexparser.customization import convert_to_unicode # noqa: PLC0415
+ except ImportError as exc:
+ raise ImportError(
+ "bibtexparser is required for BibTeX file support. "
+ "Install it with: pip install bibtexparser==1.4.1"
+ ) from exc
+
+ with open(fp, encoding="utf-8", errors="replace") as fh:
+ parser = BibTexParser()
+ parser.customization = convert_to_unicode
+ db = bibtexparser.load(fh, parser=parser)
+
+ if not db.entries:
+ raise ValueError(f"No BibTeX entries found in {fp}")
+
+ return pd.DataFrame(db.entries)
+
+
+def _normalize_wos_txt(records: list[dict]) -> pd.DataFrame:
+ """
+ Convert parse_wos_data() output to a flat DataFrame.
+
+ parse_wos_data() returns dicts where each value is a list. Multi-element
+ lists (AU, CR, etc.) are joined with ";" so that _split_to_list() in
+ enforce_types can reconstruct them. Single-element lists (TI, PY, etc.)
+ are unwrapped to strings.
+
+ Args:
+ records: List of record dicts from parse_wos_data().
+
+ Returns:
+ Flat DataFrame ready for rename_columns() and enforce_types().
+ """
+ flat: list[dict] = []
+ for rec in records:
+ row: dict = {}
+ for key, value in rec.items():
+ if isinstance(value, list):
+ row[key] = ";".join(str(v) for v in value if str(v).strip())
+ elif value is None:
+ row[key] = ""
+ else:
+ row[key] = str(value)
+ flat.append(row)
+ return pd.DataFrame(flat)
+
+
+def load_file(
+ filepath: "str | Path",
+ source: "Source | None" = None,
+) -> "tuple[pd.DataFrame, Source]":
+ """
+ Load a bibliographic export file into a raw DataFrame.
+
+ Supported formats:
+ Scopus CSV, Scopus BibTeX, WoS TXT/CIW, WoS BibTeX,
+ Dimensions CSV/XLSX, Lens.org CSV, Cochrane CDSR TXT,
+ PubMed MEDLINE TXT.
+
+ The returned DataFrame uses source-native column names; downstream
+ rename_columns() translates them to WoS Field Tags using the
+ appropriate mapping dictionary.
+
+ Args:
+ filepath: Path (or str) to the file to load.
+ source: Optional explicit source override. When None, the source is
+ auto-detected from the file extension and content fingerprint.
+
+ Returns:
+ Tuple of (raw_df, source_label) where source_label is a Source literal
+ that should be passed directly to run_pipeline().
+
+ Raises:
+ FileNotFoundError: If filepath does not exist.
+ ValueError: If source cannot be determined or format is unsupported.
+ ImportError: If a required optional library (bibtexparser) is absent.
+ """
+ fp = Path(filepath)
+ if not fp.exists():
+ raise FileNotFoundError(f"File not found: {fp}")
+
+ ext = fp.suffix.lower()
+
+ if source is None:
+ source = _detect_file_source(fp, ext)
+
+ if source == "SCOPUS_CSV":
+ df = pd.read_csv(fp, encoding="utf-8", on_bad_lines="skip", low_memory=False)
+
+ elif source == "SCOPUS_BIB":
+ df = _load_bib(fp)
+
+ elif source == "WOS_TXT":
+ if not _PARSERS_OK:
+ raise ImportError("parsers module unavailable; cannot load WoS TXT files")
+ records = parse_wos_data(str(fp))
+ df = _normalize_wos_txt(records)
+
+ elif source == "WOS_BIB":
+ df = _load_bib(fp)
+
+ elif source == "DIMENSIONS":
+ if ext in (".xlsx", ".xls"):
+ df = pd.read_excel(fp, skiprows=1, engine="openpyxl")
+ else:
+ # Dimensions CSV has a title row as row 0; actual header is row 1
+ try:
+ df = pd.read_csv(fp, skiprows=1, encoding="utf-8",
+ on_bad_lines="skip", low_memory=False)
+ if "Publication ID" not in df.columns:
+ # Fallback: header was already row 0
+ df = pd.read_csv(fp, encoding="utf-8",
+ on_bad_lines="skip", low_memory=False)
+ except Exception:
+ df = pd.read_csv(fp, encoding="utf-8",
+ on_bad_lines="skip", low_memory=False)
+
+ elif source == "LENS":
+ df = pd.read_csv(fp, encoding="utf-8", on_bad_lines="skip", low_memory=False)
+
+ elif source == "COCHRANE":
+ if not _PARSERS_OK:
+ raise ImportError("parsers module unavailable; cannot load Cochrane TXT files")
+ records = parse_cochrane_data(str(fp))
+ df = pd.DataFrame(records)
+
+ elif source == "PUBMED_FILE":
+ if not _PARSERS_OK:
+ raise ImportError("parsers module unavailable; cannot load PubMed TXT files")
+ records = parse_pubmed_data(str(fp))
+ df = pd.DataFrame(records)
+
+ else:
+ raise ValueError(f"Unsupported source: {source!r}")
+
+ if df.empty:
+ logger.warning("load_file: zero records loaded from %s (source=%s)", fp.name, source)
+ else:
+ logger.info("load_file: %d records from %s (source=%s)", len(df), fp.name, source)
+
+ return df, source
+
+
+# ---------------------------------------------------------------------------
+# Step 2a — detect source
+# ---------------------------------------------------------------------------
+
+def detect_source(df: pd.DataFrame) -> Source:
+ """
+ Identify the data source from the DB column or column name fingerprint.
+
+ Checks the DB column first (set by load_file() or the API retriever);
+ falls back to column signature matching for API DataFrames that have
+ not yet been processed.
+
+ Args:
+ df: Raw or pre-processed DataFrame.
+
+ Returns:
+ Source literal string.
+
+ Raises:
+ ValueError: If the source cannot be determined.
+ """
+ if "DB" in df.columns and len(df) > 0:
+ db_val = str(df["DB"].iloc[0]).upper()
+ if db_val in _DB_TO_SOURCE:
+ return _DB_TO_SOURCE[db_val]
+
+ cols = set(df.columns)
+
+ if _OPENALEX_SIGNATURE & cols:
+ return "OPENALEX"
+ if {"LID", "FAU", "PMID"} <= cols:
+ return "PUBMED_FILE"
+ if {"AID", "FAU", "PMID"} <= cols:
+ return "PUBMED"
+ if _PUBMED_SIGNATURE & cols:
+ return "PUBMED"
+ if _SCOPUS_CSV_SIG & cols:
+ return "SCOPUS_CSV"
+ if _DIMENSIONS_SIG & cols:
+ return "DIMENSIONS"
+ if _LENS_SIG & cols:
+ return "LENS"
+ if _COCHRANE_SIG & cols:
+ return "COCHRANE"
+
+ raise ValueError(
+ f"Cannot detect source. Columns present: {sorted(cols)}. "
+ "Call run_pipeline(df, source='PUBMED') or similar to specify explicitly."
+ )
+
+
+# ---------------------------------------------------------------------------
+# Step 2a — rename columns
+# ---------------------------------------------------------------------------
+
+def rename_columns(df: pd.DataFrame, source: Source) -> pd.DataFrame:
+ """
+ Rename source-native columns to WoS Field Tags using the mapping
+ dictionary for the given source.
+
+ Columns not in the mapping are kept as-is. Pre-existing columns whose
+ name matches a rename target (e.g. PubMed raw "SO" vs "JT"→"SO") are
+ dropped before renaming to prevent duplicate columns.
+
+ Args:
+ df: Raw DataFrame with source-native column names.
+ source: Source literal determining which mapping dict to use.
+
+ Returns:
+ DataFrame with columns renamed to WoS Field Tags.
+
+ Raises:
+ KeyError: If source is not in the mapping registry.
+ """
+ mapping = _MAPPING_REGISTRY[source]
+ effective_map = {k: v for k, v in mapping.items() if k in df.columns}
+
+ # Drop raw columns whose name already equals a rename target.
+ # This prevents duplicate columns when e.g. PubMed raw "SO" (source citation
+ # field) would collide with the renamed "JT"→"SO".
+ target_names = set(effective_map.values())
+ cols_to_drop = [
+ c for c in df.columns
+ if c in target_names and c not in effective_map
+ ]
+ if cols_to_drop:
+ logger.debug("rename_columns (%s): dropping shadowed cols %s", source, cols_to_drop)
+ df = df.drop(columns=cols_to_drop)
+
+ renamed = df.rename(columns=effective_map)
+
+ # Safety net: de-duplicate any remaining double columns (keep first).
+ if renamed.columns.duplicated().any():
+ renamed = renamed.loc[:, ~renamed.columns.duplicated(keep="first")]
+
+ logger.debug("rename_columns (%s): applied %d renames", source, len(effective_map))
+ return renamed
+
+
+# ---------------------------------------------------------------------------
+# Step 2b — type-enforcement helpers
+# ---------------------------------------------------------------------------
+
+def _split_to_list(value: object, sep: str = ";") -> list[str]:
+ """Split a delimited string into list[str]; return [] for nulls."""
+ if isinstance(value, list):
+ return [str(x).strip() for x in value if str(x).strip()]
+ if value is None or (isinstance(value, float) and pd.isna(value)):
+ return []
+ s = str(value).strip()
+ if not s or s.lower() == "nan":
+ return []
+ return [x.strip() for x in s.split(sep) if x.strip()]
+
+
+def _split_bib_authors(value: object) -> list[str]:
+ """
+ Split a BibTeX author string into a list of individual author names.
+
+ BibTeX format: "Surname, Name and Surname2, Name2 and Surname3, Name3".
+ Falls back to semicolon splitting for non-BibTeX formats.
+ """
+ if isinstance(value, list):
+ return [str(x).strip() for x in value if str(x).strip()]
+ if value is None or (isinstance(value, float) and pd.isna(value)):
+ return []
+ s = str(value).strip()
+ if not s or s.lower() == "nan":
+ return []
+ if " and " in s:
+ return [x.strip() for x in s.split(" and ") if x.strip()]
+ return [x.strip() for x in s.split(";") if x.strip()]
+
+
+def _extract_year(value: object) -> str:
+ """Extract a 4-digit year from a date string; return '' if none found."""
+ if value is None or (isinstance(value, float) and pd.isna(value)):
+ return ""
+ s = str(value).strip()
+ if not s or s.lower() == "nan":
+ return ""
+ m = re.search(r"\b(\d{4})\b", s)
+ return m.group(1) if m else ""
+
+
+def _clean_doi(value: object) -> str:
+ """
+ Extract a clean DOI from various raw formats.
+
+ Handles PubMed AID/LID suffix format ("10.1234/abc [doi]"),
+ bare DOIs, and OpenAlex doi strings.
+ """
+ if value is None or (isinstance(value, float) and pd.isna(value)):
+ return ""
+ raw = str(value).strip()
+ if not raw or raw.lower() == "nan":
+ return ""
+ # PubMed AID/LID: pick the entry tagged [doi]
+ m = re.search(r"(10\.\S+?)\s*\[doi\]", raw)
+ if m:
+ return m.group(1).strip()
+ # Bare DOI starting with the registrant prefix
+ if raw.startswith("10."):
+ return raw.split(";")[0].strip()
+ return ""
+
+
+def _extract_ep_from_pages(bp_value: object) -> "tuple[str, str]":
+ """
+ Split a page range into (begin_page, end_page).
+
+ Handles "100-110", "100 - 110" (Scopus BibTeX), and "e12345" formats.
+
+ Args:
+ bp_value: Raw page string.
+
+ Returns:
+ Tuple (BP, EP); EP is '' if no range separator is present.
+ """
+ raw = str(bp_value).strip() if not (isinstance(bp_value, float) and pd.isna(bp_value)) else ""
+ m = re.match(r'^(\S+)\s*-\s*(\S+)$', raw)
+ if m:
+ return m.group(1).strip(), m.group(2).strip()
+ return raw, ""
+
+
+def _unwrap_list_scalar(value: object) -> object:
+ """Unwrap single-element lists (produced by parse_wos_data) to scalars."""
+ if isinstance(value, list):
+ return value[0] if len(value) == 1 else (";".join(str(v) for v in value) if value else "")
+ return value
+
+
+def _extract_dim_affiliations(value: object) -> list[str]:
+ """
+ Extract institution strings from Dimensions 'Authors (Raw Affiliation)' format.
+
+ Format: "Surname, Name (Institution, City, Country); Surname2, Name2 (...)".
+ Returns a list of the institution strings inside the parentheses.
+ """
+ if isinstance(value, list):
+ return [str(x).strip() for x in value if str(x).strip()]
+ if value is None or (isinstance(value, float) and pd.isna(value)):
+ return []
+ raw = str(value).strip()
+ if not raw or raw.lower() == "nan":
+ return []
+ # Extract content inside parentheses as affiliation strings
+ found = re.findall(r'\(([^)]+)\)', raw)
+ if found:
+ return [a.strip() for a in found if a.strip()]
+ # Fallback: split on ";"
+ return [x.strip() for x in raw.split(";") if x.strip()]
+
+
+# ---------------------------------------------------------------------------
+# Step 2b — enforce type contracts
+# ---------------------------------------------------------------------------
+
+def enforce_types(df: pd.DataFrame, source: "Source | None" = None) -> pd.DataFrame:
+ """
+ Apply all WoS schema type contracts to the renamed DataFrame.
+
+ Contracts applied:
+ - Source-specific pre-processing (BibTeX author split, Scopus TC/UT,
+ Dimensions affiliation extraction).
+ - LIST_FIELDS → list[str] (split on ";").
+ - SCALAR_FIELDS → str ("" for missing/null).
+ - PY → 4-digit year string.
+ - TC → int (0 if unparseable).
+ - DI → clean DOI string.
+ - BP / EP → derived from page range when EP is absent.
+
+ Args:
+ df: DataFrame after rename_columns().
+ source: Source literal; used for source-specific pre-processing.
+
+ Returns:
+ DataFrame with enforced types. Input is not modified.
+ """
+ df = df.copy()
+
+ # ---- Source-specific pre-processing ----
+
+ # BibTeX sources: split "Author A and Author B" strings for AU/AF
+ if source in ("SCOPUS_BIB", "WOS_BIB"):
+ if "AU" in df.columns:
+ df["AU"] = df["AU"].apply(_split_bib_authors)
+ if "AF" not in df.columns:
+ # BibTeX has only one author field; use AU for both AU and AF
+ df["AF"] = df["AU"].copy() if "AU" in df.columns else [[] for _ in range(len(df))]
+
+ # Scopus BibTeX: TC comes from "note" field ("Cited by: N; ...")
+ if source == "SCOPUS_BIB" and "TC" in df.columns:
+ def _extract_bib_tc(v: object) -> str:
+ m = _CITED_BY_RE.search(str(v)) if v and not (isinstance(v, float) and pd.isna(v)) else None
+ return m.group(1) if m else "0"
+ df["TC"] = df["TC"].apply(_extract_bib_tc)
+
+ # Scopus BibTeX: UT comes from Scopus URL ("...?eid=2-s2.0-...")
+ if source == "SCOPUS_BIB" and "UT" in df.columns:
+ def _extract_eid(v: object) -> str:
+ if v is None or (isinstance(v, float) and pd.isna(v)):
+ return ""
+ m = _EID_RE.search(str(v))
+ return m.group(1) if m else str(v).strip()
+ df["UT"] = df["UT"].apply(_extract_eid)
+
+ # Dimensions: C1 contains "Author (Affiliation)" format
+ if source == "DIMENSIONS" and "C1" in df.columns:
+ df["C1"] = df["C1"].apply(_extract_dim_affiliations)
+
+ # ---- LIST_FIELDS — split to list[str] ----
+
+ for col in LIST_FIELDS:
+ if col in df.columns:
+ # BibTeX AU/AF already handled above — respect existing lists
+ if source in ("SCOPUS_BIB", "WOS_BIB") and col in ("AU", "AF"):
+ df[col] = df[col].apply(
+ lambda v: v if isinstance(v, list) else _split_to_list(v)
+ )
+ elif source == "DIMENSIONS" and col == "C1":
+ df[col] = df[col].apply(
+ lambda v: v if isinstance(v, list) else _extract_dim_affiliations(v)
+ )
+ else:
+ df[col] = df[col].apply(_split_to_list)
+ else:
+ df[col] = [[] for _ in range(len(df))]
+
+ # ---- SCALAR_FIELDS — convert to str ----
+
+ for col in SCALAR_FIELDS:
+ if col in df.columns:
+ df[col] = df[col].apply(_unwrap_list_scalar)
+ df[col] = df[col].fillna("").astype(str).str.strip().replace("nan", "").replace("None", "")
+ else:
+ df[col] = ""
+
+ # ---- PY — 4-digit year ----
+
+ if "PY" in df.columns:
+ df["PY"] = df["PY"].apply(_unwrap_list_scalar).apply(_extract_year)
+ else:
+ df["PY"] = ""
+
+ # ---- TC — integer citation count ----
+
+ if "TC" in df.columns:
+ df["TC"] = pd.to_numeric(df["TC"], errors="coerce").fillna(0).astype(int)
+ else:
+ df["TC"] = 0
+
+ # ---- DI — clean DOI ----
+
+ if "DI" in df.columns:
+ df["DI"] = df["DI"].apply(_unwrap_list_scalar).apply(_clean_doi)
+
+ # ---- BP / EP — page range splitting ----
+
+ if "BP" in df.columns:
+ df["BP"] = df["BP"].apply(_unwrap_list_scalar)
+ has_ep = "EP" in df.columns
+ pages_split = df["BP"].apply(_extract_ep_from_pages)
+ df["BP"] = pages_split.apply(lambda t: t[0])
+ if not has_ep:
+ df["EP"] = pages_split.apply(lambda t: t[1])
+ else:
+ df["EP"] = df["EP"].apply(_unwrap_list_scalar)
+ derived_ep = pages_split.apply(lambda t: t[1])
+ df["EP"] = df["EP"].fillna("").astype(str).str.strip().replace("nan", "")
+ mask = df["EP"] == ""
+ df.loc[mask, "EP"] = derived_ep[mask]
+ else:
+ df["BP"] = ""
+ if "EP" not in df.columns:
+ df["EP"] = ""
+
+ logger.debug("enforce_types complete: shape=%s", df.shape)
+ return df
+
+
+# ---------------------------------------------------------------------------
+# Step 2c — null handling
+# ---------------------------------------------------------------------------
+
+def handle_nulls(df: pd.DataFrame) -> pd.DataFrame:
+ """
+ Replace all remaining NaN / None values per field-type rules.
+
+ Rules:
+ - LIST_FIELDS → []
+ - TC → 0
+ - All other columns → ''
+
+ Args:
+ df: DataFrame after enforce_types().
+
+ Returns:
+ DataFrame with zero NaN / None values. Input is not modified.
+ """
+ df = df.copy()
+
+ for col in df.columns:
+ if col in LIST_FIELDS:
+ df[col] = df[col].apply(lambda v: v if isinstance(v, list) else [])
+ elif col == "TC":
+ df[col] = df[col].fillna(0).astype(int)
+ else:
+ df[col] = (
+ df[col]
+ .fillna("")
+ .astype(str)
+ .replace("nan", "")
+ .replace("None", "")
+ )
+
+ logger.debug("handle_nulls complete: NaN count=%d", df.isnull().sum().sum())
+ return df
+
+
+# ---------------------------------------------------------------------------
+# Step 2d — calculated fields
+# ---------------------------------------------------------------------------
+
+def _compute_sr_fallback(df: pd.DataFrame) -> pd.DataFrame:
+ """
+ Compute SR when metatagextraction.SR(M) cannot be imported.
+
+ Mirrors the SR(M) logic from www/services/metatagextraction.py so that
+ both the Shiny and Streamlit environments produce identical SR values.
+ Called only when the primary import fails.
+
+ Args:
+ df: DataFrame with AU, JI, SO, PY, DB columns already set.
+
+ Returns:
+ DataFrame with SR and SR_FULL columns added in-place.
+ """
+ listAU = df["AU"].apply(lambda l: [str(x).strip() for x in l] if isinstance(l, list) else [])
+
+ if df["DB"].iloc[0].lower() == "scopus":
+ listAU = listAU.apply(
+ lambda l: [x.replace(" ", ",").replace(",,", ",").replace(" ", "") for x in l]
+ )
+
+ first_authors = listAU.apply(lambda l: l[0] if l else "NA")
+ first_authors = first_authors.str.replace(",", " ", regex=False)
+
+ no_art = df["JI"] == ""
+ df.loc[no_art, "JI"] = df.loc[no_art, "SO"]
+ j9 = df["JI"].str.replace(".", " ", regex=False).str.strip()
+
+ sr = first_authors + ", " + df["PY"].astype(str) + ", " + j9
+ df["SR_FULL"] = sr.str.replace(r"\s+", " ", regex=True)
+
+ # Disambiguate duplicate SR values by appending -a, -b, ...
+ st_flag = i = 0
+ while st_flag == 0:
+ ind = sr.duplicated()
+ if ind.any():
+ i += 1
+ sr[ind] = sr[ind] + "-" + chr(96 + i)
+ else:
+ st_flag = 1
+ df["SR"] = sr.str.replace(r"\s+", " ", regex=True)
+ return df
+
+
+def add_calculated_fields(df: pd.DataFrame, source: Source) -> pd.DataFrame:
+ """
+ Set the DB column and compute the SR (Short Reference) field.
+
+ Preferred path: calls SR(M) from www/services/metatagextraction.py.
+ Falls back to _compute_sr_fallback() if that module cannot be loaded
+ (e.g. Shiny-specific deps are absent in the Streamlit environment).
+
+ Args:
+ df: DataFrame after handle_nulls().
+ source: Source literal; mapped to the DB column value via SOURCE_TO_DB.
+
+ Returns:
+ DataFrame with DB and SR columns populated.
+ """
+ df = df.copy()
+ df["DB"] = SOURCE_TO_DB.get(source, source)
+
+ # Ensure JI has a fallback value before SR computation
+ if "JI" not in df.columns or (df["JI"].astype(str).str.strip() == "").all():
+ df["JI"] = df.get("SO", pd.Series("", index=df.index))
+
+ try:
+ from .metatagextraction import SR as compute_sr # noqa: PLC0415
+ df = compute_sr(df)
+ except ImportError:
+ logger.info("metatagextraction unavailable (Shiny deps absent) — using SR fallback")
+ df = _compute_sr_fallback(df)
+ except Exception as exc:
+ logger.warning("SR computation failed (%s) — using SR fallback", exc)
+ df = _compute_sr_fallback(df)
+
+ logger.debug("add_calculated_fields: DB=%s", df["DB"].iloc[0])
+ return df
+
+
+# ---------------------------------------------------------------------------
+# Phase 4 — LOAD helper
+# ---------------------------------------------------------------------------
+
+def export_to_csv(
+ df: pd.DataFrame,
+ source: Source,
+ output_dir: str = "data/outputs",
+) -> Path:
+ """
+ Serialize the standardized DataFrame to CSV.
+
+ Multi-value list fields are serialized with ";" as delimiter, matching
+ the format expected by all analytical functions in www/services/.
+
+ Args:
+ df: Fully standardized and validated DataFrame.
+ source: Source label; used to build the output filename.
+ output_dir: Directory where the CSV will be written.
+
+ Returns:
+ Path to the written CSV file.
+ """
+ out = Path(output_dir)
+ out.mkdir(parents=True, exist_ok=True)
+
+ export_df = df.copy()
+ for col in LIST_FIELDS:
+ if col in export_df.columns:
+ export_df[col] = export_df[col].apply(
+ lambda v: ";".join(v) if isinstance(v, list) else str(v)
+ )
+
+ filename = out / f"{source.lower()}_standardized.csv"
+ export_df.to_csv(filename, index=False, encoding="utf-8")
+ logger.info("export_to_csv: %d records → %s", len(export_df), filename)
+ return filename
+
+
+# ---------------------------------------------------------------------------
+# Orchestrator
+# ---------------------------------------------------------------------------
+
+def run_pipeline(df: pd.DataFrame, source: "Source | None" = None) -> pd.DataFrame:
+ """
+ Orchestrate the full ETL transform pipeline (Phase 2).
+
+ Steps executed in order:
+ 1. detect_source — identify source (skipped if source is provided)
+ 2. rename_columns — apply mapping dict
+ 3. enforce_types — apply all type contracts
+ 4. handle_nulls — eliminate NaN / None
+ 5. add_calculated_fields — set DB, compute SR
+
+ Args:
+ df: Raw DataFrame from a fetch_*() function or load_file().
+ source: Optional source override. If None, detect_source() is called.
+
+ Returns:
+ Fully standardized DataFrame ready for validate() and export_to_csv().
+ """
+ if source is None:
+ source = detect_source(df)
+ logger.info("run_pipeline: source=%s, input shape=%s", source, df.shape)
+
+ df = rename_columns(df, source)
+ df = enforce_types(df, source)
+ df = handle_nulls(df)
+ df = add_calculated_fields(df, source)
+
+ # Ensure all mandatory columns are present
+ for col in MANDATORY_COLUMNS:
+ if col not in df.columns:
+ df[col] = [] if col in LIST_FIELDS else "" # type: ignore[assignment]
+
+ logger.info("run_pipeline complete: output shape=%s", df.shape)
+ return df
diff --git a/www/services/validator.py b/www/services/validator.py
new file mode 100644
index 000000000..13f1b2d63
--- /dev/null
+++ b/www/services/validator.py
@@ -0,0 +1,157 @@
+"""
+Phase 3 — Validation.
+
+validate(df) performs three checks and raises ValidationError on the
+first failure, naming the offending column. It also returns a structured
+report dict used by the Streamlit dashboard Validation Report section.
+"""
+
+import pandas as pd
+
+from .mapping_dicts import LIST_FIELDS, MANDATORY_COLUMNS
+
+
+class ValidationError(Exception):
+ """Raised when the standardized DataFrame fails a schema check."""
+
+
+def _check_mandatory_columns(df: pd.DataFrame) -> list[str]:
+ """
+ Return a list of mandatory columns that are missing from df.
+
+ Args:
+ df: Standardized DataFrame.
+
+ Returns:
+ List of missing column names (empty if all present).
+ """
+ return [col for col in MANDATORY_COLUMNS if col not in df.columns]
+
+
+def _check_no_nulls(df: pd.DataFrame) -> list[str]:
+ """
+ Return a list of columns that contain NaN or None values.
+
+ List-typed columns are checked for None entries within the lists as
+ well as for the cell itself being null.
+
+ Args:
+ df: Standardized DataFrame (only mandatory columns are checked).
+
+ Returns:
+ List of column names with null values (empty if clean).
+ """
+ problem_cols: list[str] = []
+ for col in MANDATORY_COLUMNS:
+ if col not in df.columns:
+ continue
+ if col in LIST_FIELDS:
+ # Each cell must be a list (not None/NaN)
+ has_null_cell = df[col].apply(lambda v: not isinstance(v, list)).any()
+ if has_null_cell:
+ problem_cols.append(col)
+ else:
+ if df[col].isnull().any():
+ problem_cols.append(col)
+ return problem_cols
+
+
+def _check_list_fields(df: pd.DataFrame) -> list[str]:
+ """
+ Return a list of LIST_FIELDS columns whose cells are not list[str].
+
+ Args:
+ df: Standardized DataFrame.
+
+ Returns:
+ List of column names with type violations (empty if all correct).
+ """
+ problem_cols: list[str] = []
+ for col in LIST_FIELDS:
+ if col not in df.columns:
+ continue
+ def _is_list_of_str(v: object) -> bool:
+ return isinstance(v, list) and all(isinstance(x, str) for x in v)
+
+ if not df[col].apply(_is_list_of_str).all():
+ problem_cols.append(col)
+ return problem_cols
+
+
+def validate(df: pd.DataFrame) -> dict:
+ """
+ Validate a standardized DataFrame against the WoS schema.
+
+ Three checks are performed in order:
+ 1. All mandatory columns are present.
+ 2. Zero NaN / None values remain in mandatory columns.
+ 3. All LIST_FIELDS columns contain list[str] values.
+
+ The function raises ValidationError on the first check that fails,
+ naming the offending column(s) in the error message.
+
+ Args:
+ df: Standardized DataFrame produced by run_pipeline().
+
+ Returns:
+ A structured report dict with the following keys:
+ - passed (bool): True if all checks passed.
+ - checks (list[dict]): One entry per check with:
+ - name (str): Human-readable check name.
+ - passed (bool): Whether this check passed.
+ - problem_columns (list[str]): Empty if passed.
+
+ Raises:
+ ValidationError: If any check fails, with the failing column name(s).
+ """
+ report = {
+ "passed": True,
+ "checks": [],
+ }
+
+ # Check 1 — mandatory columns
+ missing = _check_mandatory_columns(df)
+ check1 = {
+ "name": "All mandatory columns present",
+ "passed": len(missing) == 0,
+ "problem_columns": missing,
+ }
+ report["checks"].append(check1)
+ if not check1["passed"]:
+ report["passed"] = False
+ raise ValidationError(
+ f"Missing mandatory columns: {missing}. "
+ "Ensure run_pipeline() completed without errors."
+ )
+
+ # Check 2 — no nulls
+ null_cols = _check_no_nulls(df)
+ check2 = {
+ "name": "Zero NaN / None values in mandatory columns",
+ "passed": len(null_cols) == 0,
+ "problem_columns": null_cols,
+ }
+ report["checks"].append(check2)
+ if not check2["passed"]:
+ report["passed"] = False
+ raise ValidationError(
+ f"NaN / None values found in column(s): {null_cols}. "
+ "Check handle_nulls() in standardizer.py."
+ )
+
+ # Check 3 — list[str] type contract
+ bad_list_cols = _check_list_fields(df)
+ check3 = {
+ "name": "Multi-value columns are list[str]",
+ "passed": len(bad_list_cols) == 0,
+ "problem_columns": bad_list_cols,
+ }
+ report["checks"].append(check3)
+ if not check3["passed"]:
+ report["passed"] = False
+ raise ValidationError(
+ f"Columns not of type list[str]: {bad_list_cols}. "
+ "Check enforce_types() in standardizer.py."
+ )
+
+ return report