MLIP-3主动机器学习方法探索

INPUT文件

此文件中包含15个文件,逐个分析他们的功能

Cu_1620.data:LAMMPS的初始文件需要搭配in文件一起使用
README.md:解释文件,解释各个文件的功能以及操作流程
VASP/:文件夹
auto.sh:执行最主要的文件
coord.py
fill_with_vacuum.py
in.my:LAMMPS的初始文件需要搭配data文件一起使用
init.almtp
md_al_mtp.sh
pot_save/
pre_train.sh
run_lammps.sh
select.sh
train.sh
train_one.cfg

VASP/文件夹(里面的文件就是满足完成一个POSCAR的AIMD模拟)

 INCAR
 KPOINTS
 POTCAR
 README.md
 run_vasp.sh:提交任务的脚本文件
 sub.sh:提交脚本任务的脚本

auto.sh

#!/bin/bash  # 指定该脚本使用的解释器为 Bash。cp init.almtp curr.almtp 
cp train_one.cfg train.cfg
cp Cu_1620.data dump.trjis_training_finished=0sbatch -J pre_train -o pre_train.out -e pre_train.err  -N 1 --exclusive -p high,MMM ./pre_train.sh --time=3:00:00 
#用于在Slurm作业调度系统中提交一个作业,并运行名为pre_train.sh的脚本。
#这个脚本的功能就是进行一次主动学习势能训练,用上面三个文件while [ $is_training_finished -ne 1 ]
dosleep 5if [ -f is_training_finished.txt ]; thenis_training_finished=1echo $is_training_finishedelseis_training_finished=0echo $is_training_finishedfi
done
sleep 5
rm -f *.txt#判断上面的训练是否完成,并重置for p in $(seq 1621 3000)
doecho "# LAMMPS data file written by OVITO Basic 3.7.11" > Cu_${p}.dataecho "${p} atoms" >> Cu_${p}.dataprev=$((${p}-1))cat Cu_${prev}.data | tail -n +3 | head -n 11 >> Cu_${p}.datacat dump.trj | tail -n ${prev} >> Cu_${p}.datapython coord.py $p
#更新原子坐标信息echo "active learning with ${p} atoms is starting"./md_al_mtp.sh
#执行一系列操作cp dump.trj pot_save/cp train.cfg pot_save/cd pot_savemv dump.trj dump_${p}.trjmv train.cfg train_${p}.cfgcp curr.almtp curr_${p}.almtpcd ../cp pot_save/curr.almtp .
done

md_al_mtp.sh

#!/bin/bashsource ~/.bashrc
n_cores=$1
rm -f preselected.cfg.*
rm -f preselected.cfg
rm -f selected.cfg
rm -f nbh.cfg
rm -f *.txt
while [ 1 -gt 0 ]
do
cp curr.almtp pot_save/
touch preselected.cfg
is_lammps_finished=0
sbatch -J lammps -o lammps.out -e lammps.err  -N 1 -n 16 -p high,MMM ./run_lammps.sh
while [ $is_lammps_finished -ne 1 ]
dosleep 5if [ -f is_lammps_finished.txt ]; thenis_lammps_finished=1echo $is_lammps_finishedelseis_lammps_finished=0echo $is_lammps_finishedfi
done
sleep 5
cat preselected.cfg.* >> preselected.cfg
rm -f preselected.cfg.*
n_preselected=$(grep "BEGIN" preselected.cfg | wc -l)
is_selection_finished=0
if [ $n_preselected -gt 0 ]; thenecho "selection"sbatch -J selection -o selection.out -e selection.err  -N 1 -n 1 -p bigmem ./select.shwhile [ $is_selection_finished -ne 1 ]dosleep 5if [ -f is_selection_finished.txt ]; thenis_selection_finished=1echo $is_selection_finishedelseis_selection_finished=0echo $is_selection_finishedfidonesleep 5if test -f selected.cfg; thenecho " selected.cfg exists"elseecho "selected.cfg not exist"exitfirm -f preselected.cfg./mlp cut_extrapolative_nbh selected.cfg nbh.cfg --cutoff=8 ./mlp convert nbh.cfg POSCAR --output_format=poscar rm -f selected.cfgn_poscar=$(grep "BEGIN" nbh.cfg | wc -l)n_poscar_prev=$((${n_poscar}-1))if [ $n_poscar -eq 1 ]; thenmv POSCAR POSCAR0fifor p in $(seq 0 ${n_poscar_prev})dopython fill_with_vacuum.py $pdonefor ((i=0; i<$n_poscar; i++))docp POSCAR_output"$i" VASP/mkdir -p VASP/"$i"if [ $n_poscar -eq 1 ]; thenmv VASP/POSCAR_output"$i" VASP/0/POSCARelif [ $n_poscar -gt 1 ]; thenmv VASP/POSCAR_output"$i" VASP/"$i"/POSCARficp VASP/POTCAR VASP/"$i"/cp VASP/INCAR VASP/"$i"/cp VASP/KPOINTS VASP/"$i"/cp VASP/run_vasp.sh VASP/"$i"/cp VASP/sub.sh VASP/"$i"/donefor ((i=0; i<$n_poscar; i++))docd VASP/"$i"sbatch ./run_vasp.shcd ../../doneis_vasp_finished=0while [ $is_vasp_finished -ne 1 ]dosleep 5n_vasp_finished=$(grep -rH "1" VASP/*/is_vasp_finished.txt | wc -l)if [ $n_poscar -eq $n_vasp_finished ]; thenis_vasp_finished=1echo $is_vasp_finishedelseis_vasp_finished=0echo $is_vasp_finishedfidonesleep 5for ((i=0; i<$n_poscar; i++))do./mlp convert VASP/"$i"/OUTCAR VASP/"$i"/calculated.cfg --input_format=outcar #--elements_order=29 --absolute_elementscat VASP/"$i"/calculated.cfg >> train.cfgrm -r VASP/"$i"/doneis_training_finished=0sbatch -J train -o train.out -e train.err  -N 1 --exclusive -p high,MMM ./train.sh --time=3:00:00while [ $is_training_finished -ne 1 ]dosleep 5if [ -f is_training_finished.txt ]; thenis_training_finished=1echo $is_training_finishedelseis_training_finished=0echo $is_training_finishedfidonesleep 5rm -f nbh.cfgrm *.txtrm POSCAR*rm -f nbh_36.cfg    
elif [ $n_preselected -eq 0 ]; thenexit
fidone

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/8800.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Ubuntu下halcon软件的下载安装

由于工作需求&#xff0c;点云配准需要使用halcon进行实现&#xff0c;并且将该功能放入QT界面中 1.下载halcon 进入halcon官网进行下载 官网链接&#xff1a;https://www.mvtec.com/products/halcon/ 注意&#xff1a;要注册登陆之后才能进行下载 接着点击Downloads->H…

MouseBoost PRO mac中文激活版:专业鼠标助手

MouseBoost PRO mac鼠标性能优化软件&#xff0c;以其强大的功能和智能化的操作&#xff0c;助您轻松驾驭鼠标&#xff0c;提高工作效率。 MouseBoost PRO支持自定义快捷键设置&#xff0c;让您轻松实现快速切换应用程序、打开特定文件、调节音量大小等操作。自动识别窗口功能则…

达梦 定义水平分区表

水平分区包括范围分区、哈希分区和列表分区三种。水平分区表的创建需要通过 <PARTITION 子句>指定。 范围&#xff08;RANGE&#xff09;分区&#xff0c;按照分区列的数据范围&#xff0c;确定实际数据存放位置的划分方式。 列表&#xff08;LIST&#xff09;分区&a…

240多道!Go开发岗位面试题合集(含答案)

随着今年互联网寒潮环境的影响&#xff0c;找工作的人也将达到顶峰&#xff0c;今天给大家分享一份《Go开发工程师超高频面试真题》&#xff0c;一共有240多道面试真题&#xff0c;希望能够帮助大家在面试中&#xff0c;少走一些弯路、更快拿到offer&#xff01; 内容展示 GO 基…

Dreamweaver 2021 for Mac 激活版:网页设计工具

在追求卓越的网页设计道路上&#xff0c;Dreamweaver 2021 for Mac无疑是您的梦幻之选。这款专为Mac用户打造的网页设计工具&#xff0c;集强大的功能与出色的用户体验于一身。 Dreamweaver 2021支持多种网页标准和技术&#xff0c;让您能够轻松创建符合现代网页设计的作品。其…

论文精度-Attention Is All You Need

文章目录 论文精读-Transformer(Attention is All You Need)1.Transformer 整体结构2. Transformer 的输入2.1 单词 Embedding2.2 位置 Embedding3. Self-Attention(自注意力机制)3.1 Self-Attention 结构3.2 Q, K, V 的计算3.3 Self-Attention 的输出3.4 Multi-Head Attent…

[Algorithm][BFS][拓扑排序][课程表][课程表Ⅱ][火星词典] + BFS解决拓扑排序原理 详细讲解

目录 0.原理讲解1.有向无环图2.AOV网3.拓扑排序4.实现拓扑排序5.如何建图&#xff1f; 1.课程表1.题目链接2.算法原理详解3.代码实现 2.课程表 II1.题目链接2.算法原理详解3.代码实现 3.火星词典1.题目链接2.算法原理详解3.代码实现 0.原理讲解 1.有向无环图 有向无环图&#…

基于Django图像识别系统毕业设计(付源码)

前言&#xff1a;Django是一个由Python编写的具有完整架站能力的开源Web框架&#xff0c;Django本身基于MVC模型&#xff0c;即Model&#xff08;模型&#xff09;View&#xff08;视图&#xff09; Controller&#xff08;控制器&#xff09;设计模式&#xff0c;因此天然具有…

AR技术的那些事

什么是AR技术&#xff1f; AR技术&#xff0c;全称为增强现实技术&#xff08;Augmented Reality&#xff09;&#xff0c;是一种将虚拟信息叠加到现实世界中的技术。通过AR技术&#xff0c;用户可以通过手机、平板电脑、AR眼镜等设备&#xff0c;将虚拟的数字内容&#xff08;…

【抽样调查】分层抽样上

碎碎念&#xff1a;在大一大二时听课有的时候会发现听不太懂&#xff0c;那时候只觉得是我自己的基础不好的原因&#xff0c;但现在我发现“听不懂”是能够针对性解决的。比如抽样调查这门课&#xff0c;分析过后我发现我听不懂的原因之一是“没有框架”&#xff0c;一大堆知识…

【使用ChatGPT的API之前】OpenAI API提供的可用模型

文章目录 一. ChatGPT基本概念二. OpenAI API提供的可用模型1. InstructGPT2. ChatGPT3. GPT-4 三. 在OpenAI Playground中使用GPT模型-ing 在使用GPT-4和ChatGPT的API集成到Python应用程序之前&#xff0c;我们先了解ChatGPT的基本概念&#xff0c;与OpenAI API提供的可用模型…

情感分类学习笔记(1)

文本情感分类&#xff08;二&#xff09;&#xff1a;深度学习模型 - 科学空间|Scientific Spaces 一、代码理解 cw lambda x: list(jieba.cut(x)) #定义分词函数 您给出的代码定义了一个使用 jieba 分词库的分词函数。jieba 是一个用于中文分词的 Python 库。该函数 cw 是…

03_led_horse_run_v0 跑马灯

03_led_horse_run_v0 在Verilog中实现跑马灯通常涉及到使用一个计数器来控制LED灯的亮灭顺序。 跑马灯是一种常见的电子显示方式&#xff0c;它通过控制多个LED灯的顺序点亮&#xff0c;形成一种动态的视觉效果&#xff0c;看起来就像灯在“跑”一样。 知识点&#xff1a; 移…

FTTR介绍

概念 FTTR&#xff08;Fiber to The Room&#xff09;是一种新型的光纤接入技术&#xff0c;它将光纤信号传输到室内的一个通信网络方案。在FTTR网络中&#xff0c;光纤到达建筑物内的分配盒后&#xff0c;通过铜缆或其他传输介质进入室内各个房间&#xff0c;为用户提供网络服…

Java面试八股文(SpringCloud篇)

****************************************************

前端双语实现方案(VUE版)

一、封装一个lib包 结构如下 en.js use strict;exports.__esModule true; exports.default {sp: {input: {amountError: Incorrect amount format},table: {total: Total:,selected: Selected:,tableNoData: No data,tableNoDataSubtext: Tip: Suggest to recheck your fil…

springboot利用Redis的Geo数据类型,获取附近店铺的坐标位置和距离列表

文章目录 GEO介绍GEO命令行应用添加地理坐标位置获取指定单位半径的全部地理位置列表springboot 的实际应用 GEO介绍 在Redis 3.2版本中&#xff0c;新增了一种数据类型&#xff1a;GEO&#xff0c;它主要用于存储地理位置信息&#xff0c;并对存储的信息进行操作。 GEO实际上…

整理好了!2024年最常见 100 道 Java基础面试题(三十七)

上一篇地址&#xff1a;整理好了&#xff01;2024年最常见 100 道 Java基础面试题&#xff08;三十六&#xff09;-CSDN博客 七十三、抽象类是否可以继承具体类&#xff1f; 在Java中&#xff0c;抽象类&#xff08;abstract class&#xff09;可以继承自具体类&#xff08;c…

Unity延时触发的几种常规方法

目录 1、使用协程Coroutine2、使用Invoke、InvokeRepeating函数3、使用Time.time4、使用Time.deltaTime5、使用DOTween。6、使用Vision Timer。 1、使用协程Coroutine public class Test : MonoBehaviour {// Start is called before the first frame updatevoid Start(){ …

使用css的box-reflect属性制作倒影效果

box-reflect 是一个在 CSS 中创建元素倒影效果的非标准属性。尽管它在过去的一些 WebKit 浏览器中&#xff08;如旧版的 Safari 和 Chrome&#xff09;得到了支持&#xff0c;但由于它并未成为 CSS 标准的一部分&#xff0c;因此在现代浏览器中的兼容性较差。以下是对 box-refl…