-
大小: 1.95MB文件类型: .rar金币: 2下载: 1 次发布日期: 2023-09-02
- 语言: 其他
- 标签: DeepLearning
资源简介
这是第一课第二周课程作业所需文件(不包括作业!!),如果需要作业的话,请移步到我的博客查看。
代码片段和文件信息
import numpy as np
import h5py
def load_dataset():
train_dataset = h5py.File(‘train_catvnoncat.h5‘ “r“)
train_set_x_orig = np.array(train_dataset[“train_set_x“][:]) # your train set features
print(train_set_x_orig.shape)
train_set_y_orig = np.array(train_dataset[“train_set_y“][:]) # your train set labels
print(train_set_y_orig.shape)
test_dataset = h5py.File(‘test_catvnoncat.h5‘ “r“)
test_set_x_orig = np.array(test_dataset[“test_set_x“][:]) # your test set features
test_set_y_orig = np.array(test_dataset[“test_set_y“][:]) # your test set labels
classes = np.array(test_dataset[“list_classes“][:]) # the list of classes
train_set_y_orig = train_set_y_orig.reshape((1 train_set_y_orig.shape[0]))
print(train_set_y_orig.shape)
test_set_y_orig = test_set_y_orig.reshape((1 test_set_y_orig.shape[0]))
return train_set_x_orig train_set_y_orig test_set_x_orig test_set_y_orig classes
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 974 2017-10-27 21:14 lr_utils.py
文件 616958 2017-10-26 21:24 test_catvnoncat.h5
文件 2572022 2017-10-26 21:24 train_catvnoncat.h5
----------- --------- ---------- ----- ----
3189954 3
相关资源
- 机器学习个人笔记完整版v5.2-A4打印版
- Neural Networks and DeepLearning - Michael Nie
- PyTorch介绍及入门pdf
- NeuralNetworksDeepLearning_jb51.rar
- 基于深度学习人脸识别
- 吴恩达老师深度学习第四课第一周4
- 吴恩达老师深度学习第二课第三周2
- 1825705zw_DeepLearning深度学习学习笔记整
- Deep Learning For Dummies
- 斯坦福大学-深度学习-cs230-DeepLearnin
- 吴恩达深度学习deeplearning第一课课后
- 深度学习DeepLearning中文+英文版
- 吴恩达 Deeplearning深度学习笔记v5.41.
- deep learning中文版花书
- deeplearning深度学习中文版无水印
- DeepLearningwithTensorFlow2nd+DeepLearningwith
- 《DeepLearning》深度学习圣经-IanGoodfe
- 《DeepLearning》深度学习圣经-IanGoodfe
- Deep-Learning-For-Computer-Vision-第一册sta
- 深度学习500问PDF.zip
- 包含了轮船,游船,渔船,帆船的普
- 吴恩达deeplearning.ai项目前两课程的全
- caffe imagenet_mean.binaryproto
- 吴恩达深度学习deeplearning第五课第一
- DeepLearninginNaturalLanguageProcessing.pdf
- Deeplearning(中文版)165626
- 深度学习DeepLearning
- Deeplearning4j官方手册
- TensorFlow For Machine Intelligence(非扫描版
- 动手学深度学习源代码
评论
共有 条评论