自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(8)
  • 资源 (2)
  • 收藏
  • 关注

原创 Oh My Posh美化CMD、Anaconda Prompt解决方案

Oh My Posh美化CMD、Anaconda Prompt解决方案

2022-12-18 14:10:50 1249 1

原创 常用matplotlib.pyplot画图系列(组)

1. 画两组数据的对比折线图import numpy as npimport matplotlib.pyplot as pltalist = [4,5,7,1,3,7,4,9,4,2] # 也可以是ndarray类型blist = [8,3,6,1,0,4,5,9,2,7]t_plt, = plt.plot(np.arange(1, len(alist)+1), alist, 'r

2017-08-29 14:26:47 1282

转载 tensorflow:用dynamic_rnn处理不定长序列,对序列做padding处理

1. 数据处理(padding zero)首先,我有一个list类型的数据集,按最长将序列的长度存储,不足长度的后面padding zero。将数据集存为ndarray类型的矩阵:import numpy as np​dataset = [[[1], [2], [3], [4]], # list类型的数据集,有4个序列, feature_dim=1

2017-07-31 10:16:11 15366 1

原创 tensorflow:tf.stack的用法

堆叠list类型的数据:import tensorflow as tflist_ = [[1, 2, 3], [4, 5, 6]]print(type(list_))a = tf.stack(list_, 0)print(a.get_shape().as_list())输出结果:[2, 3]

2017-07-12 09:26:51 6066

原创 sklearn的precision_score, recall_score, f1_score使用

from sklearn.metrics import precision_score, recall_score, f1_scorey_true = [0, 1, 1, 0, 1, 0]y_pred = [1, 1, 1, 0, 0, 1]p = precision_score(y_true, y_pred, average='binary')r = recall_score(y_t

2017-07-12 09:23:28 28810 1

原创 tensorflow报错:Shape must be rank 2 but is rank 3 for 'MatMul' (op: 'MatMul')

tensorflow矩阵相乘,秩不同报错在tensorflow中写了这样一句:y_out = tf.matmul(outputs, W)其中,outputs的shape为[16,336,400],W的shape为[400,1]出现以下报错:Shape must be rank 2 but is rank 3 for 'MatMul' (op: 'MatMul') with

2017-07-03 09:58:01 18530 1

原创 matplotlib.pyplot画灰度图

以画MNIST手写体为例:import matplotlib.pyplot as pltfrom tensorflow.contrib.learn.python.learn.datasets.mnist import read_data_setsmnist = read_data_sets('MNIST_data', one_hot=False)x, y = mnist.test.n

2017-05-31 10:55:07 25070

原创 TypeError: Fetch argument None has invalid type <class 'NoneType'>解决方案

Tensorflow报错:TypeError: Fetch argument None has invalid type 报错完整内容: File "D:/Workspace/SpyderWorkspace/Models/RBM_mnist.py", line 211, in main sess.run(rbm.train_ops(k, step, i),feed

2017-05-31 10:11:52 31714

qtp测试用例及测试脚本

这是一个用qtp录制的脚本,每一个Action对应一个测试用例。 包括数据驱动,action调用,低级录制,场景恢复,功能键测试,检查点测试,正则表达式运用等。

2011-12-23

SSH整合项目

这是一个struts2+hibernate+spring整合的项目, 用MyEclipse开发,hibernate的配置文件写到spring的配置文件applicationContext.xml里面,简单实现了登录检查和从数据库检索到的列表信息

2011-12-23

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除