- 博客(46)
- 资源 (5)
- 收藏
- 关注
原创 U盘提示有写保护,处理方式
下载ChipGenius,检测U盘的主控产商和型号。主控厂家:安国,主控型号:AU6989SN-GTD。在您的U磁盘位置右键开始。
2023-09-08 09:06:25
662
原创 seaborn 安装成功 + ImportError: DLL load failed: 找不到指定的模块 问题解决
如果你尝试了卸载numpy,scipy,seaborn,再次安装他们仍然不奏效。可以尝试新建一个环境,此环境python=3.8,在此环境中直接pip install seaborn,看看是否Import成功。我就是这样的情况。
2021-05-29 09:33:17
462
原创 Object Detection with Yolo anchor box clustering
https://fairyonice.github.io/Part_1_Object_Detection_with_Yolo_for_VOC_2014_data_anchor_box_clustering.html
2021-05-27 23:32:38
165
原创 load_weights----------keras官方
https://keras.io/api/models/model_saving_apis/#loadweights-method
2021-05-03 15:23:30
320
原创 want to extract features from the pretrained CNN.
https://discuss.pytorch.org/t/resnet-features-not-work/3423/3
2021-04-21 12:32:19
86
原创 目标检测评价指标(非常好的博文!)
https://manalelaidouni.github.io/Evaluating-Object-Detection-Models-Guide-to-Performance-Metrics.html
2021-04-14 16:42:15
110
原创 RCNN,Fast RCNN
https://towardsdatascience.com/deep-learning-method-for-object-detection-r-cnn-explained-ecdadd751d22
2021-04-04 13:07:41
99
原创 Latex表格在线自动生成及word表格转Latex方法
https://jingyan.baidu.com/article/da1091fb078691027849d6e8.htmltablesgenerator:https://www.tablesgenerator.com/
2021-03-21 15:15:28
1309
原创 latex 强制图片位置
https://jingyan.baidu.com/article/c74d6000cc4e1e0f6a595db3.html
2021-01-28 17:12:15
635
原创 matplotlib 全局字体改为 Times New Roman
https://blog.youkuaiyun.com/feynman233/article/details/86364398plt.rcParams参数详解:https://blog.youkuaiyun.com/hezuijiudexiaobai/article/details/104778250
2020-12-25 18:00:18
526
原创 plt.rcParams属性总结
https://blog.youkuaiyun.com/qq_51143009/article/details/110388021https://blog.youkuaiyun.com/weixin_39010770/article/details/88200298?utm_medium=distribute.pc_relevant_t0.none-task-blog-BlogCommendFromBaidu-1.control&depth_1-utm_source=distribute.pc_relevant_t0..
2020-12-25 17:24:37
135
原创 分类评价指标汇总
classification_report的输出对比版本:https://zhpmatrix.github.io/2019/06/29/sklearn-classification-report/机器学习模型评分总结(sklearn):https://www.pianshen.com/article/3462281220/#accrecallF1_14重要:深度学习 | (5) 2分类、多分类问题评价指标以及在sklearn中的使用:https://blog.youkuaiyun.com/sdu_hao/artic
2020-12-23 18:17:08
285
1
原创 kappa系数
https://www.statisticshowto.com/cohens-kappa-statistic/https://medium.com/x8-the-ai-community/kappa-coefficient-for-dummies-84d98b6f13eehttps://www.tutorialspoint.com/statistics/cohen_kappa_coefficient.htmhttps://zhuanlan.zhihu.com/p/67844308
2020-12-22 14:00:02
258
转载 matplotlib color 参数
转载自:https://blog.youkuaiyun.com/claroja/article/details/79459596
2020-12-20 20:04:50
103
原创 How to save the list data
https://stackoverflow.com/questions/27745500/how-to-save-a-list-to-a-file-and-read-it-as-a-list-type
2020-12-20 20:02:09
105
原创 Pycharm下keras正常显示进度条
http://home.ustc.edu.cn/~yqli1995/2019/11/04/keras-progressbar/避免每个batch就打印新的一行问题
2020-12-20 16:47:59
218
原创 残差连接(skip connect)/(residual connections)
https://www.pianshen.com/article/2567156882/https://towardsdatascience.com/an-overview-of-resnet-and-its-variants-5281e2f56035
2020-12-16 20:17:46
456
原创 1.高效网络Xception, MobileNet, MobileNet V2, ShuffleNet ,ShuffleNet V2 2.为什么使用全局平均池化
1.https://www.pianshen.com/article/2982763223/2.https://www.cnblogs.com/zongfa/p/9048680.html
2020-12-05 12:58:42
198
原创 寻找最优学习率
https://zhuanlan.zhihu.com/p/80487971https://cloud.tencent.com/developer/article/1551248https://www.pyimagesearch.com/2019/08/05/keras-learning-rate-finder/https://www.machinecurve.com/index.php/2020/02/20/finding-optimal-learning-rates-with-the-learnin
2020-12-02 17:17:40
189
原创 keras LearningRateScheduler 使用
https://blog.youkuaiyun.com/qq_34418352/article/details/105152893https://keras.io/api/callbacks/learning_rate_scheduler/
2020-12-02 13:31:19
151
原创 batch-size和lr的关系
http://mp.weixin.qq.com/s?__biz=MzA3NDIyMjM1NA==&mid=2649032995&idx=2&sn=28b065415c2d8a11345531f1284413d0&chksm=8712b75eb0653e48f46de857b14d6e029f08a5c0336928fc638eac1f8287aefea01a262be1e2&mpshare=1&scene=23&srcid=12022pcmwawzM.
2020-12-02 10:54:02
343
原创 map(lambda x:相关问题
lambda表达式,在python2中的表达式和python3不同,原来只要:map(lambda x: x ** 2, [1, 2, 3, 4, 5]) 原来python2[1, 4, 9, 16, 25]list(map(lambda x: x ** 2, [1, 2, 3, 4, 5])) 现在python3[1, 4, 9, 16, 25]https://www.cnblogs.com/guochaoxxl/p
2020-11-28 20:47:35
1183
原创 深度分离卷积的第一层之后是否有激活函数
https://www.geek-share.com/detail/2806401663.htmlhttps://blog.youkuaiyun.com/shuzfan/article/details/77129716https://blog.youkuaiyun.com/C_chuxin/article/details/88581411https://zhuanlan.zhihu.com/p/166736637https://blog.youkuaiyun.com/shawroad88/article/details/9522208
2020-11-27 09:39:55
334
原创 1*1卷积加分组混合卷积
https://www.leiphone.com/news/201707/mFlMAP9A7QCZ4fk2.htmlhttps://blog.youkuaiyun.com/maqian5/article/details/91490432分组混合卷积:https://jintian93.github.io/post/2019_01_03_09_%E4%BB%8Eshuffleseg%E4%BB%A5%E5%8F%8A%E5%88%86%E7%BB%84%E5%8D%B7%E7%A7%AF%E8%AF%B4%E8%B.
2020-11-25 21:39:02
234
原创 Latex和word相互转换。word表格制作
word:http://www.360doc.com/content/19/0110/13/18781560_807915270.shtmlhttp://ask.zol.com.cn/x/4666538.html【Word如何新建一个三线表的表格样式?】https://ml.mbd.baidu.com/r/cLIEsNg1ZC?> f=cp&rs=1799257523&ruk=8HHs1TX41p3i0yQAs6fUPQ&u=2d5560e386b8c70.
2020-11-23 22:12:05
2596
原创 三线表制作
【Word如何新建一个三线表的表格样式?】https://ml.mbd.baidu.com/r/cLIEsNg1ZC?f=cp&rs=1799257523&ruk=8HHs1TX41p3i0yQAs6fUPQ&u=05fb40339939f27d
2020-11-23 17:23:47
155
原创 矩阵,数组,张量
https://www.cnblogs.com/xiaoboge/p/9682352.htmlhttps://blog.youkuaiyun.com/wyl1813240346/article/details/79806207tolist:https://blog.youkuaiyun.com/qq_24753293/article/details/78205947ndarry=cv.imread(img)img=2992993 ndarry=2992993
2020-11-22 19:52:33
126
原创 K.function函数
https://keras-cn.readthedocs.io/en/latest/for_beginners/concepts/https://blog.youkuaiyun.com/Robin_Ge/article/details/84934645https://blog.youkuaiyun.com/qq_37974048/article/details/102727653https://blog.youkuaiyun.com/Robin_Ge/article/details/84934645https://blog.csdn.
2020-11-22 14:50:30
306
原创 英文论文技巧
总:https://www.douban.com/note/651062127/词:http://www.thesaurus.com/https://www.semdom.org/句:http://www.phrasebank.manchester.ac.uk/https://ludwig.guru/http://linggle.com/
2020-11-18 17:00:44
115
原创 神经网络可视化
https://www.mscto.com/python/452869.htmlhttps://blog.youkuaiyun.com/qq_37070854/article/details/105209288https://machinelearningmastery.com/how-to-visualize-filters-and-feature-maps-in-convolutional-neural-networks/https://www.jianshu.com/p/fb3add126da1
2020-11-18 16:06:34
137
原创 python画图
1.https://zhuanlan.zhihu.com/p/556752172.https://www.cnblogs.com/qccc/p/12795541.html3.https://www.pianshen.com/article/7586218601/4.https://blog.youkuaiyun.com/sinat_27864123/article/details/79538202
2020-11-17 13:22:15
118
mnist_transform.py
2020-10-12
最优化-线性规划单纯形法-大M法和两阶段法程序实现.rar
2020-06-14
python-3.7.7rc1-docs-html.zip
2020-03-08
python-3.7.7rc1-docs-pdf-a4.zip
2020-03-08
基于PCA和SVM的人脸识别--MATLAB实现.zip
2019-11-23
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人