一键导入
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.