吴恩达深度学习
KevinDB
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
深度学习Course1-week3课后作业-包含一个隐藏层的平面数据分类
By completing this assignment you will: Develop an intuition of back-propagation and see it work on data. Recognize that the more hidden layers you have the more complex structure you could captur...原创 2019-07-07 19:13:34 · 247 阅读 · 0 评论 -
关于week2中的一些不熟悉的代码
关于week2中的一些不熟悉的代码 from lr_utils import load_dataset ## Loading the data (cat/non-cat) train_set_x_orig, train_set_y, test_set_x_orig, test_set_y, classes = load_dataset() lr_utils是一个自己写的.py文件,从lr_...原创 2019-06-24 17:53:35 · 498 阅读 · 0 评论 -
深度学习Course1-Week2课后作业-使用神经网络实现的logistic回归
使用神经网络实现的logistic回归 week2 import numpy as np import matplotlib.pyplot as plt import h5py import scipy from PIL import Image from scipy import ndimage from lr_utils import load_dataset ## Loading th...原创 2019-06-24 18:14:55 · 388 阅读 · 0 评论
分享