上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 53 下一页

2019年5月24日

摘要: problem 501. Find Mode in Binary Search Tree 参考 1. Leetcode_501. Find Mode in Binary Search Tree; 完 阅读全文
posted @ 2019-05-24 17:02 鹅要长大 阅读(111) 评论(0) 推荐(0) 编辑
摘要: problem 500. Keyboard Row 题意:判断给出的某个单词是否可以使用键盘上的某一行字母type得到; 注意大小写的转换; solution1: 使用set保存三行字符,查看每个字符所在的行数是否一致; SET: or: 判断每一行的字母数目是否与对应单词的长度一致; class 阅读全文
posted @ 2019-05-24 16:58 鹅要长大 阅读(243) 评论(0) 推荐(0) 编辑

2019年5月23日

摘要: Q: for i in range(len(shape)/2):TypeError: 'float' object cannot be interpreted as an integer A: for i in range(len(shape)//2): 参考 1. https://blog.csd 阅读全文
posted @ 2019-05-23 14:00 鹅要长大 阅读(1899) 评论(0) 推荐(0) 编辑

2019年5月22日

摘要: 前言 操作过程 NCNN: https://github.com/Tencent/ncnn/wiki/how-to-build#build-for-linux-x86; vector初始化: int num[4] = { 1, 4, 3, 2 }; int numLength = sizeof(nu 阅读全文
posted @ 2019-05-22 15:28 鹅要长大 阅读(925) 评论(0) 推荐(0) 编辑
摘要: 前言 MTCNN是级联卷积网络,原理基本上比较清晰,只是还缺少实战,看到一个CSDN上windows的实现过程,就拿来试试。 操作过程 参考here,某些步骤会添加博主遇到的问题的解释。 参考 1. MTCNN的windows-cpu配置; 2. MTCNN_paper; 完 阅读全文
posted @ 2019-05-22 15:24 鹅要长大 阅读(732) 评论(0) 推荐(0) 编辑

2019年5月16日

摘要: 前言 使用CAN通信时将信号转换为char类型进行传输,要查看传输的信息是否正确需要将char类型数据以二进制格式输出; code 参考 1. 二进制格式输出char类型数据; 完 阅读全文
posted @ 2019-05-16 11:24 鹅要长大 阅读(1046) 评论(0) 推荐(0) 编辑
摘要: 前言 系统程序一般需要读取参数文件,看到一个很好的Config类记录在此。 头文件Config.h //Config.h //re: https://blog.csdn.net/David_xtd/article/details/9320549 #pragma once #include <stri 阅读全文
posted @ 2019-05-16 10:24 鹅要长大 阅读(5593) 评论(1) 推荐(1) 编辑
摘要: problem: 496. Next Greater Element I 题意:求集合中每个数字在原数组中右边第一个较大的数字。 solution1: 暴力搜索; class Solution { public: vector<int> nextGreaterElement(vector<int>& 阅读全文
posted @ 2019-05-16 09:45 鹅要长大 阅读(241) 评论(0) 推荐(0) 编辑

2019年4月30日

摘要: 1.盲打练习网站(博主比较喜欢的风格) https://www.typing.com/ https://www.ratatype.com/ 阅读全文
posted @ 2019-04-30 09:46 鹅要长大 阅读(144) 评论(0) 推荐(0) 编辑

2019年4月12日

摘要: Q: Traceback (most recent call last):File "/usr/local/bin/pip", line 7, in <module>from pip._internal import mainImportError: No module named 'pip._in 阅读全文
posted @ 2019-04-12 10:24 鹅要长大 阅读(3549) 评论(0) 推荐(0) 编辑
摘要: opencv3.3.1 https://github.com/alantrrs/OpenTLD https://github.com/arthurv/OpenTLD problem opencv3.0以及后续版本弃用legacy模块了; solution write cv::PatchGenerat 阅读全文
posted @ 2019-04-12 09:29 鹅要长大 阅读(211) 评论(0) 推荐(0) 编辑

2019年4月9日

摘要: 博主开了一个【动手学深度学习】专栏,主要记录学习【动手学深度学习】的过程。 学习资料 视频讲解资料:可在B站观看; 文档资料:https://zh.d2l.ai/d2l-zh.pdf 网页资料:https://zh.gluon.ai/ 学习记录 学习笔记(1) 学习环境安装与配置; 学习笔记(2)  阅读全文
posted @ 2019-04-09 17:23 鹅要长大 阅读(392) 评论(0) 推荐(0) 编辑
摘要: Wing Loss for Robust Facial Landmark Localisation with Convolutional Neural Networks 参考 1. 人脸关键点; 2. Wing Loss for Robust Facial Landmark Localisation 阅读全文
posted @ 2019-04-09 17:07 鹅要长大 阅读(758) 评论(0) 推荐(0) 编辑
摘要: 前言 在安装GPU环境下的软件工具,特别是CUDA/CUDNN等,一定要先把GPU环境搭建好。 NVIDIA驱动安装会遇到各种问题,真希望黄教主可以将各个工具如何安装使用讲解的更加细致、清楚一些,有时候按照官网的步骤安装也会遇到各种问题。 NVIDIA驱动的安装一定要与显卡类型、linux内核版本匹 阅读全文
posted @ 2019-04-09 16:37 鹅要长大 阅读(1475) 评论(0) 推荐(0) 编辑
摘要: 博主遇到的这个问题其实主要原因是系统内核和NVIDIA的GPU版本不匹配。 主要是系统内核自动更新,而GPU驱动没有对应的更新造成的。 又要涉及NVIDIA驱动的安装,这个安装真的很鸡肋。。。 需要注意的是为了防止内核自动更新,最好设置为不更新,这样应该就不会遇到这个问题了。 参考 1. 完 阅读全文
posted @ 2019-04-09 16:29 鹅要长大 阅读(709) 评论(0) 推荐(0) 编辑

2019年3月29日

摘要: problem 492. Construct the Rectangle solution1: solution2: 参考 1. Leetcode_492. Construct the Rectangle; 2. GrandYang; 完 阅读全文
posted @ 2019-03-29 19:07 鹅要长大 阅读(168) 评论(0) 推荐(0) 编辑
摘要: problem 485. Max Consecutive Ones solution1: 参考 1. Leetcode_485. Max Consecutive Ones; 完 阅读全文
posted @ 2019-03-29 18:18 鹅要长大 阅读(151) 评论(0) 推荐(0) 编辑

2019年3月27日

摘要: win10安装ubuntu16.04双系统 Win10+Ubuntu双系统删除Ubuntu方法 Win10+Ubuntu双系统删除Ubuntu方法 https://www.cnblogs.com/pualus/p/7835422.html UEFI启动Windows10+Ubuntu双系统删除Ubu 阅读全文
posted @ 2019-03-27 09:22 鹅要长大 阅读(293) 评论(0) 推荐(0) 编辑

2019年3月25日

摘要: 前言 博主想使用caffe框架进行深度学习相关网络的训练和测试,刚开始做,特此记录学习过程。 环境配置方面,博主以为最容易卡壳的是GPU的NVIDIA驱动的安装和CUDA的安装,前者尝试的都要吐了,可以参见here.关于CUDA的安装,主要需要检查各个相关方面是否满足版本的匹配,最重要的是NVIDI 阅读全文
posted @ 2019-03-25 10:16 鹅要长大 阅读(230) 评论(0) 推荐(0) 编辑
摘要: problem 482. License Key Formatting solution1: 倒着处理,注意第一个字符为分隔符的情况要进行删除,注意字符的顺序是否正序。 参考 1. Leetcode_482. License Key Formatting; 2. GrandYang; 完 阅读全文
posted @ 2019-03-25 10:10 鹅要长大 阅读(286) 评论(0) 推荐(0) 编辑
上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 53 下一页

导航