Pith. sign in

REVIEW 3 major objections 5 minor 66 references

A Machine Learning Pipeline for Molecular Property Prediction using ChemXploreML

T0 review · 3 major / 5 minor · reviewed 2026-08-15 · deepseek-v4-flash

Pith's one-line read The paper claims that a 32-dimensional molecular embedding can rival a 300-dimensional one, cutting runtime by about tenfold while keeping prediction accuracy within a few points.

desk verdict Useful modular tool and a real benchmark, but the headline R^2 values are inflated by pre-split cleanlab pruning, and the Mol2Vec vs VICGAE comparison runs on different cleaned datasets. read the letter →

arxiv 2505.08688 v1 pith:CT5PQMZK submitted 2025-05-13 physics.chem-ph

classification physics.chem-ph
keywords molecularpropertypredictionmachinelearningembeddingsVICGAEMol2Vectree-basedensemblescheminformatics
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

This paper claims that a modular desktop pipeline can make modern machine-learning property prediction practical for chemists, and that on well-distributed datasets the attainable accuracy is set mostly by the data itself rather than by the choice of molecular embedding. Using five thermodynamic properties drawn from a standard chemistry handbook, the authors report R² values up to 0.93 for critical temperature and 0.925 for boiling point with a 300-dimensional Mol2Vec embedding. They then show that a 32-dimensional VICGAE embedding stays within a few points of that accuracy while running about ten times faster on the largest dataset for gradient boosting. If these results hold, cheminformatics workflows can reduce the computational cost of representation without sacrificing much predictive power, making high-throughput screening more accessible.

What carries the argument

The load-bearing mechanism is the embedding-to-regressor pipeline with a head-to-head embedding comparison. Mol2Vec represents each molecule as a 300-dimensional vector by summing learned fragment embeddings; VICGAE is a GRU autoencoder trained on partially masked SELFIES strings with variance-invariance-covariance regularization, producing 32-dimensional vectors that resist latent-space collapse and keep chemically similar molecules close. Five-fold cross-validation with Bayesian hyperparameter search is what converts those vectors into the reported R², RMSE, and MAE values, and the per-model per-property tables make the comparison traceable.

What would settle it

Recompute every reported R² and RMSE by applying the outlier-cleaning step independently inside each cross-validation fold, and compare those numbers with scores from the uncleaned data; a material drop in melting-point R² from its reported 0.86 would show the headline accuracy is an artifact of data selection.

Watch

Extended reading notes

Core claim

The central claim is that ChemXploreML works as an end-to-end platform: given molecular strings, it builds embeddings, cleans the data, tunes four tree-based regressors, and returns cross-validated property predictions. The benchmark portion claims that on well-distributed datasets the results are strong, with CatBoost on Mol2Vec reaching R² = 0.931(7) for critical temperature, 0.925(8) for boiling point, and an RMSE near 36 °C for melting point, which the authors place at the level of published QSPR models. The more transferable discovery is the embedding comparison: VICGAE's 32-dimensional vectors keep accuracy within a few points of Mol2Vec's 300-dimensional vectors while giving roughly a 10-fold speedup for gradient boosting on the largest dataset. The authors therefore present the compact embedding as the practical choice for high-throughput screening and the modular pipeline as the reusable vehicle for such comparisons.

Load-bearing premise

The load-bearing premise is that removing outliers from the full dataset before splitting it into cross-validation folds does not make the test folds artificially easy, since the cleaning step is not repeated inside each fold.

Editorial extensions

If this is right

  • Compact 32-dimensional embeddings can substitute for 300-dimensional ones in tree-based property models, cutting training time by roughly an order of magnitude on large datasets.
  • Data distribution and sample size dominate achievable accuracy: near-normal, well-populated properties such as critical temperature reach R² around 0.93, while the small, heavily skewed vapor-pressure set stalls near R² = 0.4 regardless of embedding.
  • Because the pipeline is modular, adding a new embedding or regressor does not require rearchitecting the workflow, so the same code can be pointed at classification tasks, larger libraries, or newly integrated representations.
  • Melting-point RMSE around 36 °C matches published structure-property models, suggesting the platform can serve as a practical screening tool, not just a benchmark harness.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • Pith inference: if the 32-dimensional embeddings are truly within a few points of 300-dimensional ones, representation cost—not model capacity—is the practical bottleneck for high-throughput screening, and the same speed advantage should transfer to any regressor that consumes embeddings directly.
  • Pith inference: the vapor-pressure failure suggests neither embedding encodes non-covalent intermolecular interactions such as hydrogen bonding; adding explicit interaction-aware descriptors and checking whether VP R² rises above 0.4 would test that diagnosis.
  • Pith inference: because outlier removal happens before the cross-validation split, all reported metrics may be optimistic; a re-evaluation that cleans inside each fold, or reports on uncleaned data, is the direct way to establish the true ceiling.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 5 minor

Summary. The paper presents ChemXploreML, a modular desktop application for molecular property prediction, and validates it on five CRC Handbook properties (melting point, boiling point, vapor pressure, critical temperature, critical pressure). The pipeline combines SMILES/SELFIES handling, RDKit validation, two molecular embeddings (Mol2Vec, 300-D, and VICGAE, 32-D), UMAP/DBSCAN chemical-space exploration, cleanlab-based outlier removal, Optuna hyperparameter tuning, and four tree-based regressors (GBR, XGBoost, CatBoost, LightGBM). The best reported results are R² = 0.93 for critical temperature and 0.925 for boiling point with Mol2Vec, while VICGAE is reported as comparable at much lower dimensionality and with roughly 10x speedup on the melting-point dataset. The authors claim the platform's modular design makes advanced ML accessible and reproducible.

Significance. If the evaluation were unbiased, the contribution would be a practically useful open-source platform and a favorable efficiency/accuracy trade-off for VICGAE. The manuscript's concrete strengths include public release of code and data, installation packages, a documentation site, and a thorough exploratory analysis of chemical space. The UMAP/DBSCAN clustering analyses are informative and chemically plausible. However, the central quantitative claims rest on an evaluation protocol that removes model-dependent subsets of samples before cross-validation and that reuses the same CV folds for hyperparameter tuning and final reporting. Until the evaluation is made statistically sound, the reported R² values and the Mol2Vec/VICGAE comparison cannot be accepted as stated.

major comments (3)
  1. [Section 6, Table 1, Table 4] The evaluation protocol applies cleanlab once to each validated dataset before the 5-fold CV split, and the cleaned sets differ substantially by embedder (CT: Mol2Vec 819/819 retained, VICGAE 777/818; MP: Mol2Vec 6167/7476 retained, VICGAE 6030/7200). Because cleanlab scores samples using predictions from a regression model, pruning before the split can selectively remove hard-to-predict molecules, making the test folds in Table 4 artificially easy and non-representative of the original CRC data. The Mol2Vec versus VICGAE comparison is also uncontrolled because the two pipelines are evaluated on different molecule sets. No results on the uncleaned datasets or with cleaning nested inside each CV fold are reported, so the magnitude of this bias is unknown; the headline R² values (0.93 CT, 0.925 BP) and the speed comparison rest on this assumption.
  2. [Section 7.2, Section 8.1] Hyperparameter optimization is performed with 5-fold CV ('For each model, we performed extensive hyperparameter tuning using Optuna with 5-fold cross-validation'), and the reported metrics in Table 4 are also computed with 5-fold CV on the same cleaned data. No held-out test set or nested CV is described. Selecting hyperparameters by minimizing RMSE on the same folds used to report R² can inflate the reported performance and the ranking between Mol2Vec and VICGAE. Please report an independent final evaluation, e.g., a fixed held-out split or nested CV.
  3. [Section 8.2, Section 9, Table 4] The conclusion states that VICGAE 'even outperformed Mol2Vec for vapor pressure prediction,' but Section 8.2 says the VP difference is likely not statistically significant because uncertainty ranges overlap (e.g., CatBoost VP R² 0.4(2) versus 0.32(7)). This is an internal contradiction in one of the paper's stated advantages of VICGAE and should be corrected to say 'comparable' rather than 'outperformed.'
minor comments (5)
  1. [Figure 6] In most panels the inset labels appear to swap RMSE and MAE relative to Table 4 (e.g., MP GBR inset gives RMSE 30(2) and MAE 39(2), whereas Table 4 lists RMSE 39(2) and MAE 30(2)). Please correct the figure or the table.
  2. [Section 9] The sentence 'VICGAE showed R² values of 0.4(2) compared to Mol2Vec's 0.32(7)' omits the property name; specify vapor pressure (VP) and the model (CatBoost) for clarity.
  3. [Section 6] The text says the melting point dataset experienced an 18% reduction in Mol2Vec embeddings, while Table 1 shows 6167 of 7476 retained (17.5% reduction); please round consistently or state exact percentages.
  4. [Section 9] The claim that applicability domain (AD) analysis via leverage and Mahalanobis distance is implemented in ChemXploreML is not demonstrated anywhere in the paper; either provide evidence of this functionality or label it as planned.
  5. [Section 5] UMAP and DBSCAN parameters are described as optimized through visual assessment; since these choices affect the exploratory analysis (not the regression), the paper should state more explicitly that they are heuristic and not part of the quantitative evaluation.

Circularity Check

1 steps flagged · score 5.0 of 10

Pre-split cleanlab pruning makes reported R² partially self-referential and confounds the Mol2Vec vs VICGAE comparison.

  1. fitted input called prediction [Section 6 (Data Preprocessing Pipeline), Table 1, Table 4 caption]
    "Post-embedding, for automated outlier detection, we leverage cleanlab 35–37 to identify and remove problematic data points. ... As shown in Table 1, while the melting point dataset experienced an 18% reduction in Mol2Vec embeddings ... only a minimal fraction of data is pruned, which inherently enhances data reliability for robust model training. ... All metrics are computed with 5-fold CV."

    cleanlab's confident-learning framework detects label noise and outliers using predictions from regression models (refs 35–37), and the cleaning is applied once before the 5-fold split that produces Table 4. The test folds are therefore not an independent sample of the original CRC data: hard-to-predict molecules are preferentially removed by the same model family being evaluated, so the reported R² and RMSE partially measure the cleaning model's ability to select easy points rather than genuine generalization. The paper reports no metrics on uncleaned data and does not nest cleaning inside each fold, so the magnitude of the optimistic bias is unknown.

full rationale

The main derivation content is not circular: Mol2Vec and VICGAE are pre-existing external embedding methods, the regression models are standard external algorithms, and the property datasets are from the CRC Handbook. The pipeline's reported R² values are empirical benchmark results rather than analytically derived predictions, so the core 'ChemXploreML works' claim has independent content. The significant circularity is in the evaluation protocol: cleanlab, which uses model predictions to prune outliers, is run before the 5-fold CV, and the same post-clean data are then used to report prediction quality. This makes the reported MP, VP, CP, and cross-embedder performance partially self-referential, because the test folds have been selected using predictions from the same family of models. The CT and BP headline numbers are less affected (Mol2Vec CT retains all 819 molecules; BP retains 98%), but the Mol2Vec-vs-VICGAE comparison is still confounded by different cleaned sets. A milder, non-circular but related concern is that Optuna hyperparameter tuning and the final 5-fold CV evaluation share the same folds, which can optimistically bias the reported scores. Overall, this is partial evaluation circularity rather than a derivation that reduces to its inputs by construction.

Assumptions & free parameters 6 free parameters · 4 assumptions · 0 invented entities

The central claims rest on the fidelity of the cleaned dataset and the sufficiency of the embeddings. The UMAP/DBSCAN parameters are hand-set but only affect the exploratory clustering, not the regression claims. The model hyperparameters are fit per dataset. No new physical entities or forces are postulated.

free parameters (6)
  • UMAP n_neighbors = 25
    Chosen by visual/chemical assessment in Section 5, not by a metric; affects only the exploratory UMAP plots, not the regression scores.
  • UMAP min_dist = 0.3
    Same Section 5 empirical choice, used for the UMAP visualization in Figure 3 and SI figures.
  • DBSCAN eps = 0.7
    Same Section 5, used for cluster annotations in the Supporting Information.
  • DBSCAN min_samples = 15
    Same Section 5, used for cluster annotations in the Supporting Information.
  • cleanlab data-pruning decisions = 18% of MP data removed (Mol2Vec)
    Section 6 and Table 1: the cleaning step removes up to 18-19% of samples before CV. The specific threshold/confidence settings are not given, and this pruning materially affects the reported R^2.
  • Model hyperparameters (Optuna-tuned) = See Table 3
    Hyperparameters for GBR, XGBoost, CatBoost, LightGBM are fitted per property and embedder using Optuna with 5-fold CV. These are standard fitted hyperparameters for the ML models.
assumptions (4)
  • domain assumption CRC Handbook values are accurate experimental ground truth for the five properties.
    Section 3: the dataset is sourced from the CRC Handbook; the paper does not independently verify these values.
  • domain assumption The pre-trained Mol2Vec and VICGAE embeddings contain sufficient chemical information to predict the five properties.
    Section 4: the paper relies on these external embeddings as fixed features and does not prove their sufficiency; the VP results suggest this assumption is weak for non-covalent interactions.
  • ad hoc to paper cleanlab identifies true label errors rather than hard-to-predict molecules, so removing them does not bias evaluation.
    Section 6: this is the load-bearing premise of the cleaning step. If false, the reported CV scores are optimistic because the test set excludes samples the models would find difficult.
  • standard math 5-fold cross-validation on the cleaned data estimates generalization to new molecules.
    Section 7.2: the paper assumes CV is unbiased, but the cleaning before splitting undermines this standard assumption in this specific setup.

how reviews work

0 comments
Cite this review

Pith. "Pith review of A Machine Learning Pipeline for Molecular Property Prediction using ChemXploreML." pith.science (2026). https://pith.science/paper/CT5PQMZK

@misc{pith2026250508688,
  author       = {Pith},
  title        = {Pith review of: A Machine Learning Pipeline for Molecular Property Prediction using ChemXploreML},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/CT5PQMZK}},
  note         = {Machine review of arXiv:2505.08688}
}
abstract

We present ChemXploreML, a modular desktop application designed for machine learning-based molecular property prediction. The framework's flexible architecture allows integration of any molecular embedding technique with modern machine learning algorithms, enabling researchers to customize their prediction pipelines without extensive programming expertise. To demonstrate the framework's capabilities, we implement and evaluate two molecular embedding approaches - Mol2Vec and VICGAE (Variance-Invariance-Covariance regularized GRU Auto-Encoder) - combined with state-of-the-art tree-based ensemble methods (Gradient Boosting Regression, XGBoost, CatBoost, and LightGBM). Using five fundamental molecular properties as test cases - melting point (MP), boiling point (BP), vapor pressure (VP), critical temperature (CT), and critical pressure (CP) - we validate our framework on a dataset from the CRC Handbook of Chemistry and Physics. The models achieve excellent performance for well-distributed properties, with R$^2$ values up to 0.93 for critical temperature predictions. Notably, while Mol2Vec embeddings (300 dimensions) delivered slightly higher accuracy, VICGAE embeddings (32 dimensions) exhibited comparable performance yet offered significantly improved computational efficiency. ChemXploreML's modular design facilitates easy integration of new embedding techniques and machine learning algorithms, providing a flexible platform for customized property prediction tasks. The application automates chemical data preprocessing (including UMAP-based exploration of molecular space), model optimization, and performance analysis through an intuitive interface, making sophisticated machine learning techniques accessible while maintaining extensibility for advanced cheminformatics users.

Figures

Figures reproduced from arXiv: 2505.08688 by the authors.

Figure 1
Figure 1. Elemental composition analysis and structural distribution across five thermodynamic property datasets: [PITH_FULL_IMAGE:figures/full_fig_p004_1.png] view at source ↗
Figure 2
Figure 2. Distribution analysis of molecular properties across the datasets. The main plots show frequency distri [PITH_FULL_IMAGE:figures/full_fig_p005_2.png] view at source ↗
Figure 3
Figure 3. UMAP projections illustrating the clustering patterns of molecular embeddings for five distinct properties: [PITH_FULL_IMAGE:figures/full_fig_p007_3.png] view at source ↗
Figures from the paper (4 more)
Figure 4
Figure 4. Figure 4: Hyperparameter optimization landscape for [PITH_FULL_IMAGE:figures/full_fig_p010_4.png]
Figure 5
Figure 5. Figure 5: Performance comparison of machine learning [PITH_FULL_IMAGE:figures/full_fig_p011_5.png]
Figure 6
Figure 6. Figure 6: Comparison of experimental versus predicted values (the best model-embedder combinations as detailed [PITH_FULL_IMAGE:figures/full_fig_p012_6.png]
Figure 7
Figure 7. Figure 7: Comparison of computational execution time [PITH_FULL_IMAGE:figures/full_fig_p013_7.png]

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

66 extracted references · 55 canonical work pages

  1. [1]

    Molecular representations in AI -driven drug discovery: a review and practical guide

    David, L.; Thakkar, A.; Mercado, R.; Engkvist, O. Molecular representations in AI -driven drug discovery: a review and practical guide. Journal of Cheminformatics 2020, 12, 56

  2. [2]

    P.; Kulik, H

    Janet, J. P.; Kulik, H. J. Machine Learning in Chemistry ; ACS In Focus ; American Chemical Society, 2020

  3. [3]

    Kulik, H. J. Making machine learning a useful tool in the accelerated discovery of transition metal complexes. WIREs Computational Molecular Science 2020, 10, e1439

  4. [4]

    Internally Consistent Prediction of Vapor Pressure and Related Properties

    Korsten, H. Internally Consistent Prediction of Vapor Pressure and Related Properties . Industrial & Engineering Chemistry Research 2000, 39, 813--820, Publisher: American Chemical Society

  5. [5]

    Breedveld, G. J. F.; Prausnitz, J. M. Thermodynamic properties of supercritical fluids and their mixtures at very high pressures. AIChE Journal 1973, 19, 783--796

  6. [6]

    J.; Holder, G

    Marano, J. J.; Holder, G. D. General Equation for Correlating the Thermophysical Properties of n- Paraffins , n- Olefins , and Other Homologous Series . 2. Asymptotic Behavior Correlations for PVT Properties . Industrial & Engineering Chemistry Research 1997, 36, 1895--1907, Publisher: American Chemical Society

  7. [7]

    Prediction of Fluid Phase Behavior from Molecular Models

    Lucas, K. Prediction of Fluid Phase Behavior from Molecular Models . AIP Conference Proceedings 2007, 963, 93--103

  8. [8]

    S.; Hilal, S

    Whiteside, T. S.; Hilal, S. H.; Brenner, A.; Carreira, L. A. Estimating the melting point, entropy of fusion, and enthalpy of fusion of organic compounds via SPARC . SAR and QSAR in Environmental Research 2016, Publisher: Taylor & Francis

Show all 66 references
  1. [9]

    Dearden, J. C. Quantitative structure-property relationships for prediction of boiling point, vapor pressure, and melting point. Environmental Toxicology and Chemistry 2003, 22, 1696--1709

  2. [10]

    W.; Craighead, J

    Hay, M.; Thomas, D. W.; Craighead, J. L.; Economides, C.; Rosenthal, J. Clinical development success rates for investigational drugs. Nature Biotechnology 2014, 32, 40--51, Publisher: Nature Publishing Group

  3. [11]

    Trends in clinical success rates and therapeutic focus

    Dowden, H.; Munro, J. Trends in clinical success rates and therapeutic focus. Nature Reviews Drug Discovery 2019, 18, 495--496, Bandiera\_abtest: a Cg\_type: From The Analyst's Couch Publisher: Nature Publishing Group Subject\_term: Drug discovery

  4. [12]

    Mol2vec: Unsupervised Machine Learning Approach with Chemical Intuition

    Jaeger, S.; Fulle, S.; Turk, S. Mol2vec: Unsupervised Machine Learning Approach with Chemical Intuition . Journal of Chemical Information and Modeling 2018, 58, 27--35, Publisher: American Chemical Society

  5. [13]

    Lee, K. L. K. Language models for astrochemistry. 2021; https://zenodo.org/records/7559628

  6. [14]

    N.; Remijan, A

    Scolati, H. N.; Remijan, A. J.; Herbst, E.; McGuire, B. A.; Lee, K. L. K. Explaining the Chemical Inventory of Orion KL through Machine Learning . The Astrophysical Journal 2023, 959, 108, Publisher: The American Astronomical Society

  7. [15]

    Lee, K. L. K.; Patterson, J.; Burkhardt, A. M.; Vankayalapati, V.; McCarthy, M. C.; McGuire, B. A. Machine Learning of Interstellar Chemical Inventories . The Astrophysical Journal Letters 2021, 917, L6, Publisher: The American Astronomical Society

  8. [16]

    Friedman, J. H. Greedy function approximation: A gradient boosting machine. The Annals of Statistics 2001, 29, 1189--1232, Publisher: Institute of Mathematical Statistics

  9. [17]

    XGBoost : A Scalable Tree Boosting System

    Chen, T.; Guestrin, C. XGBoost : A Scalable Tree Boosting System . Proceedings of the 22nd ACM SIGKDD International Conference on Knowledge Discovery and Data Mining . New York, NY, USA, 2016; pp 785--794

  10. [18]

    LightGBM : A Highly Efficient Gradient Boosting Decision Tree

    Ke, G.; Meng, Q.; Finley, T.; Wang, T.; Chen, W.; Ma, W.; Ye, Q.; Liu, T.-Y. LightGBM : A Highly Efficient Gradient Boosting Decision Tree . Advances in Neural Information Processing Systems . 2017

  11. [19]

    V.; Gulin, A

    Prokhorenkova, L.; Gusev, G.; Vorobev, A.; Dorogush, A. V.; Gulin, A. CatBoost : unbiased boosting with categorical features. Advances in Neural Information Processing Systems . 2018

  12. [20]

    Boldini, D.; Grisoni, F.; Kuhn, D.; Friedrich, L.; Sieber, S. A. Practical guidelines for the use of gradient boosting for molecular property prediction. Journal of Cheminformatics 2023, 15, 73

  13. [21]

    Marimuthu, A. N. aravindhnivas/ ChemXploreML : v4.0.0. 2025; https://zenodo.org/doi/10.5281/zenodo.14977096

  14. [22]

    SMILES , a chemical language and information system

    Weininger, D. SMILES , a chemical language and information system. 1. Introduction to methodology and encoding rules. Journal of Chemical Information and Computer Sciences 1988, 28, 31--36, Publisher: American Chemical Society

  15. [23]

    O’Boyle, N. M. Towards a Universal SMILES representation - A standard method to generate canonical SMILES based on the InChI . Journal of Cheminformatics 2012, 4, 22

  16. [24]

    Self-referencing embedded strings ( SELFIES ): A 100\

    Krenn, M.; Häse, F.; Nigam, A.; Friederich, P.; Aspuru-Guzik, A. Self-referencing embedded strings ( SELFIES ): A 100\

  17. [25]

    Team, T. C. Tauri: Build smaller, faster, and more secure desktop applications with a web frontend. 2024; https://tauri.app, Version 2.1.1

  18. [26]

    Harris, R.; Team, S. C. Svelte: Cybernetically enhanced web applications. 2024; https://svelte.dev, Version 4.2.1

  19. [27]

    2019; https://www.python.org/, Version 3.12

    Python Core Team Python: A dynamic, open source programming language . 2019; https://www.python.org/, Version 3.12

  20. [28]

    Landrum, G. et al. rdkit/rdkit: 2024\_09\_2 ( Q3 2024) Release . 2024; https://zenodo.org/doi/10.5281/zenodo.591637

  21. [29]

    Pedregosa, F. et al. Scikit-learn: Machine Learning in Python . Journal of Machine Learning Research 2011, 12, 2825--2830

  22. [30]

    Optuna: A Next -generation Hyperparameter Optimization Framework

    Akiba, T.; Sano, S.; Yanase, T.; Ohta, T.; Koyama, M. Optuna: A Next -generation Hyperparameter Optimization Framework . 2019; http://arxiv.org/abs/1907.10902, arXiv:1907.10902

  23. [31]

    Dask: Parallel Computation with Blocked algorithms and Task Scheduling

    Rocklin, M. Dask: Parallel Computation with Blocked algorithms and Task Scheduling . Austin, Texas, 2015; pp 126--132

  24. [32]

    R., Brunno, T

    Rumble, J. R., Brunno, T. J., Doa, M. J., Eds. CRC handbook of chemistry and physics: a ready-reference book of chemical and physical data , 105th ed.; CRC handbook of chemistry and physics / Chemical Rubber Company 105th edition (2024); CRC Press: Boca Raton London New York, 2024

  25. [33]

    A.; Cheng, T.; Zhang, J.; Gindulyte, A.; Bolton, E

    Kim, S.; Thiessen, P. A.; Cheng, T.; Zhang, J.; Gindulyte, A.; Bolton, E. E. PUG - View : programmatic access to chemical annotations integrated in PubChem . Journal of Cheminformatics 2019, 11, 56

  26. [34]

    https://github.com/mcs07/CIRpy

    mcs07/ CIRpy : Python wrapper for the NCI Chemical Identifier Resolver ( CIR ). https://github.com/mcs07/CIRpy

  27. [35]

    2024; https://github.com/cleanlab/cleanlab, original-date: 2018-05-11T01:55:21Z

    cleanlab. 2024; https://github.com/cleanlab/cleanlab, original-date: 2018-05-11T01:55:21Z

  28. [36]

    Detecting Errors in Numerical Data via any Regression Model

    Zhou, H.; Mueller, J.; Kumar, M.; Wang, J.-L.; Lei, J. Detecting Errors in Numerical Data via any Regression Model. ICML Workshop on Data-centric Machine Learning Research. 2023

  29. [37]

    Model-agnostic label quality scoring to detect real-world label errors

    Kuan, J.; Mueller, J. Model-agnostic label quality scoring to detect real-world label errors. ICML DataPerf Workshop. 2022

  30. [38]

    Riniker, S.; Landrum, G. A. Open-source platform to benchmark fingerprints for ligand-based virtual screening. Journal of Cheminformatics 2013, 5, 26

  31. [39]

    M.; Sayle, R

    O’Boyle, N. M.; Sayle, R. A. Comparing structural fingerprints using a literature-based similarity benchmark. Journal of Cheminformatics 2016, 8, 36

  32. [40]

    Riniker, S.; Fechner, N.; Landrum, G. A. Heterogeneous Classifier Fusion for Ligand - Based Virtual Screening : Or , How Decision Making by Committee Can Be a Good Thing . Journal of Chemical Information and Modeling 2013, 53, 2829--2836, Publisher: American Chemical Society

  33. [41]

    DeepTox : Toxicity Prediction using Deep Learning

    Mayr, A.; Klambauer, G.; Unterthiner, T.; Hochreiter, S. DeepTox : Toxicity Prediction using Deep Learning . Frontiers in Environmental Science 2016, 3, Publisher: Frontiers

  34. [42]

    Profiling Prediction of Kinase Inhibitors : Toward the Virtual Assay

    Merget, B.; Turk, S.; Eid, S.; Rippmann, F.; Fulle, S. Profiling Prediction of Kinase Inhibitors : Toward the Virtual Assay . Journal of Medicinal Chemistry 2017, 60, 474--485, Publisher: American Chemical Society

  35. [43]

    A.; Fulle, S.; Merget, B

    Sorgenfrei, F. A.; Fulle, S.; Merget, B. Kinome- Wide Profiling Prediction of Small Molecules . ChemMedChem 2018, 13, 495--499

  36. [44]

    Efficient Estimation of Word Representations in Vector Space

    Mikolov, T.; Chen, K.; Corrado, G.; Dean, J. Efficient Estimation of Word Representations in Vector Space . 2013; http://arxiv.org/abs/1301.3781, arXiv:1301.3781 [cs]

  37. [45]

    Extended- Connectivity Fingerprints

    Rogers, D.; Hahn, M. Extended- Connectivity Fingerprints . Journal of Chemical Information and Modeling 2010, 50, 742--754, Publisher: American Chemical Society

  38. [46]

    Repurposed drugs and nutraceuticals targeting envelope protein: A possible therapeutic strategy against COVID -19

    Das, G.; Das, T.; Chowdhury, N.; Chatterjee, D.; Bagchi, A.; Ghosh, Z. Repurposed drugs and nutraceuticals targeting envelope protein: A possible therapeutic strategy against COVID -19. Genomics 2021, 113, 1129--1140

  39. [47]

    Identifying Structure – Property Relationships through SMILES Syntax Analysis with Self - Attention Mechanism

    Zheng, S.; Yan, X.; Yang, Y.; Xu, J. Identifying Structure – Property Relationships through SMILES Syntax Analysis with Self - Attention Mechanism . Journal of Chemical Information and Modeling 2019, 59, 914--923, Publisher: American Chemical Society

  40. [48]

    Fried, Z. T. P.; Lee, K. L. K.; Byrne, A. N.; McGuire, B. A. Implementation of rare isotopologues into machine learning of the chemical inventory of the solar-type protostellar source IRAS 16293-2422. Digital Discovery 2023, 2, 952--966, Publisher: RSC

  41. [49]

    VICReg : Variance - Invariance - Covariance Regularization for Self - Supervised Learning

    Bardes, A.; Ponce, J.; LeCun, Y. VICReg : Variance - Invariance - Covariance Regularization for Self - Supervised Learning . 2022; http://arxiv.org/abs/2105.04906, arXiv:2105.04906 [cs]

  42. [50]

    Pushing the Boundaries of Molecular Representation for Drug Discovery with the Graph Attention Mechanism

    Xiong, Z.; Wang, D.; Liu, X.; Zhong, F.; Wan, X.; Li, X.; Li, Z.; Luo, X.; Chen, K.; Jiang, H.; Zheng, M. Pushing the Boundaries of Molecular Representation for Drug Discovery with the Graph Attention Mechanism . Journal of Medicinal Chemistry 2020, 63, 8749--8760, Publisher: ...

  43. [51]

    Analyzing Learned Molecular Representations for Property Prediction

    Yang, K.; Swanson, K.; Jin, W.; Coley, C.; Eiden, P.; Gao, H.; Guzman-Perez, A.; Hopper, T.; Kelley, B.; Mathea, M.; Palmer, A.; Settels, V.; Jaakkola, T.; Jensen, K.; Barzilay, R. Analyzing Learned Molecular Representations for Property Prediction . Journal of Chemical Inform...

  44. [52]

    Correction to Analyzing Learned Molecular Representations for Property Prediction

    Yang, K.; Swanson, K.; Jin, W.; Coley, C.; Eiden, P.; Gao, H.; Guzman-Perez, A.; Hopper, T.; Kelley, B.; Mathea, M.; Palmer, A.; Settels, V.; Jaakkola, T.; Jensen, K.; Barzilay, R. Correction to Analyzing Learned Molecular Representations for Property Prediction . Journal of C...

  45. [53]

    B.; Hodas, N

    Goh, G. B.; Hodas, N. O.; Siegel, C.; Vishnu, A. SMILES2Vec : An Interpretable General - Purpose Deep Neural Network for Predicting Chemical Properties . 2018; http://arxiv.org/abs/1712.02034, arXiv:1712.02034 [stat]

  46. [54]

    ChemBERTa : Large - Scale Self - Supervised Pretraining for Molecular Property Prediction

    Chithrananda, S.; Grand, G.; Ramsundar, B. ChemBERTa : Large - Scale Self - Supervised Pretraining for Molecular Property Prediction . 2020; http://arxiv.org/abs/2010.09885, arXiv:2010.09885

  47. [55]

    Mol- BERT : An Effective Molecular Representation with BERT for Molecular Property Prediction

    Li, J.; Jiang, X. Mol- BERT : An Effective Molecular Representation with BERT for Molecular Property Prediction . Wireless Communications and Mobile Computing 2021, 2021, 7181815

  48. [56]

    Large- Scale Chemical Language Representations Capture Molecular Structure and Properties

    Ross, J.; Belgodere, B.; Chenthamarakshan, V.; Padhi, I.; Mroueh, Y.; Das, P. Large- Scale Chemical Language Representations Capture Molecular Structure and Properties . 2022; http://arxiv.org/abs/2106.09553, arXiv:2106.09553 [cs]

  49. [57]

    G.; Jung, G.; Cole, J

    Jung, S. G.; Jung, G.; Cole, J. M. Gradient boosted and statistical feature selection workflow for materials property predictions. The Journal of Chemical Physics 2023, 159, 194106

  50. [58]

    G.; Jung, G.; Cole, J

    Jung, S. G.; Jung, G.; Cole, J. M. Automatic Prediction of Molecular Properties Using Substructure Vector Embeddings within a Feature Selection Workflow . Journal of Chemical Information and Modeling 2024, 65, 133--152

  51. [59]

    Functionality pattern matching as an efficient complementary structure/reaction search tool: an open-source approach

    Haider, N. Functionality pattern matching as an efficient complementary structure/reaction search tool: an open-source approach. Molecules (Basel, Switzerland) 2010, 15, 5079--5092

  52. [60]

    A Density - Based Algorithm for Discovering Clusters in Large Spatial Databases with Noise

    Ester, M.; Kriegel, H.-P.; Sander, J.; Xu, X. A Density - Based Algorithm for Discovering Clusters in Large Spatial Databases with Noise . In: Proceedings of the 2nd International Conference on Knowledge Discovery and Data Mining, Portland, OR, AAAI Press 1996, 226--231, In: P...

  53. [61]

    P.; Xu, X

    Schubert, E.; Sander, J.; Ester, M.; Kriegel, H. P.; Xu, X. DBSCAN Revisited , Revisited : Why and How You Should ( Still ) Use DBSCAN . ACM Trans. Database Syst. 2017, 42, 19:1--19:21

  54. [62]

    Tree- Structured Parzen Estimator : Understanding Its Algorithm Components and Their Roles for Better Empirical Performance

    Watanabe, S. Tree- Structured Parzen Estimator : Understanding Its Algorithm Components and Their Roles for Better Empirical Performance . 2023; http://arxiv.org/abs/2304.11127, arXiv:2304.11127

  55. [63]

    Snoek, J.; Larochelle, H.; Adams, R. P. Practical Bayesian Optimization of Machine Learning Algorithms . 2012; http://arxiv.org/abs/1206.2944, arXiv:1206.2944

  56. [64]

    Banchero, M.; Manna, L. Comparison between Multi - Linear - and Radial - Basis - Function - Neural - Network - Based QSPR Models for The Prediction of The Critical Temperature , Critical Pressure and Acentric Factor of Organic Compounds . Molecules : A Journal of Synthetic Che...

  57. [65]

    V.; Sushko, Y.; Novotarskyi, S.; Patiny, L.; Kondratov, I.; Petrenko, A

    Tetko, I. V.; Sushko, Y.; Novotarskyi, S.; Patiny, L.; Kondratov, I.; Petrenko, A. E.; Charochkina, L.; Asiri, A. M. How Accurately Can We Predict the Melting Points of Drug -like Compounds ? Journal of Chemical Information and Modeling 2014, 54, 3320--3329, Publisher: America...

  58. [66]

    sWE䮨 &HHܳȌ犈? _o_|? G|W |W CK ׃/__ ۿm w s<S] ǥw k 5 ;s Ꮖ ]5y?=n hH ; ) =ۿHGG;)+BL=;4A|O &>

    McDonagh, J. L.; van Mourik, T.; Mitchell, J. B. O. Predicting Melting Points of Organic Molecules : Applications to Aqueous Solubility Prediction Using the General Solubility Equation . Molecular Informatics 2015, 34, 715--724 mcitethebibliography main.tex00006640000000000000...

Pith tools

Reviewed August 15, 2026 · model on record in the stance chip above.