- 博客(28)
- 收藏
- 关注
转载 makefile使用
makefile葵花宝典_Met-ShiZi的博客-优快云博客什么是makefile?或许很多Winodws的程序员都不知道这个东西,因为那些Windows的IDE都为你做了这个工作,但我觉得要作一个好的和professional的程序员,makefile还是要懂。这就好像现在有这么多的HTML的编辑器,但如果你想成为一个专业人士,你还是要了解HTML的标识的含义。特别在Unix下的软件编译,你就不能不自己写makefile了,会不会写makefile,从一https://blog.youkuaiyun.com/yr
2022-02-15 09:27:24
88
原创 docker常用命令(持续更新......)
docker images 列出本地docker镜像docker images -qa 只列出镜像iddocker search ubuntu 搜索ubuntu镜像docker search --limit 5 ubuntu 只列出5个Ubuntu镜像docker search ubuntu --filter "is-official=true" 搜索是官方的ubuntu镜像docker search ubu.
2022-02-10 14:05:08
676
原创 pytorch使用多GPU
# 查看几块GPUimport torchprint(torch.cuda.device_count())# 查看显卡配置信息nvidia-smi# 单主机多块GPU使用device = torch.device("cuda:0" if torch.cuda.is_avaliable() else :"cpu")device0 = torch.device("cuda:0")device1 = torch.device("cuda:1")net = torch.nn.DataPar.
2021-12-25 13:17:04
1132
原创 opencv-C++调用torch-python训练好的网络
# 自己的模型为:modeltraced_script_module = torch.jit.trace(model, src_inp)traced_script_module.save("model.pt")
2021-12-15 09:45:16
4564
原创 ubuntu修改默认python版本
sudo update-alternatives --install /usr/bin/python python /usr/bin/python2 1sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 2#1和2为优先级sudo update-alternatives --config python#这个指令可以切换任意一个版本为默认版本。...
2021-12-10 16:39:03
1302
原创 linux常用命令
1)查看文件类型:file file_namefile dir_name2)查找文件:find PATH -name FILENAMEeg: find / -name test.cppwhich file_namewhereis file_name3)文件压缩和打包:gzip/gunzip:压缩和解压缩单个文件eg: gzip test.cpp # 压缩文件以.gz结尾gunzip test.cpp.gztar: 能将整个目录打包eg: tar -zcvf.
2021-12-07 20:29:16
556
原创 kaggle的猫狗分类
import osimport numpy as npfrom PIL import Imageimport torch.nn.functional as Fimport torch.optim as optimimport torchimport torch.nn as nnimport torch.nn.parallelimport torch.optimimport torch.utils.datafrom torch.utils.data import Dataset, Dat.
2021-12-06 19:59:35
347
原创 linux-bash脚本
第一行添加解释器的路径:#!/bin/bash检测脚本中的语法错误: bash -n /shell_file调试执行: bash -x /shell_file
2021-12-04 14:38:03
1045
原创 conda创建和删除环境
# 检查当前conda版本conda -V# 查看已有的虚拟环境conda env list# 创建虚拟环境conda create -n env_name python=x.x# 删除虚拟环境conda remove -n env_name --all# 激活虚拟环境conda activate env_name# 关闭虚拟环境conda deactivate# 切换环境conda -n env_name# 关闭自动打开的虚拟环境conda config -.
2021-11-29 15:19:08
675
原创 常用资源连接
(1)文献翻译工具,HammerPDF,支持win,Mac,Linux:https://github.com/HammerPDF/Smart-Scientific-Reader/releases
2021-11-25 19:59:21
210
原创 图像分类、目标检测、图像分割----简介
1)图像分类:公开数据集: (1)MNIST:10个类别,手写数字体数据集,6万条训练数据和1万条测试数据,28*28的灰度图; (2)FashionMNIST:10个类别,6万条训练数据和1万条测试数据,28*28的灰度图,衣服、裤子、鞋子等; (3)CIFAR10:10个类别,5万条训练数据和1万条测试数据,32*32彩色图,飞机、汽车、猫、狗等; (4...
2021-11-25 19:22:55
3083
原创 Qt5.12用cout输出
#include <QtCore/QCoreApplication>#include <QTextStream>static QTextStream cout(stdout, QIODevice::WriteOnly);int main(int argc, char *argv[]){ QCoreApplication a(argc, argv); cout << "Hello World." << endl; retu.
2021-11-21 12:26:55
1428
原创 gitee和github绑定
# 把本地库和远程的gitee关联git remote add gitee xxxxx(gitee地址)# 把本地库和远程的github关联git remote add github xxxx(github地址)# 查看关联库信息git remote -v# 推送到githubgit push github master# 推送到giteegit push gitee master...
2021-11-20 13:04:46
532
原创 git标签
# git标签 tag 就是版本号,可避免像序列号那样,难以记住,类似于ip地址和域名的关系,通过dns服务器解析# 创建新标签git tag v1.0# 查看所有标签git tag# 给之前提交的文件加上版本git tag v0.9 序列号# 查看标签信息git show v1.0# 删除标签git tag -d v1.0# 推送某个标签到远程git push origin v1.0# 一次性将本地未推送到远程的标签都推送到远程git push origin --t.
2021-11-20 12:48:51
73
原创 git分支
# 创建分支dev并切换到分支devgit checkout -b dev # 相当于 git branch dev + git checkout dev# 查看当前分支git branch# 切换分支git branch xxx# 在新的分支上添加的信息在其他分支上看不到,除非将该分支合并到其他的分支,# 合并命令,将dev分支合并到当前分支git merge dev# 删除分支 devgit branch -d dev# 因为 git checkout -- xxx.t.
2021-11-20 12:23:59
64
原创 git初始化
1)用户设置,添加姓名和邮箱:git config --global user.name "fancy_git"git config --global user.email "1528048607@qq.com"2)给常用命令设置缩写:git config --global alias.co checkoutgit config --global alias.br branchgit config --global alias.st statusgit config --global
2021-11-19 16:27:17
97
原创 ubuntu登陆连接服务器
登陆:ssh root@123.60.110.153本地文件----> 服务器:scp /LocalPath root@123.60.110.153:/serverPath服务器文件----->本地:scproot@123.60.110.153:/serverPath/LocalPath本地文件夹----->服务器:scp -r /LocalPath root@123.60.110.153:/serverPath服务器文件夹---->本地:scp -r root@..
2021-11-16 21:21:07
930
原创 Vim基础入门
键盘控制方向健: kh l jW:即Word,逐个广义单词移动,没有其他字符分开的为广义字符,如def_fancy(greeen),def_fancy为一个广义单词w: word,逐个狭义单词移动E:Ende: endB:Begine: begin{ : 移向前一个段落;}: 移向后一个段落;段落是以空行为区分的。cc:清除整行,然后进入插入模式dd:删除整行;u:撤销最后一次动作;: h cc,该命令用来查找c...
2021-11-15 16:13:42
199
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人