2018年8月29日

摘要: 以ubuntu + wget为例 1) 浏览器中打开需要需要下载的文件 2) 点击 raw按钮 3) 从浏览器地址栏中拷贝地址 4) wget + 地址 阅读全文
posted @ 2018-08-29 13:39 lion_zheng 阅读(171) 评论(0) 推荐(0) 编辑

2018年8月28日

摘要: https://github.com/mind/wheels/releases 阅读全文
posted @ 2018-08-28 21:22 lion_zheng 阅读(741) 评论(0) 推荐(0) 编辑
摘要: 可能的解决方法: 删除训练文件夹中的旧模型 阅读全文
posted @ 2018-08-28 16:38 lion_zheng 阅读(731) 评论(0) 推荐(0) 编辑
摘要: 在使用tensorflow的object detection时,出现以下报错 tensorflow Resource exhausted: OOM when allocating tensor with shape 可能的解决方法: 减小训练的batch大小 阅读全文
posted @ 2018-08-28 16:32 lion_zheng 阅读(2172) 评论(0) 推荐(0) 编辑

2018年8月27日

摘要: 访问byte,word中的位 访问word/dword中的byte 文中mybyte, myword, mydword请替换为自己的变量 阅读全文
posted @ 2018-08-27 17:41 lion_zheng 阅读(3065) 评论(0) 推荐(0) 编辑

2018年8月26日

摘要: 例如,我在一个名为tf_14的vertualenv环境中(no site package)安装了一个contextlib2包 使用which xxx来查看 使用pip show指令来查看 阅读全文
posted @ 2018-08-26 22:31 lion_zheng 阅读(7299) 评论(0) 推荐(0) 编辑
摘要: 参考链接: https://blog.csdn.net/orangleliu/article/details/44907221 阅读全文
posted @ 2018-08-26 21:29 lion_zheng 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 安装pillow而不是PIL ` pip install pillow ` 参考: https://github.com/python pillow/Pillow 阅读全文
posted @ 2018-08-26 19:19 lion_zheng 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 建立virtualenv环境 ` virtualenv no site packages yourenv ` 其中,yourenv是给环境起的名称 no site packages表示安装的python包和系统的包无关 激活环境 ` source yourenv/bin/activate ` 在vi 阅读全文
posted @ 2018-08-26 12:23 lion_zheng 阅读(105) 评论(0) 推荐(0) 编辑
摘要: ``` python import tensorflow as tf tf.__version__ ``` 阅读全文
posted @ 2018-08-26 12:15 lion_zheng 阅读(161) 评论(0) 推荐(0) 编辑
摘要: nvcc V 阅读全文
posted @ 2018-08-26 12:05 lion_zheng 阅读(104) 评论(0) 推荐(0) 编辑

2018年8月7日

摘要: 通过whl文件安装 tensorflow,显示缺少libmklml_intel.so 需要 1)安装intel MKL库 https://software.intel.com/en us/articles/intel mkl dnn part 1 library overview and insta 阅读全文
posted @ 2018-08-07 01:50 lion_zheng 阅读(1740) 评论(0) 推荐(0) 编辑

2018年8月6日

摘要: ``` [ERROR] [1533570199.196157]: bad callback: > Traceback (most recent call last): File "/opt/ros/kinetic/lib/python2.7/dist-packages/rospy/topics.py", line 750, in _invoke_callback cb(msg) F... 阅读全文
posted @ 2018-08-06 23:47 lion_zheng 阅读(713) 评论(0) 推荐(1) 编辑
摘要: 查看 slmgr.vbs /dlv 删除授权 使用管理员权限进入cmd All program accessories Command Prompt (右键 已管理员方式运行) slmgr.vbs /upk 参考 https://www.howtogeek.com/245445/how to use 阅读全文
posted @ 2018-08-06 14:31 lion_zheng 阅读(1144) 评论(0) 推荐(1) 编辑
摘要: 通过这几年的实践,对simotion的程序结构规划有了一些新的理解。工程师在面对项目时,经常有几个问题比较困惑。 目前面对的问题 1)如何理解其他人编写的程序 2)如何从程序中找到可以移植的部分 传统的程序结构 优点:便于区分变量是否需要连接HMI 问题:不利于module的移植,module的变量 阅读全文
posted @ 2018-08-06 12:11 lion_zheng 阅读(944) 评论(0) 推荐(3) 编辑

2018年8月5日

摘要: mark几个很好的教程 http://www.52nlp.cn/%E6%B7%B1%E5%BA%A6%E5%AD%A6%E4%B9%A0%E6%9C%8D%E5%8A%A1%E5%99%A8%E7%8E%AF%E5%A2%83%E9%85%8D%E7%BD%AE ubuntu17 04 nvidia 阅读全文
posted @ 2018-08-05 21:31 lion_zheng 阅读(105) 评论(0) 推荐(0) 编辑

2018年8月4日

摘要: I changed models/research/object_detection/exporter.py line 71/72 from: to It worked ~~~ good luck! 阅读全文
posted @ 2018-08-04 12:27 lion_zheng 阅读(235) 评论(0) 推荐(0) 编辑

2018年7月31日

摘要: https://stackoverflow.com/questions/43024337/why this error when i try to create workspaces in ros Are you using Anaconda environment? This issue is q 阅读全文
posted @ 2018-07-31 20:44 lion_zheng 阅读(978) 评论(0) 推荐(0) 编辑

2018年7月30日

摘要: watch n 1 "date +%T" 阅读全文
posted @ 2018-07-30 21:04 lion_zheng 阅读(363) 评论(0) 推荐(0) 编辑
摘要: 打开注册表(regedit) 删除注册表项 HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manage\PendingFileRenameOperations 阅读全文
posted @ 2018-07-30 11:18 lion_zheng 阅读(9988) 评论(0) 推荐(0) 编辑

2018年7月27日

摘要: ModuleNotFoundError: No module named 'yaml' 需要安装 pyyaml 包 阅读全文
posted @ 2018-07-27 16:51 lion_zheng 阅读(894) 评论(0) 推荐(0) 编辑
摘要: pwd print work directory, 指linux terminal的当前目录 $ pwd 阅读全文
posted @ 2018-07-27 01:47 lion_zheng 阅读(190) 评论(0) 推荐(0) 编辑

2018年7月26日

摘要: https://www.tensorflow.org/extend/tool_developers/ https://developers.google.com/protocol buffers/?hl=en 阅读全文
posted @ 2018-07-26 20:46 lion_zheng 阅读(454) 评论(0) 推荐(0) 编辑
摘要: reference: https://blog.csdn.net/zlase/article/details/79261348 阅读全文
posted @ 2018-07-26 19:04 lion_zheng 阅读(243) 评论(0) 推荐(0) 编辑

2018年7月25日

摘要: copy: ctrl + insert paste: shift + insert 阅读全文
posted @ 2018-07-25 20:35 lion_zheng 阅读(249) 评论(0) 推荐(0) 编辑
摘要: 使用命令行方式搜索 $ locate your_filename 阅读全文
posted @ 2018-07-25 13:01 lion_zheng 阅读(151) 评论(0) 推荐(0) 编辑

2018年7月24日

摘要: referemce: https://www.smarthomebeginner.com/mount virtualbox shared folder on ubuntu linux/ 1) VirtualBox manager setting share folder add share fold 阅读全文
posted @ 2018-07-24 14:26 lion_zheng 阅读(1479) 评论(0) 推荐(0) 编辑

2018年7月21日

摘要: 1) 从oracle官网下载virtual box安装包 2) 安装支持包 sudo apt get install libqt5x11extras5 libsdl1.2debian 3) sudo dpkg i virtualbox 5.2_5.2.14 123301_Ubuntu_xenial_ 阅读全文
posted @ 2018-07-21 23:10 lion_zheng 阅读(134) 评论(0) 推荐(0) 编辑
摘要: you need to source in the new terminal `$ source ~/catkin_ws/devel/setup.bash` 阅读全文
posted @ 2018-07-21 20:29 lion_zheng 阅读(1691) 评论(0) 推荐(0) 编辑

2018年7月19日

摘要: cat /etc/issue 阅读全文
posted @ 2018-07-19 22:23 lion_zheng 阅读(65) 评论(0) 推荐(0) 编辑

导航