上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 54 下一页

2019年9月27日

摘要: 前言 在使用tensorflow TFRecord的过程中,读取*.tfrecord文件时出现错误,本文解决这个错误。 错误描述: 源码: 错误原因: 一般遇到这个错误,代码本身并没有什么问题,基本上都是参数设置不一致或者和不合适导致的,要注意检查各个参数。 对于博主来说,更改的参数有: 1. 数据 阅读全文
posted @ 2019-09-27 09:44 鹅要长大 阅读(2096) 评论(0) 推荐(0)

2019年9月26日

摘要: 前言 在编写python代码的过程中,不同路径下的源码文件该如何引用,这是个问题,本文针对这个问题介绍解决方法。 源码目录结构: 情况1: 相同路径下导入源文件,例如将conf.py导入mian.py 情况2: 在main.py中导入sub/sub.py文件 注意,需要在sub/sub.py创建__ 阅读全文
posted @ 2019-09-26 17:26 鹅要长大 阅读(1570) 评论(0) 推荐(0)

2019年9月19日

摘要: 以前的网址是https://www.tensorflow.org/,当时得fq才能打开,现在这个我fq都打不开了。 现在新网址是https://tensorflow.google.cn/这个不fq都可以打开了。总体来讲是好事,不fq就能查到资料了。 参考 1. tensorflow官网进不去,因为它 阅读全文
posted @ 2019-09-19 10:57 鹅要长大 阅读(1131) 评论(0) 推荐(0)
摘要: 前言 在win10系统中安装Anaconda,并创建虚拟环境,但是不明白为什么切换环境之后并未激活要使用的虚拟环境。 conda常用命令 activate // 切换到base环境 activate learn // 切换到learn环境 conda create -n learn python=3 阅读全文
posted @ 2019-09-19 10:00 鹅要长大 阅读(15763) 评论(0) 推荐(0)

2019年9月18日

摘要: 前言 基于Vxworks的WindRiver获取摄像头图像进行处理,需要先进行转换,对于转换格式博主有点疑问。本文对此作出解释,若有错误,请交流指正。 README.md code 从README.md内容看出来,摄像头捕获图像之后需要进行格式转换才能继续后续图像处理过程。转换代码如下: 问题1: 阅读全文
posted @ 2019-09-18 14:28 鹅要长大 阅读(3474) 评论(0) 推荐(0)

2019年9月11日

摘要: A. 算法原理类; 1. http://deeplearning.net/tutorial/contents.html 2. UFLDL; B. 工具框架类; 1. keras.io; 2. keras_github; 阅读全文
posted @ 2019-09-11 15:52 鹅要长大 阅读(365) 评论(0) 推荐(0)

2019年9月2日

摘要: 运行以下git命令的时候出现错误 error 原因 本地没有生成SSH key. 解决方法here 1. generate SSH key; 按照提示进行; 2. add your SSH key to the ssh-agent. 3. add the SSH key to your Github 阅读全文
posted @ 2019-09-02 18:30 鹅要长大 阅读(1007) 评论(0) 推荐(0)

2019年8月30日

摘要: isContinuous 参考 1. opencv_isContinuous; 完 阅读全文
posted @ 2019-08-30 17:25 鹅要长大 阅读(329) 评论(0) 推荐(0)
摘要: code /* Copyright (c) 2004, Lode Vandevenne All rights reserved. */ #include <cmath> #include <string> #include <vector> #include <iostream> #include 阅读全文
posted @ 2019-08-30 14:16 鹅要长大 阅读(1107) 评论(0) 推荐(0)

2019年8月29日

摘要: problem 1021. Remove Outermost Parentheses 参考 1. Leetcode_easy_1021. Remove Outermost Parentheses; 完 阅读全文
posted @ 2019-08-29 18:22 鹅要长大 阅读(203) 评论(0) 推荐(0)
摘要: problem 1022. Sum of Root To Leaf Binary Numbers 参考 1. Leetcode_easy_1022. Sum of Root To Leaf Binary Numbers; 完 阅读全文
posted @ 2019-08-29 18:21 鹅要长大 阅读(138) 评论(0) 推荐(0)
摘要: problem 1025. Divisor Game 参考 1. Leetcode_easy_1025. Divisor Game; 完 阅读全文
posted @ 2019-08-29 18:20 鹅要长大 阅读(150) 评论(0) 推荐(0)
摘要: problem 1029. Two City Scheduling 参考 1. Leetcode_easy_1029. Two City Scheduling; 完 阅读全文
posted @ 2019-08-29 18:19 鹅要长大 阅读(158) 评论(0) 推荐(0)
摘要: problem 1030. Matrix Cells in Distance Order 参考 1. Leetcode_easy_1030. Matrix Cells in Distance Order; 完 阅读全文
posted @ 2019-08-29 18:17 鹅要长大 阅读(188) 评论(0) 推荐(0)
摘要: problem 1033. Moving Stones Until Consecutive 参考 1. Leetcode_easy_1033. Moving Stones Until Consecutive; 完 阅读全文
posted @ 2019-08-29 18:15 鹅要长大 阅读(173) 评论(0) 推荐(0)
摘要: problem 1037. Valid Boomerang 参考 1. Leetcode_easy_1037. Valid Boomerang; 完 阅读全文
posted @ 2019-08-29 18:14 鹅要长大 阅读(126) 评论(0) 推荐(0)
摘要: problem 1042. Flower Planting With No Adjacent 参考 1. Leetcode_easy_1042. Flower Planting With No Adjacent; 完 阅读全文
posted @ 2019-08-29 18:08 鹅要长大 阅读(153) 评论(0) 推荐(0)
摘要: problem 1046. Last Stone Weight 参考 1. Leetcode_easy_1046. Last Stone Weight; 完 阅读全文
posted @ 2019-08-29 18:06 鹅要长大 阅读(98) 评论(0) 推荐(0)
摘要: problem 1047. Remove All Adjacent Duplicates In String 参考 1. Leetcode_easy_1047. Remove All Adjacent Duplicates In String; 完 阅读全文
posted @ 2019-08-29 18:05 鹅要长大 阅读(125) 评论(0) 推荐(0)
摘要: problem 1051. Height Checker solution 参考 1. Leetcode_easy_1051. Height Checker; 完 阅读全文
posted @ 2019-08-29 18:03 鹅要长大 阅读(186) 评论(0) 推荐(0)
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 54 下一页

导航