网站首页 文章专栏
博客的几次变迁
介绍了写博客的历史以及所用的工具<!-- more -->大概是从2017年的年末开始写文章的。<br>当时在某公司实习,碰到不太懂的技术问题需要搜索,然后自己消化吸收。这期间看了很多很多博客
介绍一家公司
deepsig company简介<!-- more -->在https://arxiv.org/abs/1702.00832 上下载到他们的文章在 gnuradio.org上也有文章,这个网站
git常用命令与解释
曾经使用过的比较实用的命令<!-- more -->## 推送不同名的本地分支到远程分支 git push remote localBranchName:remoteBranchName
markdown语法
一些markdown语法记录<!-- more -->- 标题 #- 无序表 -- 有序表 1. 2. 3.- 引用 >- 代码块 方案1. 缩进四个空格或者一个制表符,代码块与上
使用公钥作为密码
碰到过的关于公钥的问题<!-- more -->## 设置了pass phrase后嫌麻烦,又该怎样去除呢?首先进入私钥所在目录 cd ~/.ssh/然后使用ssh-keygen
python argparse 无法传递bool
## 问题详述在使用argparse时发现无法传递bool型变量,无论命令行输入True还是False,解析出来之后都是True,代码如下<!-- more --> parser = a
python argparse模块使用
在研究TensorFlow代码时发现广泛存在着argparse模块的使用,所以简单地学习下如何使用该模块。<!-- more --># 指定参数、可选参数与未解析参数的混合使用 impo
vscode无法跳转到定义
# 问题描述在vscode中没有办法通过 ctrl + 左键 跳转到函数定义,使用的语言为python<!-- more --># 问题解决google该问题,发现在 [这里][1]有类似
Could not find a version that satisfies the requirement tensorflow (from versions: )
## 安装TensorFlow时碰到如下问题<!-- more -->* Could not find a version that satisfies the requirement ten
tensorflow timeout错误
## 解决了Could not find a version that satisfies the..., 出现socket.timeout错误<!-- more -->### 问题描述*