Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 1.89 KB

additional-1.md

File metadata and controls

18 lines (14 loc) · 1.89 KB

Additional - 1 - Continuous Learning:

Additional-1 requirements are a set of requirements that must be met in addition to baseline if an AI/ML application is continuously learning from a dynamic data source or feedback loops.

There are 6 questions in total that should be filled out by the development team/ML engineer for the application.

Questions highlighted in bold indicate those which require minor testing before the question can be answered.

Category Description
Data Have you tested for data drift?
Data drift occurs when new data causes a change in distribution and results in inaccurate predictions. Data drift can be of two types: feature drift (when the input data changes) or label drift (when the labels change causing prediction shifts).
Are there measures in place to prevent real-time data collection channels from failing?
Data collection channels could be APIs and links that connect to an updating training source or it could also be the feedback loop.
When datasets from external sources are updated, is there a system in place to process the new data on time?
Can the updated training data be randomized, sliced, or modified in any way that could distort the model's inference? If the model uses randomness, is the randomness generator recorded and protected?
Can you provide an example of real input data that is not present in your training data? Do you have a way for the model to handle this data?
Model Have you tested for concept drift?
Concept drift happens when the relationship between the feature set and the predicted outcome changes. For example, let's consider income was a predictor of home purchasing power. However, due to concept drift, income no longer significantly determines home purchasing power.