From 1ab9a752ddcdc21350ad95491d82bcc2a72bd28a Mon Sep 17 00:00:00 2001 From: livc Date: Thu, 9 Feb 2017 22:44:10 +0800 Subject: [PATCH] Fixed a syntax error that caused LINKS failed in index.html of image_classification --- image_classification/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/image_classification/index.html b/image_classification/index.html index be173c3..6937224 100644 --- a/image_classification/index.html +++ b/image_classification/index.html @@ -179,9 +179,9 @@ ResNet(Residual Network) \[[15](#参考文献)\] 是2015年ImageNet图像分类 ### 数据介绍与下载 -通用图像分类公开的标准数据集常用的有[CIFAR]()数据集。CIFAR10数据集包含60,000张32x32的彩色图片,10个类别,每个类包含6,000张。其中50,000张图片作为训练集,10000张作为测试集。图11从每个类别中随机抽取了10张图片,展示了所有的类别。 +由于ImageNet数据集较大,下载和训练较慢,为了方便大家学习,我们使用[CIFAR10](https://www.cs.toronto.edu/~kriz/cifar.html)数据集。CIFAR10数据集包含60,000张32x32的彩色图片,10个类别,每个类包含6,000张。其中50,000张图片作为训练集,10000张作为测试集。图11从每个类别中随机抽取了10张图片,展示了所有的类别。


-- GitLab