Learn Before
Diagnose the mistake in a team's use of cat-image data.
Case context: A team downloads cat and non-cat pictures from different websites. It labels them as positive and negative examples but refuses to run its learning algorithm on them because it believes every dataset must remain untouched until evaluation.
Question: What has the team misunderstood, and how should it use these pictures?
Sample answer: The team has confused a training dataset with a test dataset. It should assemble the labeled cat and non-cat pictures into a large training set and run the learning algorithm on that set so the model parameters can be updated. Data reserved as a test set should remain held out for evaluation.
Key points:
- The downloaded pictures can form a training set.
- Cat pictures are positive examples.
- Non-cat pictures are negative examples.
- The learning algorithm should run on the training set.
- A test dataset is held out for evaluation.
Rubric: The response should diagnose the training-versus-test confusion and recommend using the labeled pictures for learning while keeping test data reserved for evaluation.
0
1
Tags
Deep Learning
Data Science
D2L
Dive into Deep Learning @ D2L
Machine Learning
Supervised Learning
Machine Learning Strategy
Machine Learning Yearning @ DeepLearning.AI
Related
Nonparametric Models
Fashion-MNIST Dataset
Definition of Realizable Dataset
Which statement best describes the role of a training dataset?
Is the training dataset held out strictly for evaluation?
The learning algorithm runs on the _____ dataset.
Match each dataset concept with its correct description.
Order the steps for creating and using the cat training set.
Explain why training and test datasets have different roles.
Diagnose the mistake in a team's use of cat-image data.
How is a training dataset used during learning?
Which partition should contain examples used to optimize a Fashion-MNIST model?
Can one training set contain both positive and negative examples?