上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 50 下一页
摘要: import sys def get_cur_info(): print(sys._getframe().f_code.co_filename) # 当前文件名,可以通过__file__获得 print(sys._getframe(0).f_code.co_name) # 当前函数名 print(sys._getframe(1).f_code.co_name) # 调用该函数的函数名字,如果没有被 阅读全文
posted @ 2019-08-11 21:25 小kk_p 阅读(6046) 评论(0) 推荐(1)
摘要: 参考:https://blog.csdn.net/app_12062011/article/details/77945600 参考:http://www.cnblogs.com/sddai/p/10277383.html 参考:https://blog.csdn.net/u012426298/art 阅读全文
posted @ 2019-05-22 23:30 小kk_p 阅读(385) 评论(0) 推荐(0)
摘要: 1、concat层 该层有两个相同作用的参数: caffe中数据通常为4个维度,即 num×channels×height×width,因此默认值1表示channels通道进行拼接。 选择axis=0,表示在num维度上进行拼接,可表示为:(k1+k2)*C*H*W; 选择axis=1,表示在cha 阅读全文
posted @ 2018-12-12 12:59 小kk_p 阅读(383) 评论(0) 推荐(0)
摘要: 参考:https://blog.csdn.net/u010094199/article/details/54380086 参考:https://blog.csdn.net/jonms/article/details/79318566 参考:https://blog.csdn.net/jonms/ar 阅读全文
posted @ 2018-12-03 22:12 小kk_p 阅读(1012) 评论(0) 推荐(0)
摘要: 参考:https://blog.csdn.net/wei_guo_xd/article/details/74451443 下载程序,git clone https://github.com/Orpine/py-R-FCN.git打开py-R-FCN,下载caffegit clone https:// 阅读全文
posted @ 2018-12-02 16:19 小kk_p 阅读(742) 评论(0) 推荐(0)
摘要: 参考:http://www.cppblog.com/vczh/archive/2010/06/22/118493.html 参考:https://www.cnblogs.com/skynet/archive/2011/02/20/1959162.html C++实谓各种语言中的软肋,功能强大,陷阱更 阅读全文
posted @ 2018-10-27 21:56 小kk_p 阅读(301) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/qq_31157999/article/details/78906982 阅读全文
posted @ 2018-10-03 09:44 小kk_p 阅读(136) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/qikule/article/details/80228722 cd 进入用户主目录; cd ~ 进入用户主目录; cd .. 返回上级目录; cd ../.. 返回上两级目录; pwd 以绝对路径的方式显示用户当前的工作目录。将当前目录的全路径名称 (从 阅读全文
posted @ 2018-10-02 16:38 小kk_p 阅读(132) 评论(0) 推荐(0)
摘要: 参考:https://www.cnblogs.com/YiXiaoZhou/p/5925019.html 参考:https://blog.csdn.net/shenxiaolu1984/article/details/50884830 循环矩阵: KCF里的所有矩阵都是由目标样本循环位移得到,向量的 阅读全文
posted @ 2018-07-25 21:11 小kk_p 阅读(2277) 评论(0) 推荐(0)
摘要: 参考:https://blog.csdn.net/Byron309/article/details/77716127 https://blog.csdn.net/xbinworld/article/details/44276389 参考:https://blog.csdn.net/bitcarman 阅读全文
posted @ 2018-07-22 21:16 小kk_p 阅读(735) 评论(0) 推荐(0)
上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 50 下一页