博文

目前显示的是 十一月, 2023的博文

EART60061 Measuring and Predictiong

Measuring and Prediction 1 Introduction 本课程为Measuring and Prediction 的第一部分,旨在定义与衡量污染物流动性和转型有关的技能与技能的一般过程,为了独立项目作准备。 Intended Learning Outcome ILO1 Recognise generic processes of research and be able to identify  "good" research    #什么是一个好的研究 ILO2 Make their measurements meaningful and recognise the quality of those made by others – quantification and propagation of error    #误差与置信度 ILO3 Design a sampling strategy by applying understanding of variability    #可变性与采样策略 ILO4 Select appropriate techniques for measurement by applying knowledge of how instruments work    #选择适当的技术 ILO5 Apply a process of mathematical model development to understanding a simple environmental system    #从数学模型到环境系统 ILO6 Evaluate whether written arguments are logical and ordered correctly    #论点评估

Flag

图片
立一个flag:把四门课的思维导图和学习笔记更新到blog里面

DeepFaceLab的应用

图片
 心血来潮再更新一点DeepFaceLab的内容 这东西套路比较固定,而且自己的操作空间比较大,所以讲起来也比较简单,具体的操作步骤全部来源于Github上面下载的版本,不对任何打包版本负责。 第一节:下载与安装 https://github.com/iperov/DeepFaceLab 页面在这儿,找到Windows版本的releases。这时会发现有三种类型的压缩包: 如果是NV30系显卡就下载RTX3000版本,30系以下的版本就用最下面那个版本,如果是其他显卡就用上面的DX12的版本,确定自己的显卡版本之后就可以下载了 下载下来是一个压缩包,找到自己硬盘里的一块风水宝地直接解压缩进去。通过解压缩之后里面出现很多bat文件。随便点击一个发现可以运行,那么恭喜你已经完成下载与安装了。 第二节: 待更新

EART60071 Practical Computer language

The note of computer language 1. When we located at the campus internet environmental, I can use the cmd to connect the server. ssh <username>@130.88.00.00 sftp  2. Download the code git clone http://github.com/<Project> 3. Access the dictory file cd <dictoryname> 4. View and Edit the file use nano editor nano -l <Filename> 5. Run the code Python3 <Filename> #the result will automatically store at server computer 4. Get the result   #The result will located at /tmp/<username>, first I need get the file name to use SFTP service to download the File ls /tmp/<username>  #SFTP get /tmp/<username>/<filename>   #File will automaticly download to local computer, located at C:\Users\<username> 5. Other command   5.1 Delate the file   #If the tmp file is not empty, use the code below to empty the tmp file rm -rf /tmp/<username>   #rm means remove, use as rm <filename or dirctory>, rm -rf meams delate the file or directorie