fmujie 发布的文章

WAMP&Laravel:cURL error 60: SSL certificate problem: unable to get local issuer certificate


WAMP&Laravel:cURL error 60: SSL certificate problem: unable to get local issuer certificate"message": "cURL error 60: SSL certificate problem: unable to get local issuer certificate (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://api.weixin.qq.com/sns/jscode2session?appid=wxf8b9dbefc889bcaf&secret=3ed00514cbe0a52c6d708a76ba318acd&js_code=0e3zkmFa1Xrd2I0e6lIa...

Python"傻瓜式"处理PPT


业界有一句话,Python除了不能生孩子,其他的都能做。最近处理模型的热图,需要将有无损失函数的图片生成然后放到PPT里去对比,从百十个类别中挑图就很费时间了,调完还需要贴到PPT里,我开始是把每个类别中比较好的图片名记下来,应该当时直接复制到PPT里的,但想着统计一下嘛,后来还得根据类名+图片名从源文件夹中挑,当然,挑了一阵子我感觉不能这么干,还得写个脚本让它自己挑如下:import os import shutil txt_path = "./contrastive.txt" with open(txt_path, 'r', encoding='utf-8') as file: for line in file: print(line.strip()) split_list = line.st...

Linux常用命令-目录操作类


常用命令[root@fmujieserver bin]# ls -l /bin/ | grep sh #列表形式展示 bin目录下所有带sh的项目 -rwxr-xr-x. 1 root root 964536 Apr 1 2020 bash lrwxrwxrwx. 1 root root 10 Nov 17 2022 bashbug -> bashbug-64 -rwxr-xr-x. 1 root root 6964 Apr 1 2020 bashbug-64 -rws--x--x 1 root root 23880 Feb 3 2021 chsh -rwxr-xr-x. 1 root root 11576 Aug 2 2017 fipshmac -rwxr-x...

脚本辅助消融实验


常规来说,模型的train.py文件里会用argparse这个包,parser.add_argument()给模型规定一些数据集名称,还有一些超参的值。调试的时候一般在pycharm里手动改,平常训练,我一般就python train.py再或者后台挂起nohup python train.py > outXXX.log &但即使是后台挂起,不用维持SSH连接(一般是xshell SSH连集群),让你电脑可以关机(不会有人用自己电脑的显卡跑AI吧,这有点太伤了,比挖矿还难受。),但是在消融实验和对比实验的时候仍然不方便,这时候,用个脚本,让它自动检测显卡有没有被占用(每隔一段时间,我设的1分钟),然后没被占用就跑实验,占用就等待,这样可以不用随时盯着,即使是知道了大概时间,有时候也会忘掉,而且有时候它是半夜才停,别问我怎么知道的,我之前还定了闹钟...

Linux系统管理


[root@fmujieserver ~]# ls /usr/sbin/ | grep service service [root@fmujieserver ~]# service network start基本语法service 服务名 start|stop|resart|status经验技巧查看服务的方法:etc/init.d/服务名/////.d(守护进程)[root@fmujieserver /]# cd etc/init.d [root@fmujieserver init.d]# ls bt functions ifritd jdog_service mysqld netconsole network nginx php-fpm-72 pure-ftpd README redis [root@fmujieserver init....

召唤看板娘