- 博客(8)
- 资源 (13)
- 收藏
- 关注
原创 python threading
def __init__(self, group=None, target=None, name=None, args=(), kwargs=None, *, daemon=None): """This constructor should always be called with keyword arguments. Arguments are...
2018-09-27 22:10:17
461
转载 Animation 动画
https://morvanzhou.github.io/tutorials/data-manipulation/plt/5-1-animation/
2018-08-20 19:29:42
270
转载 Subplot 多合一显示
https://morvanzhou.github.io/tutorials/data-manipulation/plt/4-1-subpot1/ import matplotlib.pyplot as plt plt.figure() #小图1 #plt.subplot(2,2,1) plt.subplot(2,1,1) plt.plot([0,1],[0,1]) #图2 #plt.subp...
2018-08-20 16:26:29
577
原创 python-Image 图片
import matplotlib.pyplot as plt import numpy as np from PIL import Image im = Image.open("girl.jpg") print(im.format, im.size, im.mode) arr = np.array(im) print(arr.shape, arr.dtype) #a=arr.reshape(6...
2018-08-20 14:16:46
335
原创 tensorflow ---y=kx+b
import tensorflow as tf import numpy as np import matplotlib.pyplot as plt #样本 #使用NUMPY 生产100个随机点 x_data = np.random.rand(60) #直线模型 K=0.1 常量为0.3 y_data = x_data*1.30000023 +0.300220 #优化接近或等于样本 #构造一...
2018-08-15 15:33:33
946
转载 Tensorflow 笔记可视化 plot result (神经网络 教学教程tutorial)
import tensorflow as tf import numpy as np import matplotlib.pyplot as plt def add_layer(inputs,in_size ,out_size,activation_function=None): Weights = tf.Variable(tf.random_normal([in_size,out...
2018-08-15 15:29:24
962
转载 Tensorflow笔记 --add_layer
import tensorflow as tf import numpy as np def add_layer(inputs,in_size ,out_size,activation_function=None): Weights = tf.Variable(tf.random_normal([in_size,out_size])) biases = tf.Variable...
2018-08-15 09:59:49
1113
Linux系统下的ELF文件分析
2011-07-06
untitled.pdf
2019-10-21
图像处理_科研实例与程序
2011-07-06
Error performance of transmit beamforming with delayed and limited feedback
2010-06-27
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人