Development: Loading a New Version of an Action Set as an Alias
Scénario de test & Cas d'usage
Business Context
A data science team is developing a new version of a scoring algorithm. They need to load the new version ('scoringModel_v2') from the same saved table as the original ('scoringModel_v1') to run comparison tests without overwriting the original action set in the session.
Define a base scoring action set named 'scoringModel_v1' and save it to a table named 'scoring_model_repo'. This table acts as a repository for the model's definition.
Load the exact same action set from the same repository table, but use the 'name' parameter to give it a new alias, 'scoringModel_v2', for side-by-side testing.
Two distinct action sets, 'scoringModel_v1' and 'scoringModel_v2', are present in the session, both loaded from the same source table. This confirms that the 'name' parameter successfully creates a new, aliased instance of the action set, enabling version comparison.