2019年3月1日

摘要: https://blog.csdn.net/m0_37864814/article/details/82112029 阅读全文
posted @ 2019-03-01 17:09 穷酸秀才大草包 阅读(222) 评论(0) 推荐(0)

2018年12月12日

摘要: 参考:http://www.cnblogs.com/kevingrace/p/6496899.html ssh连接有时候会异常中断,重连后原本运行的程序会中断,要解决这个问题,我们可以使用Linux终端复用神器——Tmux。 ubuntu上可以直接用apt-get安装: sudo apt-get i 阅读全文
posted @ 2018-12-12 09:38 穷酸秀才大草包 阅读(1733) 评论(0) 推荐(0)

2018年12月11日

摘要: 参考:https://www.cnblogs.com/jiu0821/p/9501665.html Tensorflow默认是会占用全部的GPU,而有时候你根本不需要那么占用那么多GPU资源,这时候就可以采用如下三种方法进行解决: 1、在构造tf.Session()时候通过传递tf.GPUOptio 阅读全文
posted @ 2018-12-11 18:45 穷酸秀才大草包 阅读(825) 评论(0) 推荐(0)

2018年12月7日

摘要: 文件大小分割文件时,需要以-C参数指定分割后的文件大小: $ split -C 100M large_file.txt stxt 如上所示,我们将大文件large_file.txt按100M大小进行分割,并指定了分割后文件前缀stxt;当不指定前缀时,split会自动对分割文件进行命名,一般会以x开 阅读全文
posted @ 2018-12-07 14:55 穷酸秀才大草包 阅读(950) 评论(0) 推荐(0)

2018年11月26日

摘要: ZIP/RAR常用压缩/解压操作 阅读全文
posted @ 2018-11-26 17:15 穷酸秀才大草包 阅读(344) 评论(0) 推荐(0)

2018年11月8日

摘要: Void TEncSearch::estIntraPredQT 亮度块的帧内预测入口函数 Void TComPrediction::initAdiPatternChType 获取参考样本点并滤波 Void TComPrediction::predIntraAng 亮度块的帧内预测 Void TEnc 阅读全文
posted @ 2018-11-08 16:02 穷酸秀才大草包 阅读(459) 评论(0) 推荐(0)

2018年10月30日

摘要: 一、背景 由于git上传文件大小受限,所以我们需要使用GIT LFS对大小超过一定上限的大文件进行处理。 二、安装 linux上安装 curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | 阅读全文
posted @ 2018-10-30 16:18 穷酸秀才大草包 阅读(229) 评论(0) 推荐(0)

2018年10月25日

摘要: 问题:在通过MobaXterm进行ssh连接的服务器上用ssh进行git clone出现 fatal: Could not read from remote repository. 解决方法:proxychains git clone xxx 在git clone之前加上proxychains即可。 阅读全文
posted @ 2018-10-25 14:48 穷酸秀才大草包 阅读(2495) 评论(0) 推荐(0)

2018年10月23日

摘要: 1、cd mygit 打开项目文件夹 2、git init 初始化git 3、git remote add origin xxx(远程仓库地址) 添加远程库 git remote -v 查看远程库 4、git add . 添加当前文件夹下的文件 5、git commit -m "the first 阅读全文
posted @ 2018-10-23 18:26 穷酸秀才大草包 阅读(236) 评论(0) 推荐(0)

2018年10月14日

摘要: 1、INTRODUCTION High Efficiency Video Coding(HEVC) <-> H.265 MPEG-4 Advanced Video Coding(AVC) <-> H.264 HEVC比起H.264有两个关键点:提高了视频分辨率并且加大了对并行处理架构的使用。 2、H 阅读全文
posted @ 2018-10-14 20:06 穷酸秀才大草包 阅读(927) 评论(0) 推荐(0)

导航