freeCodeCamp/curriculum/challenges/chinese/11-machine-learning-with-py.../machine-learning-with-pytho.../cat-and-dog-image-classifie...

34 lines
1.3 KiB
Markdown

---
id: 5e46f8dcac417301a38fb92e
title: 猫狗图像分类器
challengeType: 10
forumTopicId: 462377
dashedName: cat-and-dog-image-classifier
---
# --description--
在这个挑战中,你将使用 TensorFlow 2.0 和 Keras 创建一个卷积神经网络,对猫和狗的图像进行正确分类,准确率至少达到 63%。
你可以访问 [Google Colaboratory 上的完整项目说明和启动代码](https://colab.research.google.com/github/freeCodeCamp/boilerplate-cat-and-dog-image-classifier/blob/master/fcc_cat_dog.ipynb)。
进入该链接后,在你自己的账户或本地创建一个笔记本的副本。 一旦你完成项目并通过链接中的测试,请在下面提交你的项目链接。 如果你提交的是 Google Colaboratory 的链接,请确保打开链接共享时选择 “anyone with the link”。
我们仍在开发机器学习课程的交互式课程部分。 现在,你可以通过这个认证视频挑战。 你可能还需要寻找额外的学习资源,类似于你在真实世界项目中的工作。
# --hints--
它应该通过所有的 Python 测试。
```js
```
# --solutions--
```py
# Python challenges don't need solutions,
# because they would need to be tested against a full working project.
# Please check our contributing guidelines to learn more.
```