Learn Before
Assess a source tag for resolving conflicting labels in a two-region pricing model.
Case context: You are building a model to predict the sale price of used bicycles. Your training data comes from two regions, Coastal and Inland, where similar bicycles often sell for very different amounts because local demand and shipping costs differ. You are considering adding a feature that identifies the region for each training example.
Question: Based on the underlying principle, explain what this region tag does to the target value y and whether this is a common practice in machine learning.
Sample answer: Adding the region tag to the input x makes the target y better defined, because the same bicycle can map to different prices depending on whether it comes from Coastal or Inland. This removes the ambiguity in the training examples. Even so, this kind of source-indicator feature is not a standard solution that people use very often in practice.
Key points:
- A region tag in x makes y less ambiguous.
- The feature helps separate examples from Coastal and Inland.
- The idea is clear and valid, but it is not widely used as a routine fix.
Rubric: The evaluation must say that specifying the region in input x makes the target value unambiguous and note that this approach is not commonly used in practice.
0
1
Tags
Machine Learning
Deep Learning
Supervised Learning
Dive into Deep Learning @ D2L
Data Science
Machine Learning Strategy
Machine Learning Yearning @ DeepLearning.AI
Related
What is the main benefit of adding a source label feature when training a model on apartment data collected from both coastal and inland cities?
True or False: In mixed-source training data, adding a source-ID feature is a standard practical fix for inconsistent labels or distributions.
What changes when a city code is added as an input feature for each training example?
Adding Source Information to Resolve Label Ambiguity
True or False: Adding a location indicator to x can remove label ambiguity when the same features appear in different places.
When x already includes the store location, the target value of _____ is no longer ambiguous.
Match each concept in the source-indicator method with its description.
Order the steps for adding a source ID feature when training data from different sources gives conflicting labels.
What is the practical status of adding a source-indicator feature when data from different collection systems have different patterns?
Andrew Ng describes the source-indicator feature as a common default fix for inconsistent data.
In a retail-sales dataset, adding a feature for the _____ can remove ambiguity when the same item is logged by different branches.
Match each description to its role in a source-indicator feature design.
Order the steps for using a source-ID feature when the same inputs can imply different outputs.
How can a source ID feature help with mixed-source data, and what is its main drawback?
Assess a source tag for resolving conflicting labels in a two-region pricing model.
Why a location indicator can resolve mixed housing-price data