P3-9.1 How Far Should the Current Problem Be Raised¶
Section ID:
P3-9.1Version:v2026.07.20
When looking at real records, the first reaction is often we have event records and at least some result notes, so shouldn't we raise this straight to a classification problem? But with real records, that move is often too fast. Some problems can truly become prediction problems, but others are more honestly left as problems of choosing review candidates well, and that also fits the current data state better. Once interpretation boundaries are set, the next step is to decide how far the current problem should be raised among alert, review candidate, and label prediction.
The first judgment to hold is how far does the current data honestly support. An alert can begin with comparison structure and difference values alone. A review candidate needs additional priority criteria. Label prediction requires a relatively stable target label and an evaluation setup as well.
| Category | Meaning at this stage | Required evidence level |
|---|---|---|
| Alert | A notice that something different from the usual state appears and should be seen first | Comparison structure and difference value |
| Review candidate | A case that is worth human rechecking in practice | Change signal + judgment context + priority judgment |
| Label prediction | A problem of matching an already defined target label | Relatively stable labels and a learning structure |
An alert is the lightest. If a difference from the baseline is visible, it can be made. A review candidate is one step heavier. A change must be visible, and it must also be worth human rechecking. Label prediction is the heaviest. The target label must be clear, the label must attach relatively stably, and the learning and evaluation structure must be ready.
You should not read this difference only as is the problem simple or complex. The more important question is what can be said honestly in the current data state. Alerts can begin from comparison structure alone, but label prediction needs much stronger commitments. Raising a problem upward is therefore not automatically better. It means changing it into a problem that demands stronger evidence.
The last stage is often the hardest in real problems. For example, a judgment column such as review needed may be possible, while confirmed labels such as actual cause or detailed state type may still be weak. One symptom can arise from many causes, and sometimes a person records the reason only later. If you force such a situation into a classification problem, you end up building a complicated problem frame before label quality is ready.
At this stage, the following three questions should be checked immediately.
- Is what you need right now automatic matching, or review prioritization?
- Are labels actually sufficient?
- Is a comparison report more realistic than a classification problem?
Written more directly, the difference looks like this.
| Stage | Example input | Example output | What must exist first | What should not be raised yet if missing |
|---|---|---|---|---|
| Alert | Difference between recent window and baseline | caution | Comparison structure and difference value | Cause label |
| Review candidate | Difference value + repeatability + judgment conditions | look first | Alert + repeatability + priority criteria | Stable target label |
| Label prediction | Event-level feature table | normal/abnormal or a specific state | Relatively stable target label and evaluation setup | Building a complex classification problem before labels are sufficient |
So you do not move to a higher learning problem simply because you want to raise it. You move upward only when enough evidence has accumulated at the lower stage.
If you judge where to stop right now like the table below, forced problem escalation decreases.
| Current confirmed state | Output at this stage | Stage not yet raised |
|---|---|---|
| Only the difference from baseline is stable | Alert | Review candidate, label prediction |
| Difference plus repeatability and priority rules exist | Review candidate | Label prediction |
| Target labels are relatively stable and an evaluation setup exists | Label prediction | None |
In practice, this usually becomes the following order.
- Compare the recent window with the baseline and create an alert signal.
- Add repeatability, sample size, and judgment context to choose review candidates.
- If relatively stable judgment labels accumulate through that process, consider a prediction problem.
Prediction is therefore not the starting point. It becomes worth considering only after the evidence and structure from earlier stages are sufficiently organized. For some problems, it can remain more honest to leave them as a comparison report and a review queue all the way through. There is no need to force a judgment that is already well supported by comparison structure alone upward into a label-prediction problem.
A Small Diagram¶
flowchart TD
A[Current data state]
A --> B{Only comparison signal?}
B -->|Yes| C[Stop at alert]
B -->|No| D{Signal + review rules?}
D -->|Yes| E[Stop at review candidate]
D -->|No| F{Stable target labels + evaluation setup?}
F -->|Yes| G[Move to label prediction]
F -->|No| E
This diagram shows that the judgment of raising a problem upward is not always move one stage higher, but a branch that asks what level of evidence currently exists. It is not about listing label names, but about separating, step by step, whether to stop at alert, whether to go to review candidate, or whether to raise it to label prediction. The key is that an alert is a change signal, a review candidate is review prioritization, and label prediction is a stronger problem setup than both. How far the current problem should be raised must be judged not by is it more advanced, but by how far does the current data honestly support.
Sources and References¶
- U.S. Bureau of Labor Statistics (BLS), BLS Handbook of Methods: Glossary, base period. Used to check the idea that a base period or point in time can serve as a reference for comparison. https://www.bls.gov/bls/glossary.htm / Accessed: 2026-07-20
- National Cancer Institute (NCI), NCI Dictionary of Cancer Terms: baseline, baseline. Used to check the idea that an initial measurement can serve as a comparison point for later change. https://www.cancer.gov/publications/dictionaries/cancer-terms/def/baseline / Accessed: 2026-07-20
- Google, Machine Learning Glossary,
label,labeled example,proxy labels. Used to check what labels and proxy labels mean and why proxy labels need care. https://developers.google.com/machine-learning/glossary / Accessed: 2026-07-20 - NIST/SEMATECH, e-Handbook of Statistical Methods: What are Variables Control Charts?, signal detection and process monitoring. Used to check the statistical monitoring view in which baselines and variation support signal detection. https://www.itl.nist.gov/div898/handbook/pmc/section3/pmc32.htm / Accessed: 2026-07-20