원클릭으로
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.