上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 30 下一页
摘要: 将几个命令通过管道符组合在一起就是一个管道,通常,通过这种方式使用的命令就被称为过滤器。 过滤器会获得输入,通过某种方式修改其内容,然后将其输出。 常用的被用作过滤器使用的命令为: 1.awk 用于文本处理,通常被作为数据提取和报告的工具。 2.cut 用于将每个输入文件的每行的制定部分输出到标准输 阅读全文
posted @ 2019-07-10 16:04 lililili—— 阅读(525) 评论(0) 推荐(0)
摘要: 配置文件 config.properties xxx_yyy_lib_path="路径" xxx_yyy_bin_path="路径" 想通过shell来读入路径,shell中需要附带2个变量xxx,yyy readconfig.sh 还有一个需求,由于xxx是带.的字符串,例如v2.1.0 路径中不 阅读全文
posted @ 2019-07-10 10:46 lililili—— 阅读(3617) 评论(0) 推荐(0)
摘要: https://captain-whu.github.io/DOTA/dataset.html https://github.com/search?q=faster_rcnn_for_DOTA 阅读全文
posted @ 2019-07-09 10:15 lililili—— 阅读(6425) 评论(0) 推荐(0)
摘要: 1.Windows下 启动服务 mysqld --console 或 net start mysql 关闭服务 mysqladmin -uroot shudown 或 net stop mysql mysqld --console 或 net start mysql mysqladmin -uroo 阅读全文
posted @ 2019-07-08 23:06 lililili—— 阅读(737) 评论(0) 推荐(0)
摘要: 你可以把所有的函数存储在一个函数文件中 你可以把所有的文件函数加载到当前脚本或命令行 加载函数文件中所有函数的方法: source xxx.sh 阅读全文
posted @ 2019-07-08 18:02 lililili—— 阅读(1927) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/qq_36684665/article/details/81134179 亲测有用! 阅读全文
posted @ 2019-07-08 18:00 lililili—— 阅读(1392) 评论(0) 推荐(0)
摘要: 错误记录(windows端): 问题1:在启动MYSQL时出现问题:“ERROR 2003 (HY000): Can't connect to MySQL server on 'localhost' (10061)” 说明 没有启动mysql 解决:启动mysql 问题2:发生系统错误 5。 拒绝访 阅读全文
posted @ 2019-07-08 15:21 lililili—— 阅读(285) 评论(0) 推荐(0)
摘要: 路径:C:\Program Files\MySQL\MySQL Server 5.5 http://www.cnblogs.com/mr-wid/archive/2013/05/09/3068229.html 以上教程很不错 增删改查 mysql 字母大小写不敏感。 终端操作数据库服务器 1.登陆 阅读全文
posted @ 2019-07-07 21:06 lililili—— 阅读(244) 评论(0) 推荐(0)
摘要: 1 问题: pip install MySQLClient 遇到 error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools": http://landinghub.visua 阅读全文
posted @ 2019-07-07 20:59 lililili—— 阅读(243) 评论(0) 推荐(0)
摘要: 定义几个参数 输入图片大小 W×W Filter大小 F×F 步长 S padding的像素数 P 首先讲tensorflow中 SAME: ceil(5/2)=3 VAILD p = 0 (5-3+0)/2+1 = 2 卷积中的参数“SAME”,和‘VALID’决定了输出尺寸的计算公式: 如果参数 阅读全文
posted @ 2019-07-07 20:57 lililili—— 阅读(6410) 评论(0) 推荐(0)
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 30 下一页