Full Text
<h2>Introduction</h2><p>Nanoparticles (NPs) are central to a broad range of biomedical technologies including drug delivery, imaging, biosensing, and antimicrobial therapies. The functional performance of a nanoparticle is governed by a combination of intrinsic physicochemical properties such as primary particle size, size distribution (polydispersity index, PDI), surface chemistry and zeta potential, as well as yield and colloidal stability (Dong et al., 2016; Chavali & Nikolova, 2019). Achieving a specific target profile for a given biomedical application requires careful control of synthesis variables (precursor concentration, reducing agent ratio, pH, temperature, capping agent, reaction time) and often multiple rounds of empirical optimization (Unsoy et al., 2012; Indira, 2015).</p><p>Traditional design of experiments (DOE) and response surface methodology (RSM) can be effective but scale poorly when the number of controllable factors increases or when multiple, sometimes competing, objectives must be optimized simultaneously (Putra et al., 2025; Shukla & Bandyopadhyay, 2023). AI-driven surrogate modeling and metaheuristic optimization techniques offer a promising alternative: they can learn complex, nonlinear mappings from synthesis parameters to performance metrics and then identify Pareto-optimal parameter sets that satisfy application-specific constraints (Kapoor et al., 2024). Recent case studies have applied machine learning to nanoparticle synthesis for environmental remediation and antibacterial optimization (Putra et al., 2025; Khan et al., 2026), and AI-driven design frameworks for nanoparticle-based drug delivery have been proposed to streamline formulation development (Kapoor et al., 2024).</p><p>The present study develops and validates an integrated AI-driven optimization pipeline that combines surrogate models (Random Forest, Gaussian Process Regression (GPR), and feedforward artificial neural networks (ANN)) with metaheuristic and Bayesian optimization to derive synthesis parameter recommendations tailored to two prototypical biomedical use cases: (1) drug-delivery NPs requiring small size (<100 nm), low PDI, neutral-to-moderate surface charge, and high biocompatibility; and (2) antimicrobial NPs (silver and copper-based) requiring small size (10–50 nm), high absolute zeta potential magnitude, and high bactericidal activity. We assembled a broad experimental dataset covering chemical, green, and enzyme-mediated syntheses and benchmarked AI-derived protocols against RSM and classical DOE baselines. Interpretability tools (SHAP) were used to elucidate mechanistic parameter–response relationships, thereby increasing trust and facilitating experimental adoption.</p><p>This paper is organized as follows: a targeted review of relevant literature is presented next, followed by a detailed description of dataset curation, modeling, and optimization methodology. Results include surrogate-model performance, optimized recipes, and explainability outputs. We conclude with a discussion of limitations, translational considerations, and directions for future work.</p><h2>Literature Review</h2><p>Optimization of nanoparticle synthesis is a mature field with a long history of chemical and green routes producing diverse nanomaterials for biomedical applications (Unsoy et al., 2012; Rauwel, 2017). Classical approaches emphasize control of nucleation and growth by modulating precursor concentration, temperature, pH, and stabilizing agents (Unsoy et al., 2012; J, 2015). Green synthesis using plant extracts or essential oils has grown in popularity because of lower toxicity and sustainability benefits; however, these approaches add complexity due to biological variability in extract composition (Rauwel, 2017).</p><p>Beyond bench chemistry, computational approaches for design and optimization have been applied intermittently to nanomaterials. Response surface methodology and factorial DOE remain standard in many laboratories because they are interpretable and relatively easy to implement (Shukla & Bandyopadhyay, 2023). More recently, machine learning (ML) methods have been used to predict NP properties from synthesis conditions and to accelerate screening of formulation space (Kapoor et al., 2024). Specific examples include ML-driven optimization for wastewater remediation using metal nanoparticles (Putra et al., 2025) and optimization of silver nanoparticle synthesis using leaf extracts via RSM (Khan et al., 2026). These studies demonstrate the potential for AI to reduce experimental burden but often target a single application or a limited parameter space.</p><p>Hybrid frameworks that combine surrogate modeling with metaheuristic or Bayesian optimization are increasingly common in engineering domains where experiments are expensive (Syed, 2025). For nanomaterials, such hybrid strategies can navigate multi-dimensional, multi-objective landscapes more efficiently than grid search or classical DOE. Gaussian Process Regression is frequently used as a surrogate in Bayesian optimization because it provides uncertainty estimates that guide exploration–exploitation trade-offs (Syed, 2025). Random Forests and ANNs are effective when larger datasets are available and when complex nonlinear interactions exist (Shukla & Bandyopadhyay, 2023; Sampath, 2025).</p><p>Explainable AI (XAI) methods such as SHAP and feature importance ranking are critical to translate AI-derived parameter recommendations into experimental practice. These tools can highlight which synthesis levers most strongly influence a target endpoint and can uncover unexpected dependencies that suggest mechanistic hypotheses (Kapoor et al., 2024; Shukla & Bandyopadhyay, 2023). Complementary to optimization, multi-objective Pareto analysis enables researchers to visualize trade-offs between competing goals (e.g., minimizing size while maximizing biocompatibility) and select compromise solutions consistent with practical constraints.</p><p>Finally, there is growing recognition of the importance of integrating AI frameworks with closed-loop experimental systems (autonomous laboratories) to enable active learning and real-time updating of models (Sampath, 2025). While fully autonomous workflows remain rare in nanoparticle synthesis, recent engineering work in adjacent fields demonstrates feasibility and highlights requirements for robust surrogate modeling, uncertainty quantification, and safe exploration (Syed, 2025; Yesane, 2024).</p><p>In sum, the literature supports AI and metaheuristic methods as powerful enablers for optimized nanoparticle synthesis, but systematic comparative studies that evaluate multiple surrogate models, interpretability approaches, and practical optimization strategies for diverse biomedical targets remain limited. This study addresses this gap by evaluating an integrated pipeline across multiple synthesis modalities and application-defined objective sets.</p><h2>Methodology</h2><p>Overview. The methodological workflow comprises dataset assembly and preprocessing, surrogate model training and validation, multi-objective optimization using genetic algorithms (GA) and Bayesian optimization (BO) with Gaussian Process surrogates, and interpretability analysis using SHAP. The pipeline was implemented in Python 3.9 with scikit-learn for classical models, GPyTorch for Gaussian Process Regression, a lightweight ANN implemented in PyTorch, and DEAP for genetic algorithm search. Design and evaluation emphasize reproducibility via fixed random seeds and nested cross-validation.</p><p>Experimental dataset. We collated data from 420 independent synthesis experiments carried out in-house or curated from high-quality open experimental records spanning chemical reduction routes, plant-extract-mediated green syntheses, and enzyme-mediated methods. Experiments were recorded with seven continuous input variables: precursor concentration (mM), reducing agent ratio (molar ratio), pH, temperature (°C), reaction time (min), stirring speed (rpm), and capping agent (% w/v). Categorical inputs (synthesis route type: chemical, green, enzyme) were one-hot encoded. Measured outputs included: hydrodynamic diameter (nm) by DLS, PDI, zeta potential (mV), mass yield (%), in vitro cell viability at 24 h (percentage of control using MTT assay), and antibacterial efficacy (minimum inhibitory concentration, MIC, µg/mL) for silver- and copper-based NPs. Data ranges and summary statistics are reported in the Results section (Table 1).</p><p>Preprocessing. Continuous inputs and outputs were standardized (z-score) for modeling except where physical units were required for interpretability (optimized recipes reported in original units). Outliers were identified using a robust median-absolute-deviation rule and inspected; only 4 experiments (<1%) were removed due to clear recording errors. Missing values were handled by simple imputation using k-nearest neighbors (k = 5) only for non-critical covariates; primary outputs were complete.</p><p>Surrogate models and training. Three primary surrogate classes were evaluated: Random Forest Regression (RF), Gaussian Process Regression (GPR) with Matérn kernel, and feedforward artificial neural network (ANN) with two hidden layers (64 and 32 units, ReLU activations). Hyperparameters were tuned with nested 5-fold cross-validation and Bayesian hyperparameter search for ANN and GPR lengthscale priors. Model selection prioritized predictive R2, RMSE, and calibration of uncertainty (for GPR). Ensemble RF models (1000 trees) were used with feature subsampling to improve generalization. Performance metrics on a held-out test split (20% stratified by synthesis route) are summarized in Results (Table 2).</p><p>Optimization targets and constraints. Two target application profiles were defined a priori in consultation with domain experts: (A) Drug-delivery profile: target hydrodynamic diameter < 100 nm, PDI < 0.2, cell viability > 85% at 24 h, yield > 50%; (B) Antibacterial profile (Ag/Cu NPs): target diameter 10–50 nm, MIC < 50 µg/mL, zeta potential magnitude > 30 mV, yield > 40%. The optimization problem is multi-objective with soft constraints; objective scalarization and Pareto front generation were both used.</p><p>Optimization algorithms. Two complementary optimization strategies were applied: (1) Bayesian optimization (BO) using GPR surrogates with expected hypervolume improvement acquisition function for multi-objective search; and (2) Genetic Algorithm (GA) for global search using surrogate evaluations. For BO, uncertainty estimates from GPR guided exploration; for GA, population size = 200, tournament selection, crossover probability = 0.9, mutation probability = 0.2, and 200 generations. For comparison, classical RSM-derived optima from factorial DOE (second-order polynomial fits) were computed on a subset of the parameter space and used as baseline recipes.</p><p>Explainability and sensitivity. SHAP (SHapley Additive exPlanations) values were computed for RF and ANN models to quantify feature contributions to predictions. Additional sensitivity analysis was carried out by perturbing individual synthesis parameters around optimized points and measuring predicted response changes. Pareto fronts were visualized to display trade-offs between size, biocompatibility, and antibacterial effectiveness.</p><p>Validation. A subset of optimized recipes (n = 12, six per target profile) recommended by BO and GA were validated experimentally to confirm predicted property improvements. Validation metrics included DLS size/PDI, zeta potential, yield, in vitro cell viability (MTT), and MIC assays against Escherichia coli and Staphylococcus aureus. Experimental validation results are presented alongside model-based predictions to assess transferability from in silico optimization to bench outcomes.</p><p>Ethical considerations. Standard biosafety protocols were followed for antimicrobial assays and cytotoxicity testing. No human or animal subjects were involved.</p><h2>Results</h2><p>Dataset descriptive statistics. Table 1 summarizes the experimental dataset (n = 420) across primary outputs and illustrates the diversity of measured outcomes. The dataset contains balanced representation across synthesis routes (chemical n = 160, green n = 140, enzyme-mediated n = 120) and covers wide ranges of precursor concentrations and pH values.</p><table style="min-width: 150px;"><colgroup><col style="min-width: 25px;"><col style="min-width: 25px;"><col style="min-width: 25px;"><col style="min-width: 25px;"><col style="min-width: 25px;"><col style="min-width: 25px;"></colgroup><tbody><tr><th colspan="1" rowspan="1"><p>Variable</p></th><th colspan="1" rowspan="1"><p>n</p></th><th colspan="1" rowspan="1"><p>Mean</p></th><th colspan="1" rowspan="1"><p>SD</p></th><th colspan="1" rowspan="1"><p>Min</p></th><th colspan="1" rowspan="1"><p>Max</p></th></tr><tr><td colspan="1" rowspan="1"><p>Hydrodynamic diameter (nm)</p></td><td colspan="1" rowspan="1"><p>420</p></td><td colspan="1" rowspan="1"><p>112.4</p></td><td colspan="1" rowspan="1"><p>58.7</p></td><td colspan="1" rowspan="1"><p>8.6</p></td><td colspan="1" rowspan="1"><p>420.3</p></td></tr><tr><td colspan="1" rowspan="1"><p>PDI</p></td><td colspan="1" rowspan="1"><p>420</p></td><td colspan="1" rowspan="1"><p>0.21</p></td><td colspan="1" rowspan="1"><p>0.09</p></td><td colspan="1" rowspan="1"><p>0.05</p></td><td colspan="1" rowspan="1"><p>0.62</p></td></tr><tr><td colspan="1" rowspan="1"><p>Zeta potential (mV)</p></td><td colspan="1" rowspan="1"><p>420</p></td><td colspan="1" rowspan="1"><p>-18.3</p></td><td colspan="1" rowspan="1"><p>15.4</p></td><td colspan="1" rowspan="1"><p>-67.2</p></td><td colspan="1" rowspan="1"><p>34.5</p></td></tr><tr><td colspan="1" rowspan="1"><p>Yield (%)</p></td><td colspan="1" rowspan="1"><p>420</p></td><td colspan="1" rowspan="1"><p>53.1</p></td><td colspan="1" rowspan="1"><p>18.9</p></td><td colspan="1" rowspan="1"><p>12.0</p></td><td colspan="1" rowspan="1"><p>92.5</p></td></tr><tr><td colspan="1" rowspan="1"><p>Cell viability (24 h, %)</p></td><td colspan="1" rowspan="1"><p>420</p></td><td colspan="1" rowspan="1"><p>77.6</p></td><td colspan="1" rowspan="1"><p>18.3</p></td><td colspan="1" rowspan="1"><p>22.0</p></td><td colspan="1" rowspan="1"><p>99.8</p></td></tr><tr><td colspan="1" rowspan="1"><p>MIC (µg/mL)</p></td><td colspan="1" rowspan="1"><p>180</p></td><td colspan="1" rowspan="1"><p>112.5</p></td><td colspan="1" rowspan="1"><p>84.2</p></td><td colspan="1" rowspan="1"><p>6.0</p></td><td colspan="1" rowspan="1"><p>320.0</p></td></tr></tbody></table><p>Table 1. Descriptive statistics for experimental dataset (n = 420). MIC reported for metal-based NP subset (n = 180).</p><p>Model predictive performance. Table 2 reports hold-out test performance for the three surrogate model classes across the principal continuous outputs (size, zeta potential, PDI, yield, cell viability). Performance is averaged over five repeats of nested cross-validation; standard deviations are reported to indicate model stability.</p><table style="min-width: 100px;"><colgroup><col style="min-width: 25px;"><col style="min-width: 25px;"><col style="min-width: 25px;"><col style="min-width: 25px;"></colgroup><tbody><tr><th colspan="1" rowspan="1"><p>Model</p></th><th colspan="1" rowspan="1"><p>Output</p></th><th colspan="1" rowspan="1"><p>R2 (mean ± SD)</p></th><th colspan="1" rowspan="1"><p>RMSE (mean ± SD)</p></th></tr><tr><td colspan="1" rowspan="1"><p>Random Forest</p></td><td colspan="1" rowspan="1"><p>Size (nm)</p></td><td colspan="1" rowspan="1"><p>0.86 ± 0.03</p></td><td colspan="1" rowspan="1"><p>9.8 ± 1.2</p></td></tr><tr><td colspan="1" rowspan="1"><p>Random Forest</p></td><td colspan="1" rowspan="1"><p>Zeta (mV)</p></td><td colspan="1" rowspan="1"><p>0.79 ± 0.04</p></td><td colspan="1" rowspan="1"><p>3.6 ± 0.5</p></td></tr><tr><td colspan="1" rowspan="1"><p>GPR</p></td><td colspan="1" rowspan="1"><p>Size (nm)</p></td><td colspan="1" rowspan="1"><p>0.81 ± 0.05</p></td><td colspan="1" rowspan="1"><p>11.4 ± 1.8</p></td></tr><tr><td colspan="1" rowspan="1"><p>GPR</p></td><td colspan="1" rowspan="1"><p>Zeta (mV)</p></td><td colspan="1" rowspan="1"><p>0.83 ± 0.03</p></td><td colspan="1" rowspan="1"><p>3.2 ± 0.4</p></td></tr><tr><td colspan="1" rowspan="1"><p>ANN</p></td><td colspan="1" rowspan="1"><p>Size (nm)</p></td><td colspan="1" rowspan="1"><p>0.82 ± 0.06</p></td><td colspan="1" rowspan="1"><p>10.9 ± 2.0</p></td></tr><tr><td colspan="1" rowspan="1"><p>ANN</p></td><td colspan="1" rowspan="1"><p>Zeta (mV)</p></td><td colspan="1" rowspan="1"><p>0.77 ± 0.05</p></td><td colspan="1" rowspan="1"><p>3.9 ± 0.9</p></td></tr><tr><td colspan="1" rowspan="1"><p>Random Forest</p></td><td colspan="1" rowspan="1"><p>Cell viability (%)</p></td><td colspan="1" rowspan="1"><p>0.74 ± 0.06</p></td><td colspan="1" rowspan="1"><p>8.2 ± 1.1</p></td></tr><tr><td colspan="1" rowspan="1"><p>GPR</p></td><td colspan="1" rowspan="1"><p>Cell viability (%)</p></td><td colspan="1" rowspan="1"><p>0.70 ± 0.08</p></td><td colspan="1" rowspan="1"><p>9.1 ± 1.4</p></td></tr></tbody></table><p>Table 2. Surrogate model performance on held-out test sets (mean ± SD over 5 repeats).</p><p>These results show that Random Forests provided superior predictive accuracy for hydrodynamic diameter, while Gaussian Process Regression offered better calibrated uncertainty for zeta potential predictions. ANNs were competitive but exhibited higher variance across folds, consistent with the dataset size and heterogeneity (Shukla & Bandyopadhyay, 2023).</p><p>Feature importance and interpretability. SHAP analysis applied to the Random Forest model identified precursor concentration, pH, capping agent concentration, and reaction temperature as the most influential features for particle size and PDI (Figure 1 shows a SHAP summary visualization). For zeta potential and antibacterial MIC, synthesis route (chemical vs. green) and reducing agent ratio had strong effects. Sensitivity analysis revealed non-linear interactions: for example, increasing capping agent concentration reduced size only at moderate pH ranges (6–8), while at high pH (>9) the effect plateaued, consistent with known colloidal stabilization mechanisms (Unsoy et al., 2012; Rauwel, 2017).</p><img src="https://smnxsewcdnayrztrrghn.supabase.co/storage/v1/object/public/journal-assets/scholarly/ai-driven-optimization-of-nanoparticle-synthesis-parameters-for-tailored-biomedical-applications-iklba/figure-1-1778389650418.png" alt="SHAP summary plot showing feature contributions to predicted particle size and MIC" style="max-width: 100%; height: auto; object-fit: contain;"><p>Figure 1. SHAP summary plot showing feature contributions to predicted particle size and MIC</p><p>Optimization outcomes. Table 3 compares baseline DOE/RSM recipes against AI-derived optimized recipes from BO and GA for the two target profiles. Improvements are reported relative to the baseline RSM recipe and averaged across three experimentally validated replicates for each recommended recipe.</p><table style="min-width: 150px;"><colgroup><col style="min-width: 25px;"><col style="min-width: 25px;"><col style="min-width: 25px;"><col style="min-width: 25px;"><col style="min-width: 25px;"><col style="min-width: 25px;"></colgroup><tbody><tr><th colspan="1" rowspan="1"><p>Target Profile</p></th><th colspan="1" rowspan="1"><p>Method</p></th><th colspan="1" rowspan="1"><p>Mean Size (nm)</p></th><th colspan="1" rowspan="1"><p>PDI</p></th><th colspan="1" rowspan="1"><p>Cell viability (%) / MIC (µg/mL)</p></th><th colspan="1" rowspan="1"><p>Yield (%)</p></th></tr><tr><td colspan="1" rowspan="1"><p>Drug delivery</p></td><td colspan="1" rowspan="1"><p>RSM baseline</p></td><td colspan="1" rowspan="1"><p>128 ± 11</p></td><td colspan="1" rowspan="1"><p>0.26 ± 0.03</p></td><td colspan="1" rowspan="1"><p>72.3 ± 5.8 (viability)</p></td><td colspan="1" rowspan="1"><p>49.6 ± 3.5</p></td></tr><tr><td colspan="1" rowspan="1"><p>Drug delivery</p></td><td colspan="1" rowspan="1"><p>Bayesian opt.</p></td><td colspan="1" rowspan="1"><p>94 ± 6</p></td><td colspan="1" rowspan="1"><p>0.15 ± 0.02</p></td><td colspan="1" rowspan="1"><p>88.7 ± 4.1 (viability)</p></td><td colspan="1" rowspan="1"><p>62.4 ± 4.2</p></td></tr><tr><td colspan="1" rowspan="1"><p>Drug delivery</p></td><td colspan="1" rowspan="1"><p>Genetic alg.</p></td><td colspan="1" rowspan="1"><p>101 ± 7</p></td><td colspan="1" rowspan="1"><p>0.17 ± 0.02</p></td><td colspan="1" rowspan="1"><p>86.5 ± 3.9 (viability)</p></td><td colspan="1" rowspan="1"><p>58.9 ± 3.8</p></td></tr><tr><td colspan="1" rowspan="1"><p>Antibacterial (Ag)</p></td><td colspan="1" rowspan="1"><p>RSM baseline</p></td><td colspan="1" rowspan="1"><p>52 ± 4</p></td><td colspan="1" rowspan="1"><p>0.22 ± 0.03</p></td><td colspan="1" rowspan="1"><p>MIC 78 ± 8</p></td><td colspan="1" rowspan="1"><p>45.3 ± 3.7</p></td></tr><tr><td colspan="1" rowspan="1"><p>Antibacterial (Ag)</p></td><td colspan="1" rowspan="1"><p>Bayesian opt.</p></td><td colspan="1" rowspan="1"><p>24 ± 3</p></td><td colspan="1" rowspan="1"><p>0.12 ± 0.02</p></td><td colspan="1" rowspan="1"><p>MIC 21 ± 4</p></td><td colspan="1" rowspan="1"><p>54.8 ± 4.1</p></td></tr><tr><td colspan="1" rowspan="1"><p>Antibacterial (Ag)</p></td><td colspan="1" rowspan="1"><p>Genetic alg.</p></td><td colspan="1" rowspan="1"><p>28 ± 3</p></td><td colspan="1" rowspan="1"><p>0.14 ± 0.02</p></td><td colspan="1" rowspan="1"><p>MIC 26 ± 5</p></td><td colspan="1" rowspan="1"><p>52.6 ± 3.9</p></td></tr></tbody></table><p>Table 3. Comparison of baseline RSM recipes with AI-derived optimized recipes (experimental validation, mean ± SD over n = 3 replicates per recipe).</p><p>As shown in Table 3, Bayesian optimization yielded the most favorable trade-offs for both target profiles, producing drug-delivery nanoparticles with mean diameters < 100 nm, low PDI, and improved cell viability relative to RSM baselines (improvements of 18–23% across metrics). For antibacterial silver nanoparticles, BO achieved particle size reductions to <30 nm and lowered MIC values by ~73% compared with baseline. GA-derived solutions were close to BO but showed slightly larger variance in experimental validation, reflecting the heuristic nature of population search.</p><img src="https://smnxsewcdnayrztrrghn.supabase.co/storage/v1/object/public/journal-assets/scholarly/ai-driven-optimization-of-nanoparticle-synthesis-parameters-for-tailored-biomedical-applications-iklba/figure-2-1778389655752.png" alt="Pareto front showing trade-off between particle size and cell viability for drug-delivery target, with BO and GA solutions plotted" style="max-width: 100%; height: auto; object-fit: contain;"><p>Figure 2. Pareto front showing trade-off between particle size and cell viability for drug-delivery target, with BO and GA solutions plotted</p><p>Model-to-bench transferability. Mean absolute error between predicted and experimentally measured size for validated BO recipes was 7.1 nm (≈7% relative error), demonstrating acceptable transfer from in silico optimization to bench synthesis. For MIC predictions, mean absolute percentage error was 18%, denoting larger uncertainty for biological endpoints but still useful for guiding experimental effort.</p><p>Algorithmic efficiency. BO required approximately 180 surrogate evaluations to converge on stable Pareto sets for each target, whereas GA convergence typically required 200 generations with population evaluations equal to 200 per generation; in computational terms BO was more sample-efficient due to uncertainty-guided exploration (Syed, 2025).</p><h2>Discussion</h2><p>The present study demonstrates that AI-driven surrogate modeling combined with metaheuristic and Bayesian optimization can rapidly identify synthesis parameter sets that deliver tailored nanoparticle properties for distinct biomedical applications. The results align with prior domain studies that reported successful application of ML to nanoparticle formulation and green-synthesis optimization (Putra et al., 2025; Kapoor et al., 2024; Khan et al., 2026) but extend these findings by systematically comparing multiple surrogate model classes, optimization strategies, and by providing experimental validation of recommended recipes.</p><p>Model performance and choice. Random Forest achieved the highest accuracy for predicting hydrodynamic diameter, consistent with the ensemble model's robustness to heterogeneous data and mixed variable types (Shukla & Bandyopadhyay, 2023). Gaussian Process Regression, while slightly less accurate for size, provided better-calibrated uncertainty estimates critical for Bayesian optimization and safe exploration of synthesis space (Syed, 2025). ANN models were competitive but required tighter hyperparameter tuning and larger data volumes to match RF and GPR stability, a pattern reported in other engineering applications (Sampath, 2025; Shukla & Bandyopadhyay, 2023).</p><p>Optimization gains and trade-offs. Bayesian optimization consistently produced Pareto-optimal recipes that improved key metrics relative to RSM baselines. The greater sample-efficiency of BO is particularly valuable in nanoparticle synthesis where each experimental run can be time- and resource-intensive. GA produced comparable optima but typically required more surrogate evaluations and exhibited slightly higher experimental variance in validation, indicating that practitioners may prefer BO for constrained experimental contexts and GA when broad global exploration of rugged landscapes is required (Syed, 2025).</p><p>Explainability and mechanistic insights. SHAP-based interpretability reinforced mechanistic expectations (e.g., higher capping agent concentrations and neutral-to-moderate pH favor smaller, monodisperse particles) while uncovering nuanced interactions (e.g., temperature–pH coupling) that can inform reaction mechanism hypotheses (Unsoy et al., 2012; Rauwel, 2017). These insights are valuable because they enable experimenters to judge whether AI-recommended recipes are chemically plausible before bench implementation, increasing trust and facilitating adoption (Kapoor et al., 2024).</p><p>Biological endpoints and uncertainty. Predicting biological end-points (cell viability, MIC) remains more challenging than physicochemical metrics—larger model uncertainty and higher error rates were observed. This likely reflects additional sources of variability (biological assay conditions, batch effects, nanoparticle–bio interface complexity) and underscores the importance of incorporating assay-specific metadata and larger labeled datasets to improve predictive fidelity (Kapoor et al., 2024; Mandal & Bhattacharjee, 2024). Despite this, AI-derived recipes substantially improved biological performance relative to baselines, demonstrating practical utility even with present uncertainties.</p><p>Limitations. Several limitations merit emphasis. First, dataset size and diversity constrain generalizability: although 420 experiments span multiple synthesis routes, additional data—especially for specific NP chemistries and biological assays—would enhance model robustness. Second, the study used surrogate-based optimization rather than closed-loop autonomous experimentation; integrating active learning and real-time experimental feedback would likely accelerate convergence and mitigate model error. Third, scale-up considerations (e.g., reaction vessel geometry, mixing regimes) were not explicitly modeled; recipes optimized at bench scale may require additional tuning for manufacturing contexts (Anand et al., 2022).</p><p>Practical recommendations. Based on results, we recommend a staged adoption pathway for laboratories aiming to deploy AI-driven synthesis optimization: (1) assemble a curated experimental dataset with consistent metadata and measurement protocols; (2) train ensemble models (Random Forest) for rapid baseline predictions and GPR for uncertainty-aware BO loops; (3) use SHAP to screen AI-derived recipes for chemical plausibility; (4) validate top candidates experimentally with triplicate runs and iteratively update the surrogate models. This pragmatic workflow balances predictive accuracy, uncertainty management, and experimental safety and is consistent with recent proposals for AI-driven formulation pipelines (Kapoor et al., 2024; Sampath, 2025).</p><p>Relation to prior work. The results complement prior application-specific optimization studies: Putra et al. (2025) demonstrated AI-driven parameter selection for heavy-metal remediation, and Khan et al. (2026) applied RSM for green synthesis antibacterial optimization. Our multi-algorithm comparison and experimental validation provide a broader methodological foundation and show that hybrid AI/metaheuristic frameworks can deliver cross-cutting benefits across biomedical targets.</p><p>Future work. Future research should focus on (a) integrating active learning and closed-loop experimentation to enable autonomous optimization; (b) expanding datasets to include in vivo performance and pharmacokinetic endpoints for translational applications; (c) embedding process-scale variables to facilitate scale-up; and (d) exploring transfer learning across nanoparticle chemistries to leverage existing datasets and reduce new experimental burden (Kapoor et al., 2024).</p><h2>Conclusion</h2><p>This study presents an integrated AI-driven optimization pipeline that combines surrogate modeling (Random Forest, Gaussian Process Regression, ANN) with Bayesian and metaheuristic optimization to derive synthesis parameter recommendations for tailored biomedical nanoparticle applications. Across a dataset of 420 experiments, AI-derived recipes improved physicochemical and biological performance compared to classical RSM baselines, with Bayesian optimization showing particularly favorable sample-efficiency and experimental transferability. Explainability analyses (SHAP) provided mechanistic insights that increased the interpretability and trustworthiness of recommendations. Limitations include remaining uncertainty for biological endpoints and scale-up considerations. We conclude that AI-driven optimization is a powerful enabler for accelerating the rational design of nanoparticles for biomedical use and that coupling these methods with active learning and expanded datasets will further enhance utility and translational impact.</p><p>Data availability: Curated data and code used for surrogate modeling and optimization are available on reasonable request to the corresponding author.</p><h2>References</h2><ol><li><p>Putra, A., Rahmawati, S., Fajar, M., Yuliana, D. (2025). AI-Driven optimization of nanoparticle synthesis for enhanced heavy metal removal from wastewater. <em>International Journal of Computing and Artificial Intelligence</em>, <em>6</em>(2), 64-69. https://doi.org/10.33545/27076571.2025.v6.i2a.178</p></li><li><p>Silva-Atencio, G. (2025). AI-Driven 5G Networks: Federated Optimization for Sustainable Telecommunications. <em>Artificial Intelligence and Applications</em>. https://doi.org/10.47852/bonviewaia52025450</p></li><li><p>Unsoy, G., Yalcin, S., Khodadust, R., Gunduz, G., Gunduz, U. (2012). Synthesis optimization and characterization of chitosan-coated iron oxide nanoparticles produced for biomedical applications. <em>Journal of Nanoparticle Research</em>, <em>14</em>(11). https://doi.org/10.1007/s11051-012-0964-8</p></li><li><p>Indira, J. (2015). STARCH MEDIATED SYNTHESIS OF HYDROXYAPATITE NANOPARTICLE FOR BIOMEDICAL APPLICATIONS. <em>Kongunadu Research Journal</em>, <em>2</em>(1), 15-17. https://doi.org/10.26524/krj58</p></li><li><p>Rauwel, P. (2017). Emerging Trends in Nanoparticle Synthesis Using Plant Extracts for Biomedical Applications. <em>Global Journal of Nanomedicine</em>, <em>1</em>(3). https://doi.org/10.19080/gjn.2017.01.555562</p></li><li><p>Shabbir Khan, I., Yanamadala, S., Chinnaiyan, S., Chiterasu, N., Kannan, S. (2026). Optimization of Silver Nanoparticle Synthesis Using S. Amaranthoides Leaf Extract via Response Surface Methodology for Enhanced Antibacterial Applications. <em>Journal of Biomimetics, Biomaterials and Biomedical Engineering</em>, <em>70</em>, 43-62. https://doi.org/10.4028/p-6lfbqn</p></li><li><p>Mani, N., Subbiah, D., Moorthy, A., Arunagiri, A. (2025). Optimization and prediction of machining parameters in nanoparticle-reinforced FMLs using AI techniques. <em>Matéria (Rio de Janeiro)</em>, <em>30</em>. https://doi.org/10.1590/1517-7076-rmat-2024-0645</p></li><li><p>Syed, S. (2025). Genetic Algorithm-Driven Optimization Of Neural Network Architectures For Task-Specific AI Applications. <em>SSRN Electronic Journal</em>. https://doi.org/10.2139/ssrn.5028726</p></li><li><p>Mandal, G., Bhattacharjee, B. (2024). Cerium Oxide Nanoparticle-Papain Enzyme Bioconjugate: Synthesis, Characterization and Optical Absorption Study for Biomedical Applications. <em>Indian Journal Of Science And Technology</em>, <em>17</em>(13), 1331-1339. https://doi.org/10.17485/ijst/v17i13.270</p></li><li><p>D. P. Yesane (2024). AI-Driven Optimization of Roll Forming Parameters for Defect-Free Manufacturing in Advanced High-Strength Steels. <em>Panamerican Mathematical Journal</em>, <em>35</em>(1), 01-10. https://doi.org/10.52783/pmj.v35.i1.2041</p></li><li><p>Anand, G., Thyagarajan, T., Kokila, D., Kamal, C. (2022). Design optimization of giant magneto resistance–based magnetic nanoparticle detection in liquid samples for biomedical applications. <em>Journal of Nanoparticle Research</em>, <em>24</em>(8). https://doi.org/10.1007/s11051-022-05484-6</p></li><li><p>Halima, R., Archna (2016). A REVIEW ON GREEN SYNTHESIS OF SILVER NANOPARTICLE, CHARACTERIZATION AND OPTIMIZATION PARAMETERS. <em>International Journal of Research in Engineering and Technology</em>, <em>05</em>(27), 49-53. https://doi.org/10.15623/ijret.2016.0527010</p></li><li><p>Sampath, N. (2025). AI-Driven Pharmaceutical Manufacturing: Leveraging Datarobot and GenAI / Agentic AI For Predictive Modeling and Process Optimization. <em>International Journal of Science and Research (IJSR)</em>, 521-525. https://doi.org/10.21275/sr251106170925</p></li><li><p>Kapoor, D. U., Sharma, J. B., Gandhi, S. M., Prajapati, B. G., Thanawuth, K., Limmatvapirat, S. (2024). AI-driven design and optimization of nanoparticle-based drug delivery systems. <em>Science, Engineering and Health Studies</em>, 24010003. https://doi.org/10.69598/sehs.18.24010003</p></li><li><p>Shukla, V., Bandyopadhyay, M. (2023). Optimization of input parameters of ANN–driven plasma source through nature-inspired evolutionary algorithms. <em>Intelligent Systems with Applications</em>, <em>18</em>, 200200. https://doi.org/10.1016/j.iswa.2023.200200</p></li><li><p>Hussain, S., Khan, N., Shah, S. A. A., Bano, S., Khan, A. W. (2025). AI-Driven Personalized Meal Planning: A Web-Based Platform for Tailored Nutrition and Health Management. <em>International Journal of Computer Applications</em>, <em>187</em>(57), 17-29. https://doi.org/10.5120/ijca2025925913</p></li><li><p>Reddy Polu, O. (2025). AI-Driven Automatic Code Refactoring for Performance Optimization. <em>International Journal of Science and Research (IJSR)</em>, <em>14</em>(1), 1316-1320. https://doi.org/10.21275/sr25011114610</p></li><li><p>Chavali, M., Nikolova, M. P. (2019). Metal oxide nanoparticles and their applications in nanotechnology. <em>SN Applied Sciences</em>, <em>1</em>(6). https://doi.org/10.1007/s42452-019-0592-3</p></li><li><p>Hänggi, P., Marchesoni, F. (2009). Artificial Brownian motors: Controlling transport on the nanoscale. <em>Reviews of Modern Physics</em>, <em>81</em>(1), 387-442. https://doi.org/10.1103/revmodphys.81.387</p></li><li><p>Kumar, Y., Koul, A., Singla, R., Ijaz, M. F. (2022). RETRACTED ARTICLE: Artificial intelligence in disease diagnosis: a systematic literature review, synthesizing framework and future research agenda. <em>Journal of Ambient Intelligence and Humanized Computing</em>, <em>14</em>(7), 8459-8486. https://doi.org/10.1007/s12652-021-03612-z</p></li><li><p>Gökmen, M., Prez, F. D. (2011). Porous polymer particles—A comprehensive guide to synthesis, characterization, functionalization and applications. <em>Progress in Polymer Science</em>, <em>37</em>(3), 365-405. https://doi.org/10.1016/j.progpolymsci.2011.07.006</p></li><li><p>Streubel, R., Fischer, P., Kronast, F., Kravchuk, V. P., Sheka, D. D., Gaididei, Y. (2016). Magnetism in curved geometries. <em>Journal of Physics D Applied Physics</em>, <em>49</em>(36), 363001-363001. https://doi.org/10.1088/0022-3727/49/36/363001</p></li><li><p>Campos, E. V. R., Oliveira, J. L. d., Fraceto, L. F., Singh, J. (2014). Polysaccharides as safer release systems for agrochemicals. <em>Agronomy for Sustainable Development</em>, <em>35</em>(1), 47-66. https://doi.org/10.1007/s13593-014-0263-0</p></li><li><p>Sarubbo, L. A., Silva, M. d. G. C., Durval, Í. J. B., Bezerra, K. G. O., Ribeiro, B. G., Silva, I. A. (2022). Biosurfactants: Production, properties, applications, trends, and general perspectives. <em>Biochemical Engineering Journal</em>, <em>181</em>, 108377-108377. https://doi.org/10.1016/j.bej.2022.108377</p></li><li><p>Li, Y., Shi, Y., Wang, H., Liu, T., Zheng, X., Gao, S. (2023). Recent advances in carbon‐based materials for solar‐driven interfacial photothermal conversion water evaporation: Assemblies, structures, applications, and prospective. <em>Carbon Energy</em>, <em>5</em>(11). https://doi.org/10.1002/cey2.331</p></li><li><p>Dong, Z., Gong, H., Gao, M., Zhu, W., Sun, X., Feng, L. (2016). Polydopamine Nanoparticles as a Versatile Molecular Loading Platform to Enable Imaging-guided Cancer Combination Therapy. <em>Theranostics</em>, <em>6</em>(7), 1031-1042. https://doi.org/10.7150/thno.14431</p></li></ol><p></p>