ワンクリックで
delta-ml-transfer-learning
Implementing Delta-ML (residual learning between low and high levels of theory) and model transfer learning.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Implementing Delta-ML (residual learning between low and high levels of theory) and model transfer learning.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Mitigating the effect of activity cliffs using Triplet Soft Margin (TSM) loss on High-Value Activity Cliff Triplets (HV-ACTs).
Running molecular geometry optimization and molecular dynamics (MD) simulations using ASE and MLIPs.
Generating 3D molecular conformations and preparing input files for quantum chemistry DFT calculations.
Constructing Gaussian output neural networks and training deep ensembles to quantify aleatoric and epistemic uncertainty.
Optimizing molecular feature weights and performing feature selection via Differentiable Information Imbalance (DII).
Active learning loops for MLIPs using uncertainty-biased configuration selection and DFT query oracle simulation.
| name | delta_ml_transfer_learning |
| description | Implementing Delta-ML (residual learning between low and high levels of theory) and model transfer learning. |
Use this skill when attempting to achieve "chemical accuracy" (~1 kcal/mol) for 3D molecular properties (e.g. system energies, dipole moments, solvation free energy) with limited high-fidelity quantum mechanical or experimental data.
Instead of predicting the high-level quantum mechanical (HL) property directly from structure, Delta-ML predicts the residual difference between a cheaply calculated low-level (LL) value (e.g., semi-empirical methods like PM7 or low-basis DFT) and the HL value: $$\Delta = \text{Property}{\text{HL}} - \text{Property}{\text{LL}}$$ The ML model is trained to predict $\Delta$. The final prediction is: $$\text{Property}{\text{HL_Predicted}} = \text{Property}{\text{LL}} + \Delta_{\text{Predicted}}$$ This greatly reduces the learning complexity as the low-level calculation already captures the primary physical interactions.
Run the script delta_transfer_ml.py to compare standard regression, Delta-ML, and transfer learning:
python scripts/delta_transfer_ml.py --epochs 30 --lr 0.01
This showcases predictions of quantum residuals and fine-tuning transitions.