Validating a machine learning model and getting it into production is the easy part. The hard part starts the day after go-live, when the data the model sees in the real world begins to diverge from the data it was trained on, when a vendor pushes a new model version, and when someone asks the uncomfortable question: how do you know the model still works?
Traditional computerized system validation assumes deterministic software. Same input, same output, forever, until a documented change. Machine learning breaks that assumption in two ways. First, the model is a statistical artifact whose correctness is probabilistic, not absolute. Second, the world it operates in moves, so a model that was correct at qualification can quietly degrade without a single line of code changing. This article covers the lifecycle controls that close that gap: drift detection, the locked versus continuously learning decision, retraining under change control, and the continuous monitoring program that holds it all together.
This is the post-deployment companion to the build-and-qualify work covered in validating AI GxP systems and building AI tools for GxP. Read those first if you have not validated an ML system before.
Why ML needs a lifecycle program, not just a validation
The regulatory basis
No single regulation says “machine learning.” The obligations are inherited from existing GxP frameworks, and you have to map them onto the ML problem.
- 21 CFR Part 11 (1997) and EU Annex 11 (2011) apply to any computerized system that creates, modifies, or maintains GxP electronic records. An ML model that decides whether a batch passes visual inspection, flags a deviation, or classifies an adverse event is producing GxP records and falls squarely inside these. Annex 11 clause 1 requires risk management across the full lifecycle, clause 10 requires change control, and clause 11 requires periodic evaluation that the system remains in a validated state. That periodic evaluation clause is the legal hook for continuous monitoring of a model.
- GAMP 5 Second Edition (ISPE, 2022) is the practical framework. The Second Edition explicitly addresses AI and ML in a dedicated appendix (Appendix D11, Artificial Intelligence and Machine Learning) and frames the problem as a lifecycle with ongoing performance monitoring, not a one-time test campaign. It introduces the idea that systems with adaptive or statistical behavior need controls proportionate to that behavior.
- FDA guidance “Computer Software Assurance for Production and Quality Management System Software” shifts the emphasis from documentation volume to critical thinking and risk. The 2022 draft was titled ”…Quality System Software,” first finalized on 24 September 2025 as ”…Production and Quality System Software,” then superseded by the version issued 3 February 2026, which added “Management” to the title to align with the Quality Management System Regulation (21 CFR Part 820). For ML, CSA is useful because it pushes you to spend assurance effort where the model can actually hurt a patient or a product, and to treat ongoing monitoring as part of the assurance story rather than a separate activity. See computer software assurance FDA.
- FDA guidance “Marketing Submission Recommendations for a Predetermined Change Control Plan for Artificial Intelligence-Enabled Device Software Functions” (final since December 2024, with the current version issued 18 August 2025) is written for medical devices, but it is the clearest regulatory thinking that exists on how to pre-authorize model changes. The Predetermined Change Control Plan (PCCP) concept, a pre-agreed envelope of allowed modifications plus the methods and acceptance criteria for making them, is directly transferable to GxP manufacturing and lab models even when no device submission is involved.
- ICH Q9(R1) Quality Risk Management (2023) governs how you assess and document the risk that drives all of the above.
- EU GMP Annex 22, “Artificial Intelligence” (draft, 2025) is the first GMP annex written specifically for AI in pharmaceutical manufacturing. The European Commission released the draft for public consultation on 7 July 2025; the consultation closed on 7 October 2025 and a final text is expected to follow. Verify its status and wording against the published source before you rely on it, because it is still a draft. As drafted, it takes a clear position that maps onto this article: static, deterministic AI/ML models can be used in critical GMP applications when they are qualified and kept under lifecycle control, while dynamic (continuously learning) models and generative AI are limited to non-critical uses with documented human oversight. That is the regulators putting the locked-by-default principle into a GMP text. A companion draft revision of Annex 11 (Computerised Systems) went out for consultation in the same period and reinforces data governance and periodic evaluation for systems that now include AI; treat both as direction-of-travel, not yet binding.
- FDA draft guidance “Considerations for the Use of Artificial Intelligence to Support Regulatory Decision-Making for Drug and Biological Products” (draft, 7 January 2025) is the drug and biologic counterpart to the device PCCP guidance, and a better audience fit for most readers here. It introduces a risk-based credibility-assessment framework keyed to the model’s context of use, and it explicitly covers the manufacturing and postmarketing phases where a model runs continuously and can drift. Where the article below talks about proving a model stays credible over its operating life, this is the guidance that frames it for drugs and biologics rather than devices.
The risk rationale is simple. A degraded model does not crash. It keeps returning confident answers that are increasingly wrong. A false-negative on a defect classifier ships bad product. A drifted adverse-event triage model under-reports a safety signal. Because the failure mode is silent, the control has to be active and continuous. You cannot inspect your way to confidence after the fact.
What “lifecycle” means here
The ML lifecycle in a GxP context has five phases that repeat: data and problem framing, build and train, validate and qualify, deploy, and operate. The operate phase is where this article lives, and it contains four mandatory elements:
- Continuous performance monitoring against pre-defined acceptance criteria.
- Drift detection (data drift, concept drift, and prediction drift).
- A retraining decision and execution process under change control.
- Periodic review and re-validation triggers.
Locked versus continuously learning models
This is the first and most consequential design decision, and inspectors increasingly ask about it directly.
The two model types
A locked model has fixed parameters after training. It produces the same output for the same input every time. You train it, freeze the weights, validate that frozen artifact, and deploy it. Any change to the weights is a new version that goes through change control. The overwhelming majority of GxP ML systems should be locked, and almost all defensible ones are.
A continuously learning model (also called adaptive or online learning) updates its parameters automatically as new data arrives in production. Its behavior at noon is not guaranteed to equal its behavior at 9am. This is genuinely difficult to validate because the validated state is a moving target, and most quality systems are not built to control software that changes itself.
The FDA’s own framing for AI-enabled devices uses “locked” versus “adaptive” algorithms, and the PCCP guidance, final since December 2024 and current in its 18 August 2025 version, exists precisely because adaptive algorithms cannot be handled by traditional one-time clearance. The same logic applies inside a GxP facility. The draft EU GMP Annex 22 lands in the same place from the manufacturing side: as written, it allows static, deterministic models in critical applications and pushes continuously learning models and generative AI out to non-critical uses with human oversight. When two regulators reach the same conclusion from opposite directions, the design default is settled. Lock the model unless you can write down a risk-justified reason not to.
How to decide
The decision is a risk-based one, documented in your validation plan and risk assessment.
| Factor | Favors locked | Favors continuous learning |
|---|---|---|
| Patient or product impact of a wrong output | High | Low |
| Stability of the input data distribution | Stable | Rapidly shifting (genuine drift you cannot retrain for fast enough) |
| Ability to validate each parameter state | Required | Hard to achieve |
| Traceability and reproducibility needs | High (GxP default) | Lower |
| Regulatory tolerance | Established | Emerging, needs strong controls |
Decision sequence:
- Define the GxP impact of an erroneous output via your risk assessment. If a wrong output can affect product quality, patient safety, or data integrity, default to locked.
- If you believe continuous learning is genuinely needed, ask whether scheduled retraining of a locked model on a defined cadence solves the same problem. Almost always, it does. Quarterly retrain-and-revalidate of a locked model gives you adaptivity without giving up control.
- Only if scheduled retraining cannot keep up with the real drift rate, and the risk is acceptable, consider continuous learning, and only with a PCCP-style pre-authorized change envelope plus automated guardrails (champion or challenger comparison, automatic rollback, bounded performance gates).
Acceptance criteria for the decision
Good looks like: a documented, risk-justified statement of model type in the validation plan; for locked models, an explicit rule that any weight change is a versioned, change-controlled event; for continuous-learning models, a pre-approved change protocol, defined performance boundaries the model may never cross, and an automatic rollback to the last validated state when it does.
Common mistake
The most common finding pattern in this area is a model that is described in documentation as “locked” but whose vendor silently updates it behind a cloud API. You validated version 3.1. The vendor is now serving 3.4 and never told you. If your model runs as a SaaS or cloud inference endpoint, you have not actually locked anything unless your supplier agreement and your monitoring catch version changes. See cloud SaaS validation and software supplier assessment CSA.
Drift: the three kinds and how to detect each
Drift is the reason a locked, validated model degrades without any change to its code. You must monitor for it, and you must know which kind you are dealing with because the response differs.
Data drift (covariate shift)
The distribution of the input features changes, even though the relationship between inputs and the correct answer has not. Example: a vision model for particulate inspection was trained on vials filled on line A. Production shifts to line B with a slightly different lighting geometry. The pixel-intensity distribution moves. The model may still be right, but you cannot assume it without checking.
How to detect:
- Compare the live feature distribution against the training (reference) distribution on a rolling window.
- Common statistical tests: the Population Stability Index (PSI), Kolmogorov-Smirnov test for continuous features, and chi-square for categorical features. Kullback-Leibler divergence and Jensen-Shannon distance are also used.
- A widely used PSI rule of thumb: below 0.1 means no meaningful shift, 0.1 to 0.25 means moderate shift worth investigating, above 0.25 means significant shift requiring action. Set your own thresholds and justify them; do not treat the rule of thumb as a validated limit.
Concept drift
The relationship between inputs and the correct output changes. The inputs may look the same, but the right answer is now different. Example: a model that predicts which deviations are likely to become CAPAs was trained before a process change. After the change, the same deviation signature now means something different. This is the most dangerous kind because input monitoring alone will not catch it.
How to detect:
- You need ground truth, which usually arrives with a delay. Track the model’s accuracy, precision, recall, or whichever metric matters, against confirmed outcomes over time.
- Where labels are slow, use proxy signals: a rising rate of human overrides of the model’s recommendation, a rising rate of downstream rework, or a shift in the model’s own confidence distribution.
Prediction drift (label drift)
The distribution of the model’s outputs changes. If a defect classifier that historically flags 2% of units suddenly flags 8%, something moved, and it is either a real process problem (good, the model is working) or the model has drifted (bad). Prediction drift is cheap to monitor because it needs no ground truth, so it is often your earliest warning, but it is ambiguous and must be triaged.
A worked drift-monitoring table
A monitored visual-inspection classifier, reviewed monthly:
| Metric | Reference (validated) | Current month | Threshold | Status |
|---|---|---|---|---|
| Input brightness PSI | 0.00 | 0.07 | < 0.10 | OK |
| Defect-feature PSI | 0.00 | 0.21 | < 0.10 warn, < 0.25 act | Warn, investigate |
| Reject rate (prediction drift) | 2.1% | 2.4% | 1.5% to 3.0% | OK |
| Recall on confirmed defects | 0.98 | 0.94 | >= 0.95 | Fail, action required |
| Human override rate | 3% | 9% | < 6% | Fail, action required |
This single table tells the story: inputs are mostly stable, but recall has dropped below the validated floor and humans are overriding the model three times more than at qualification. This is a concept-drift signal that triggers the retraining decision process.
Acceptance criteria
Good looks like: every model has a documented reference dataset, a defined set of drift metrics, numeric thresholds with a documented rationale, a monitoring cadence proportionate to risk, and defined actions for warn and act states. The thresholds are set before monitoring starts, not reverse-engineered to make the current data pass.
Common mistakes
- Monitoring only input drift and assuming the model is fine. Concept drift sails straight through input-only monitoring.
- No reference dataset retained, so there is nothing to compare against. The training data snapshot must be version-controlled and kept. See data lifecycle and metadata.
- Thresholds that were never justified, so when a regulator asks “why 0.25?”, there is no answer.
Continuous performance monitoring
Drift detection tells you the world has moved. Performance monitoring tells you whether that movement has actually broken the model. You need both.
What to monitor
Monitor at three levels:
- Model quality. The task-appropriate metrics: accuracy, precision, recall, F1, area under the ROC curve, mean absolute error, calibration. Pick the metric that maps to the GxP harm. For a defect classifier the cost of a false negative (shipping a defect) usually dwarfs a false positive, so recall and the false-negative rate are the headline metrics, not raw accuracy.
- Operational health. Latency, error rate, input data completeness, missing or out-of-range features, throughput. A model fed garbage produces garbage; input validation at inference time is part of monitoring.
- Human-in-the-loop signals. Override rate, time-to-override, and the agreement rate between the model and the qualified human reviewer. Rising disagreement is one of the earliest and most honest signals you have.
How to build the monitoring program
- Define the reference performance from the validation/qualification dataset. These become your acceptance floors.
- Set the monitoring frequency by risk. A high-impact model used in batch disposition might be reviewed monthly with automated daily alerting; a low-impact triage assist might be quarterly.
- Automate data collection. Log every prediction, the input features (or a hash plus reference), the model version, the timestamp, and where available the eventual ground truth. This log is a GxP record and must meet ALCOA+ principles. See ALCOA+ in detail and audit trail design and review.
- Define alert thresholds (warn and act) and route them to a named owner.
- Produce a periodic monitoring report that QA reviews and approves. This report is the documented evidence under Annex 11 clause 11 that the system remains in a validated state.
A sample monitoring report structure
- Header: model name, version, period covered, model owner, reviewer.
- Performance summary table: each metric, validated floor, current value, status.
- Drift summary: the drift table above.
- Events: any threshold breaches, alerts raised, investigations opened.
- Volume: number of predictions, number overridden, input data quality issues.
- Conclusion: model remains validated / model requires retraining / model suspended.
- Signatures: owner and QA, dated.
Acceptance criteria
Good looks like: a signed periodic monitoring report exists for every in-scope model, every reporting period, with no gaps; breaches are linked to deviations or change controls; and someone can pull the report in an inspection within minutes and show an unbroken chain of “the model still meets its validated performance.”
Common mistakes
- The model was validated and then nobody looked at it again. This is the single most common ML inspection gap. Validation evidence dated at go-live, nothing since.
- Monitoring exists in a data-science notebook that no one in quality has seen, with no signed report and no QA review. Monitoring that is not reviewed and approved does not count.
- Logging predictions without the model version, so when performance drops you cannot tell which version produced what. Always log the version.
Retraining under change control
When monitoring says the model has degraded, or when scheduled retraining comes due, you retrain. In a GxP environment retraining is a change to a validated system, and it goes through change control for validated systems. The trick is doing this without it taking three months every time.
The regulatory basis
Annex 11 clause 10 requires change control for computerized systems. GAMP 5 Second Edition requires changes to be assessed for impact and validated proportionately. For models, retraining changes the validated artifact (the weights), so by definition it needs assessment, testing against acceptance criteria, and approval before the new version goes live. The FDA PCCP guidance, final since December 2024 and current in the version issued 18 August 2025, gives you the mechanism to pre-authorize a defined class of these changes so each one does not require a fresh full validation.
What triggers retraining
Document your triggers explicitly:
- Performance breach: a monitored metric falls below its validated floor.
- Drift breach: a drift metric crosses the act threshold.
- Scheduled cadence: a planned retrain (for example quarterly) regardless of measured drift, to absorb slow accumulating shift.
- Data or process change: a known upstream change (new instrument, new product, process change) that you predict will move the input distribution.
- Defect found in the model: a discovered failure mode.
The retraining decision path
Before you start retraining, route the trigger through one decision: does this change fall inside the pre-authorized envelope, or not. That single fork decides whether you run a fast pre-approved protocol or a full change control. The path is the same shape every time.
The retraining procedure, step by step
- Open a change control referencing the trigger (the monitoring report, the deviation, or the schedule).
- Assess impact and risk. What does the change affect, what could go wrong, what level of testing is proportionate.
- Curate the retraining dataset. This is where most retraining goes wrong. The new training data must be representative, correctly labeled, free of leakage, and version-controlled. Document the dataset version, its provenance, and how labels were assigned and quality-checked. Garbage labels produce a worse model that passes superficial checks. See data criticality and data risk.
- Retrain using the documented, version-controlled training pipeline. The pipeline itself should be qualified so the process is reproducible.
- Validate the candidate (challenger) against acceptance criteria on a held-out test set that the model never saw in training. The new model must meet or exceed the validated performance floors, and must not regress on any safety-critical metric. Compare against the current production model (the champion).
- Check for regressions and fairness/bias where relevant, and confirm the candidate has not improved overall accuracy while quietly getting worse on a critical subgroup or defect type.
- QA review and approval of the validation evidence.
- Controlled deployment with the new version number, updated configuration, and an updated entry in the system inventory. Retain the previous version so you can roll back.
- Heightened monitoring for a defined post-deployment period to confirm the new version behaves in production as it did in test.
- Close the change control with all evidence attached.
Champion or challenger and the held-out set
The champion is the model currently in production. The challenger is the candidate. You never promote a challenger on training performance; you promote it only after it beats or matches the champion on an independent held-out test set under your pre-defined acceptance criteria. Keeping the test set strictly separate from training data is the discipline that prevents you fooling yourself, and data leakage between the two is one of the classic ways an ML “improvement” turns out to be illusory.
Predetermined Change Control Plan
A PCCP, borrowing the FDA device concept set out in the December 2024 final guidance and carried into its current 18 August 2025 version, lets you pre-approve a bounded class of changes. It documents three things:
- The types of changes you are pre-authorizing (for example, retraining on new production data of the same type, with no change to inputs, architecture, or intended use).
- The methods (the protocol) you will follow each time: the data curation rules, the training pipeline, the test protocol.
- The acceptance criteria the new version must meet, and the impact assessment confirming the change stays inside the envelope.
With an approved PCCP, a routine quarterly retrain executes against the pre-approved protocol and acceptance criteria without re-litigating the whole validation each time. A change outside the envelope (new input feature, new model architecture, new intended use) falls out of the PCCP and gets full change control. This is how you get fast, controlled retraining instead of slow uncontrolled retraining.
A worked retraining acceptance table
Challenger v3.2 evaluated against champion v3.1, held-out test set, defect classifier:
| Criterion | Champion v3.1 | Challenger v3.2 | Acceptance | Result |
|---|---|---|---|---|
| Recall (defects caught) | 0.96 | 0.98 | >= 0.96 and >= champion | Pass |
| False-negative rate | 4.0% | 2.0% | <= 4.0% | Pass |
| Precision | 0.91 | 0.89 | >= 0.85 | Pass |
| Recall on subgroup: cosmetic defects | 0.95 | 0.88 | >= 0.95 | Fail |
| Inference latency | 120 ms | 130 ms | <= 200 ms | Pass |
Even though the challenger improved overall recall and cut false negatives in half, it regressed on the cosmetic-defect subgroup below the floor. This challenger is rejected and sent back. The held-out subgroup check caught a regression that aggregate accuracy hid. This is exactly the kind of finding the process is designed to surface.
Roles and responsibilities
| Activity | Owner |
|---|---|
| Define triggers, thresholds, acceptance criteria | Model owner / SME with QA |
| Monitor performance and drift, raise alerts | Model owner / data science |
| Curate and version retraining data, retrain | Data science / SME |
| Independent validation of the challenger | Validation / QA-overseen, ideally not the same person who trained it |
| Review and approve change control and evidence | QA |
| Deploy, version, update inventory | IT / system owner under change control |
| Maintain supplier agreement and version notifications (for vendor models) | Vendor management / QA |
Common mistakes and inspection findings
- Retraining done informally by data science with no change control, no impact assessment, and no QA approval. A “we just refreshed the model” answer in an inspection is a finding waiting to be written.
- No held-out test set, or the test set leaked into training, so the validation evidence is meaningless.
- Acceptance criteria set after seeing the results so that the new model passes. Criteria must be pre-defined and approved.
- Old versions deleted, so there is no rollback path and no ability to reproduce a historical decision.
- The same person trains and validates with no independence. Separation of duties matters here as much as anywhere in GxP.
Putting it together: the operating model
A defensible ML operating model in GxP looks like this, end to end:
- The model is locked by default and version-controlled. The reference (training) dataset is retained and versioned.
- Every prediction is logged as a GxP record with version, timestamp, inputs, output, and eventual ground truth where available.
- Automated drift and performance monitoring runs continuously and alerts a named owner on warn and act thresholds.
- A signed periodic monitoring report is reviewed by QA every period, providing the Annex 11 clause 11 evidence that the system remains validated.
- A PCCP pre-authorizes routine retraining; everything outside the envelope gets full change control.
- Retraining runs champion or challenger against pre-defined acceptance criteria on an independent held-out set, with independent validation and QA approval, controlled deployment, heightened post-deploy monitoring, and a retained rollback version.
- A periodic review (annually or risk-based) revisits the whole thing: are the thresholds still right, has the intended use changed, is the supplier still qualified.
The single sentence that ties it to the regulations: the validated state of an ML system is not a point in time, it is a controlled, monitored, and continuously re-evidenced condition, and your job is to prove it has never lapsed.
Interview-ready questions and how to answer them
“How is validating a machine learning system different from validating normal software?” Normal software is deterministic and its correctness is binary, so you test it once and it stays correct until a documented change. An ML model is statistical, so its correctness is probabilistic, and it can degrade in production without any code change because the input data or the underlying relationships shift. That is why ML needs continuous performance monitoring, drift detection, and a retraining process under change control, not just a one-time validation. The validated state has to be re-evidenced over time.
“What is the difference between a locked and a continuously learning model, and which would you use?” A locked model has frozen parameters and gives the same output for the same input until a change-controlled version update. A continuously learning model updates itself in production. I default to locked for anything with GxP impact because the validated state stays stable and reproducible, and I use scheduled retrain-and-revalidate of a locked model to get adaptivity under control. Continuous learning is hard to validate because the validated state moves, and I would only consider it with a pre-approved change envelope and automatic rollback guardrails, citing the FDA’s locked-versus-adaptive framing.
“Walk me through how you detect drift.” Three kinds. Data drift is a shift in the input distribution, detected by comparing live data to the reference dataset using tests like Population Stability Index, Kolmogorov-Smirnov, or chi-square. Concept drift is a change in the input-to-output relationship, detected through ground-truth accuracy over time and proxies like rising human-override rates. Prediction drift is a shift in the output distribution, cheap to monitor and often the earliest warning but ambiguous. I monitor all three because input-only monitoring misses concept drift, which is the most dangerous kind.
“A vendor hosts your model as a cloud API. What is your concern?” That the vendor silently updates the model and breaks my locked-and-validated assumption. I need the supplier agreement to require version-change notification, I need monitoring that detects behavior changes, and I need to log the served model version with every prediction so I know which version produced which record. Without that, I have not actually locked anything.
“How do you retrain a model in a GxP environment?” Under change control. Trigger from monitoring, a deviation, or a schedule. Open the change, assess impact, curate and version the training data, retrain on a qualified pipeline, validate the challenger against pre-defined acceptance criteria on an independent held-out set, compare to the production champion including safety-critical subgroups, get independent validation and QA approval, deploy with a new version while retaining the old for rollback, then monitor with heightened scrutiny. A PCCP lets routine retrains run against a pre-approved protocol so each one is not a full revalidation.
“What is a Predetermined Change Control Plan?” From the 2024 FDA AI device guidance, it pre-authorizes a bounded class of model changes by documenting the types of changes allowed, the methods used to make them, and the acceptance criteria they must meet. It lets you make controlled, pre-agreed changes like routine retraining without a full new validation each time, while anything outside the envelope still gets full change control.
“What is EU GMP Annex 22 and why does it matter here?” It is the first GMP annex written specifically for AI in pharmaceutical manufacturing, released as a draft for consultation on 7 July 2025 with the consultation closing on 7 October 2025, so it is direction-of-travel rather than binding yet. As drafted it allows static, deterministic models in critical GMP applications under qualification and lifecycle control, and restricts continuously learning models and generative AI to non-critical uses with documented human oversight. It matters because it is the manufacturing-side regulator reaching the same locked-by-default conclusion the FDA reached for devices, so it strengthens the case for a locked model with controlled, periodic retraining. I would check its final status before quoting it.
“What evidence would you show an inspector that the model is still valid?” A continuous, gap-free series of signed periodic monitoring reports showing performance against the validated floors, the drift monitoring data, any breaches linked to deviations or change controls, the change-control records for every retrain with their acceptance evidence, and the retained version history. That chain demonstrates the Annex 11 clause 11 requirement that the system remains in a validated state.
“What is the most common failure you would expect to find?” Validation evidence dated at go-live and nothing since. The model was validated once and then nobody monitored it, so there is no evidence it still works, and quite possibly it has drifted. Closely behind that: informal retraining by data science with no change control.
Practical tips
- Set drift and performance thresholds before you start monitoring, and write down the rationale. Reverse-engineered thresholds are an instant credibility loss in an inspection.
- Keep the reference dataset versioned and immutable. If you cannot reproduce what the model was trained and validated against, you cannot defend anything downstream.
- Log the model version with every single prediction. It is the cheapest control you can add and the one whose absence hurts most.
- Treat the human-override rate as a leading indicator. It moves before your ground-truth metrics catch up and it is honest.
- Qualify the training pipeline, not just the model. Reproducible retraining depends on a controlled pipeline.
- Keep independence between whoever trains and whoever validates the challenger.
- For cloud-hosted models, get version-change notification into the supplier agreement and assume nothing.
- Do not over-engineer a low-risk assistive model. CSA thinking applies: spend the assurance effort where a wrong output can actually harm product or patient.
Related reading
- Validating AI GxP systems
- Building AI tools for GxP
- Computer software assurance FDA
- GAMP 5 CSV framework
- Change control for validated systems
- Cloud SaaS validation
- Software supplier assessment CSA
- Quality risk management
- Data criticality and data risk
- 21 CFR Part 11 and EU Annex 11
- Statistics in quality: Cpk and control charts