Creating registered models from data transformations
As defined, in Concepts, the model class for a Verta Standard Model must extend VertaModelBase. So long as the model class implements that interface, the class logic itself may include only ML logic or it can also include data transformation logic.
This guide shows an example of how to define an RMV that consists only of a data transformation.
Suppose the function we seek to deploy is a simple cubic function as follows. (Note: this can be absolutely any function including one that queries a database or one with artifact dependencies like this guide.)
Next step is to wrap this function within a class that extends VertaModelBase.
That's it. Register this RMV for deployment and further use.
Find the full code for this Guide here.
Last updated