DeepLearning: 搭建多层神经网络

一步一步搭建多层神经网络识别猫 导入包 import numpy as np import h5py import matplotlib.pyplot as plt 工具函数 sigmoid def sigmoid(Z): ''' cache - as activation_cache ''' A=1/(1+np.exp(-Z)) cache=Z
相关文章
相关标签/搜索