摘要: template <class Type>Type stringToNum(const string str) { istringstream iss(str); Type num; iss >> num; return num;}template<typename T> string toStri 阅读全文
posted @ 2018-05-31 12:59 The_kat 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-05-23 09:41 The_kat 阅读(86) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/Fate_fjh/article/details/52882134 阅读全文
posted @ 2018-05-23 09:41 The_kat 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 分别是16个5*5的一通道的卷积核,以及16个偏移量。A2是转置一下,为了输出每一个卷积核,TensorFlow保存张量方法和人的理解有很大区别,A21 A31 A41 A51都是卷积核的权重矩阵偏移量 ———————————————————————————————————————————————— 阅读全文
posted @ 2018-05-22 12:38 The_kat 阅读(1418) 评论(0) 推荐(0) 编辑
摘要: import pandas as pddata = pd.read_csv("Apool0.txt", sep=',', header=None)columns = []for col in range(len(data.columns)): columns.append(col)print (da 阅读全文
posted @ 2018-05-22 10:04 The_kat 阅读(2631) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-05-06 13:17 The_kat 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 转自https://www.cnblogs.com/pinard/p/6494810.html 阅读全文
posted @ 2018-05-06 10:20 The_kat 阅读(167) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/wyansai/article/details/51178631 重要的设置: 阅读全文
posted @ 2018-04-26 12:18 The_kat 阅读(121) 评论(0) 推荐(0) 编辑
摘要: http://www.tensorfly.cn/tfdoc/tutorials/mnist_pros.html 建立一个拥有一个线性层的softmax回归模型 —————————————————————————————————————————————————————————————————————— 阅读全文
posted @ 2018-03-09 12:22 The_kat 阅读(406) 评论(0) 推荐(0) 编辑
摘要: //读写#include "global.h"#include <iostream>#include <fstream> //读取文件数据的函数fin的头文件#include <sstream> //istringstream 必须包含这个头文件using namespace std; using 阅读全文
posted @ 2017-12-19 13:31 The_kat 阅读(9678) 评论(1) 推荐(0) 编辑