mysql 字符串字段中查找非ascii字符
摘要:select * from tabel_name where field_name not regexp "^[ -~]*$"
阅读全文
posted @
2017-04-27 15:33
梦·想
阅读(276)
推荐(0)
tensorflow学习——调试ctc的两个bug
摘要:InvalidArgumentError (see above for traceback): Not enough time for target transition sequence (required: 8, available: 7) 错误原因:label的长度比数据(图像、或语音等)的
阅读全文
posted @
2017-04-25 15:51
梦·想
阅读(2039)
推荐(0)
4.17遇到的坑
摘要:1. python的包名和文件名不能用string,import时候会发生错误 2. csv中的特殊字符"不能使用\转义,要使用两个双引号("")代替。csv标准参见https://en.wikipedia.org/wiki/Comma-separated_values 在使用sequel pro
阅读全文
posted @
2017-04-18 10:19
梦·想
阅读(134)
推荐(0)
tensorflow 中图像的读取
摘要:1. 使用gfile读入文件内容。输入的是String,输出3-D tensor。可惜的是输入不能是tensor 2. 使用WholeFileReader。输入的是queue。 3. 使用read_file。输入的是tensor,不是queue 4. 一个错误:一个csv中每行保存图像的地址和lab
阅读全文
posted @
2017-04-14 14:05
梦·想
阅读(1847)
推荐(0)
tensorflow源码分析——CTC
摘要:CTC是2006年的论文Connectionist Temporal Classification: Labelling Unsegmented Sequence Data with Recurrent Neural Networks中提到的,论文地址: http://www.cs.toronto.
阅读全文
posted @
2017-04-07 18:20
梦·想
阅读(5379)
推荐(1)
win10 配置tensorflow环境
摘要:1. 在anaconda中新增环境 python3.5, 我使用的是anaconda-navigator 中新增的环境,python版本选择3.5 2. 激活新增加的环境, 注意win下,没有source,直接使用 3. 安装tensorflow,参考https://github.com/tenso
阅读全文
posted @
2017-04-05 14:31
梦·想
阅读(304)
推荐(0)