摘要:
import matplotlib.pyplot as plt import math import numpy as np x = np.arange(-0.85,0.95,0.05) #获得函数结果 y1 = [math.log(1-a) for a in x] #画图 plt.plot(x, 阅读全文
摘要:
1.KL散度 KL散度( Kullback–Leibler divergence)是描述两个概率分布P和Q差异的一种测度。对于两个概率分布P、Q,二者越相似,KL散度越小。 KL散度的性质:P表示真实分布,Q表示P的拟合分布 非负性:KL(P||Q)>=0,当P=Q时,KL(P||Q)=0; 反身性 阅读全文
摘要:
pip install theano==0.9 写成pip install theano == 0.9会报错 阅读全文