一键导入
mlip-active-learning
Active learning loops for MLIPs using uncertainty-biased configuration selection and DFT query oracle simulation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Active learning loops for MLIPs using uncertainty-biased configuration selection and DFT query oracle simulation.
用 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.
Implementing Delta-ML (residual learning between low and high levels of theory) and model transfer learning.
Optimizing molecular feature weights and performing feature selection via Differentiable Information Imbalance (DII).
| name | mlip_active_learning |
| description | Active learning loops for MLIPs using uncertainty-biased configuration selection and DFT query oracle simulation. |
Use this skill when attempting to train highly robust Machine Learning Interatomic Potentials (MLIP) with minimal DFT data. Active Learning (AL) automatically guides data collection to regions where the potential is most uncertain (e.g. bond-breaking conformations, transition states).
graph TD
Train[Train Ensemble of Potentials] --> MD[Run Exploratory Dynamics]
MD --> UQ[Estimate Force Variance per Frame]
UQ --> Check{Variance > Threshold?}
Check -- Yes --> DFT[Calculate DFT Ground Truth]
DFT --> Augment[Augment Training Dataset]
Augment --> Train
Check -- No --> Run[Deploy Robust Potential]
Run the active learning loop script to see how the model error decreases over multiple query iterations:
python scripts/active_learning_loop.py --al_iterations 3 --query_threshold 0.5