VGG pytorch代码
2022-04-13 09:14:03 2.96MB pytorch 人工智能 python 深度学习
1
resnet pytorch代码
2022-04-13 09:13:57 161KB pytorch 人工智能 python 深度学习
1
DenseNet pytorch代码
2022-04-13 09:13:55 168KB pytorch 人工智能 python 深度学习
1
Python深度学习》中文版pdf+英文版pdf+源代码,详细请看文件内部文件,资源收集不易:)
2022-04-12 22:35:31 30.43MB pdf
1
深度学习建模预测全流程(Python)实战分析.docx
2022-04-12 14:06:33 2.2MB python 深度学习 开发语言 数据仓库
python中文深度学习语音识别系统
2022-04-08 17:06:40 26.09MB python 深度学习 语音识别 开发语言
Tensorflow声纹识别说话人识别
2022-04-08 12:06:13 302.34MB tensorflow 人工智能 python 深度学习
python 深度学习 PDF版 高清有目录。
2022-04-07 17:06:02 23.21MB python 深度学习 机器学习 开发语言
1
def sigmoid(x): result = 1 / (1 + math.e ** (-x)) return result def tanh(x): # result = np.exp(x)-np.exp(-x)/np.exp(x)+np.exp(-x) result = (math.e ** (x) - math.e ** (-x)) / (math.e ** (x) + math.e ** (-x)) return result def relu(x): result = np.maximum(0, x) return result def elu(x, alpha=1): a = x[x > 0] b = alpha * (math.e ** (x[x < 0]) - 1) result = np.concatenate((b, a), axis=0) return result def leaky(x): a = x[x > 0] b = 0.1 * x[
2022-04-07 12:05:54 181KB python 深度学习 开发语言 人工智能
1
Tensorflow-gpu版本缺少的dll文件
2022-04-07 09:09:30 245.82MB tensorflow 人工智能 python 深度学习
1