摘要: Python提示AttributeError 或者DeprecationWarning: This module was deprecated解决方法 在使用Python的sklearn库时,发现sklearn的cross_validation不能使用,在pycharm上直接显示为被横线划掉。 运行 阅读全文
posted @ 2017-05-19 11:11 alanma 阅读(15676) 评论(0) 推荐(2) 编辑
摘要: 简介 该文件指定了用于fast rcnn训练的默认config选项,不能随意更改,如需更改,应当用yaml再写一个config_file,然后使用cfg_from_file(filename)导入以覆盖默认config。cfg_from_file(filename)定义见该文件。 tools目录下的 阅读全文
posted @ 2017-05-19 10:54 alanma 阅读(5398) 评论(0) 推荐(1) 编辑
摘要: 发现博客园也可以支持Markdown,就把我之前写的博客搬过来了~ 欢迎转载,请注明出处:http://www.cnblogs.com/alanma/p/6877166.html 下面是正文: Deep Residual Learning for Image Recognition 1. 思想 作者 阅读全文
posted @ 2017-05-19 10:45 alanma 阅读(92905) 评论(9) 推荐(29) 编辑
摘要: ipython notebook中有一个相当方便的语句: %matplotlib inline,可以实现运行cell即出现结果图像。但是如果想写在Python程序内,貌似直接%matplotlib inline是不可行的。 这种情况下,如果想显示图像,需要加上一句: plt.show()。 当然确保 阅读全文
posted @ 2017-05-19 10:38 alanma 阅读(2384) 评论(0) 推荐(1) 编辑