05 2017 档案

摘要:from scipy.signal import savgol_filter import matplotlib.pyplot as plt cc = savgol_filter(c, 99, 1) plt.plot(c)plt.plot(cc)plt.show() from matplotlib.collections import LineCollection import numpy a... 阅读全文
posted @ 2017-05-31 17:22 微信公众号--共鸣圈 阅读(4013) 评论(0) 推荐(0)
摘要:http://download.igniterealtime.org/openfire/docs/latest/documentation/db-integration-guide.html Introduction This document provides instructions for i 阅读全文
posted @ 2017-05-28 17:26 微信公众号--共鸣圈 阅读(254) 评论(0) 推荐(0)
摘要:you can use sklearn's built-in tool: 注意: from sklearn.preprocessing import MinMaxScaler 中的 MinMaxScaler 只接受shape为 [n, 1] 的数据的缩放, [1, n]的shape的数据是不能缩放的 阅读全文
posted @ 2017-05-27 11:41 微信公众号--共鸣圈 阅读(260) 评论(0) 推荐(0)
摘要:https://groups.google.com/forum/#!topic/keras-users/Yob7mIDmTFs http://talc1.loria.fr/users/cerisara/posts/tflow/ The current Tensorflow sample on And 阅读全文
posted @ 2017-05-25 15:02 微信公众号--共鸣圈 阅读(1766) 评论(0) 推荐(0)
摘要:Compilation We first need to move the config file by running cp arch/arm/configs/bcmrpi_cutdown_defconfig .config # 看情况Then configure the kernel build 阅读全文
posted @ 2017-05-25 14:24 微信公众号--共鸣圈 阅读(733) 评论(0) 推荐(0)
摘要:https://tools.ietf.org/html/rfc4749 git://git.linphone.org/linphone-android.git http://stackoverflow.com/questions/31099875/how-to-integrate-g-729-cod 阅读全文
posted @ 2017-05-21 12:34 微信公众号--共鸣圈 阅读(2117) 评论(0) 推荐(0)
摘要:http://stackoverflow.com/questions/35133331/difference-between-session-dialog-and-transaction-in-sip http://sipforum.org/pipermail/discussion/2007-Aug 阅读全文
posted @ 2017-05-20 21:20 微信公众号--共鸣圈 阅读(1721) 评论(0) 推荐(0)
摘要:YUV格式有两大类:planar和packed。对于planar的YUV格式,先连续存储所有像素点的Y,紧接着存储所有像素点的U,随后是所有像素点的V。对于packed的YUV格式,每个像素点的Y,U,V是连续交*存储的。 YUV,分为三个分量,“Y”表示明亮度(Luminance或Luma),也就 阅读全文
posted @ 2017-05-20 11:28 微信公众号--共鸣圈 阅读(1137) 评论(0) 推荐(0)
摘要:这个实现比较优秀,可自行改成java的实现。 阅读全文
posted @ 2017-05-18 21:17 微信公众号--共鸣圈 阅读(1066) 评论(0) 推荐(0)
摘要:0、Principal component analysis (PCA) Principal component analysis (PCA) is a statistical procedure that uses an orthogonal transformation to convert a 阅读全文
posted @ 2017-05-17 23:25 微信公众号--共鸣圈 阅读(2951) 评论(0) 推荐(0)
摘要:I am going through the following blog on LSTM neural network:http://machinelearningmastery.com/understanding-stateful-lstm-recurrent-neural-networks-p 阅读全文
posted @ 2017-05-15 17:32 微信公众号--共鸣圈 阅读(6217) 评论(0) 推荐(0)
摘要:https://github.com/fchollet/keras-resources https://keras.io/ 阅读全文
posted @ 2017-05-15 09:28 微信公众号--共鸣圈 阅读(245) 评论(0) 推荐(0)
摘要:http://stackoverflow.com/questions/37312421/tensorflow-whats-the-difference-between-sparse-softmax-cross-entropy-with-logi Having two different functi 阅读全文
posted @ 2017-05-09 14:38 微信公众号--共鸣圈 阅读(2935) 评论(0) 推荐(0)
摘要:http://stackoverflow.com/questions/34870614/what-does-tf-nn-embedding-lookup-function-do embedding_lookup function retrieves rows of the params tensor 阅读全文
posted @ 2017-05-08 17:29 微信公众号--共鸣圈 阅读(3975) 评论(0) 推荐(0)
摘要:编辑~/.vimrc文件,添加 set t_Co=8 t_Co即terminal Color之意 注意,将 t_Co 设置为256 (或8以外的所有值) 时,mark 的显示不是很正常。 阅读全文
posted @ 2017-05-04 20:41 微信公众号--共鸣圈 阅读(663) 评论(0) 推荐(0)