Atlassian uses cookies to improve your browsing experience, perform analytics and research, and conduct advertising. Accept all cookies to indicate that you agree to our use of cookies on your device. Atlassian cookies and tracking notice, (opens new window)
/
Technical User Reference (Optimization - Multifactor Elasticity)
Technical User Reference (Optimization - Multifactor Elasticity)
This section details the Model Class and the logics the Multifactor Elasticity Accelerator deploys. Each step’s aim, outputs, and main reasons to modify the logics are explained. If there is a need to modify the Python job, refer to Run Python Scripts.
The Multifactor Elasticity Model Class organizes a list of logics to create the model architecture. It is a JSON file that refers to some logics and it is transformed into an UI in the Pricefx platform that is organized in 4 steps:
Definition − Maps the transactions source and configures the model.
Additional Sources − Allows the user to define up to 3 additional sources to be included in the model training data.
Model Training − Checks the quality of the model after its training and defines the elasticity settings.
Model Predictions − Forecasts quantities and shows elasticity functions details.
There are two types of logics: calculation, which writes tables in the model, and evaluation, whose purpose is only to display some results. The standard Model Class definition is documented in Model Class (MC).
All the logics of the Multifactor Elasticity Model Class follow a standard naming convention: first MFE_ prefix, then the step number and name, then Calc or Eval, depending on the formula nature, then the tab it is referring to.
Library
The logic is MFE_Lib.
This logic contains some functions needed specifically for this Accelerator, such as reading its configuration from the application settings, applying the user filters in each part of the model, preprocessing the data for the charts, and many small helpers for the charts rendering. The elements ParametersUtils, TablesUtils, and LabelsUtils contain the names of many elements, tables and fields of the models.
This lib is the place to change input names inside the model to reflect the user business vocabulary. LabelsUtils contains text that is shown in the UI, ParametersUtils and TablesUtilscontain table names and parameter names, respectively. Here you can also write functions to be used in different places of the model class.
Definition Step
This step runs the MFE_1_Def_Calc_FetchData calculation and displays two tabs: Definition and Model Configuration.
Calculation: Generate Parameter Table
This logic generates a parameter table containing default model training parameters. If the table already exists, it does nothing.
The TrainingParameters parameter table.
To change the default values in the table.
Definition Tab
The logics are MFE_1_Def_Eval_Definition and MFE_1_Def_Eval_Definition_Configurator.
These logics define the Data Source and the mapping of the entries for the transactions, as well as some configuration of the outputs in the configurator. The main logic calls the configurator and the code for the dashboard portlets.
Two portlets show the selected data fields for the in-scope and filtered-out transactions.
The mapping could be changed if a field is removed or added. Default values of the configuration could be changed.
Model Configuration Tab
The logic is MFE_1_Def_Eval_ModelConfiguration.
This logic defines more advanced configuration of the forecasting model.
The inputs are stored to be used by the Python job which trains the model.
Default values of the configuration could be changed.
Additional Sources Step
This step allows the user to define up to 3 additional sources which will be added to the training data selected in the Definition step. The logics are MFE_2_Add_Eval_AdditionalSources and MFE_2_Add_Eval_AdditionalSources_Configurator.
These logics define the Additional Sources and the mapping of their fields to the fields of the source defined in the Definition step. The main logic calls the configurator and the code for the dashboard portlets.
The user inputs are stored to be used to load the sources into model tables in the Model Training Step. The contents of the selected sources are displayed in portlets.
Default values of the configuration could be changed.
Model Training Step
This step runs the MFE_3_Train_Calc_TrainModel calculation and displays the tabs Model Training Results, Train and Test Forecasts, Training curves, and Elasticity Settings.
Calculation: Train the Model
The logic is MFE_3_Train_Calc_TrainModel.
The aim of this logic is to gather the data and convert it into a form that can be used to train the forecasting model, store the data, train the model and store the results tables.
The steps are as follows:
StoreFraction.groovy – This element calculates the fraction of sales for each product in each store for the user inputted store_fraction_window and saves it as a table.
DataQuery.groovy – This logic takes the mapping and configuration from the Definition tab and defines a query on the source data that converts it from transactions to a complete aggregated time series for each product, filling missing quantity data with 0 and missing price data with the last known value. The query is then loaded into the Data model table.
DropExpiredTables.groovy – Drops the optional tables defined in the Additional Sources step to prevent them from being kept if the sources are removed.
LoadEventsTable.groovy, LoadMappedAdditionalSourceTable.groovy, LoadMultiFeatureAdditionalSourceTable.groovy – These logics take the optional sources from the Additional Sources step and aggregate them to match the aggregation done to the source data in DataQuery.groovy before loading them into model tables.
Train.groovy – This element collects the configuration for the forecasting model and triggers the Python job.
TrainScript.py – This element is a Python script that loads the data, further processes them to add new feature columns based on the Model Configuration tab inputs and trains the machine learning model.
The Groovy elements output the store_quantity_fraction, and Data tables.
The Python job triggered in Train.groovy will write a set of model tables, including both the processed input data and the model results. It will also add a copy of the model as an attachment in a pickle file called model.pkl. This writing is done directly by the Python job and is not related to a Groovy logic.
The following tables are produced:
processed_data – Final input data after all preprocessing.
X_train, X_test, y_train, and y_test – Data split into training and test data.
train_preds and test_preds – Training and test set model predictions, respectively.
The tables with suffix _curve – Metrics data tables used for producing charts in the Model Training step.
model_parameters – Model parameters used for training.
shap_values – Data for the Feature Importances chart in the Model Training step.
metrics_table – Data for the Metrics table in the Model Training step.
events_encoded – If an events source is set in the Additional Sources step, the events are encoded into a form usable in model training and saved into this table.
If you wish to change the model to use the per unit item price instead of the extended price, then change the following line in DataQuery.groovy:
(SUM($price) / NULLIF(SUM($quantity),0)) as price, to ISNULL((SUM($price * $quantity) / NULLIF(SUM($quantity), 0)), AVG($price)) as price,
This change will do two things: use the per unit item price instead of extended price to calculate the weighted average price, and default to the average price for a given time period if the total sales quantity in that time is 0.
Model Training Results Tab
The logic is MFE_3_Train_Eval_ModelTrainingResults.
This logic produces a dashboard with 3 charts and a table to visualize the model results. PredictVsActualTrain.groovy and PredictVsActualTest.groovy produce two similar charts for the model training data and test data, respectively.
Four portlets. Three charts showing the feature importances and scatter plots of the model predictions vs. the historical quantity for both the training and test data, and a table summarizing performance statistics.
Add, modify or remove visualizations.
Train and Test Forecasts Tab
The logics are MFE_3_Train_Eval_TrainTestForecasts and MFE_3_Train_Eval_TrainTestForecasts_Configurator.
This logic produces two similar charts, one for a single product, the other for the sum of all products. The configurator selects a single product from the list of unique products in the Data table, which is used in singleProductForecast.groovy to display that products forecast.
Two portlets showing the demand forecast for a single product and for the sum of all products. The shaded area in green represents results from the test data, the remaining data is from the training set.
Add, modify or remove visualizations.
Training Curves Tab
The logic is MFE_3_Train_Eval_TrainingCurves.
This logic displays the Training curve data. These are technical charts for assessing the model training.
Three portlets displaying the training curves for the three different metrics in the three _curve tables.
To modify or remove visualizations.
Elasticity Settings Tab
The logic is MFE_3_Train_Eval_ElasticitySettings.
This logic displays a configurator allowing the user to choose the settings for elasticity calculation in the Model Predictions step.
All the user inputs of this configurator are available in the next step.
Default values of the configuration could be changed.
Model Predictions Step
This step runs the MFE_4_Pred_Calc_Results and MFE_4_Pred_Calc_PostProcess calculations and displays two tabs: Overview and Details.
Calculation: Results
The logic is MFE_4_Pred_Calc_Results.
This calculation consists of the following steps:
FallbackProductsMinTransactions.groovy – If a fallback level is set, this element calculates the list of products which do not meet the minimum transaction threshold set in the Elasticity Settings tab of the Model Training step. The list of products is loaded into the fallback_products model table.
DropExpiredElasticityTables.groovy – This element drops expired elasticity tables if the “Calculate Elasticities” checkbox is unticked in the elasticity settings tab.
DropExpiredFallbackTable.groovy – This element drops expired fallback tables if the fallback level is not set in the Elasticity Settings tab.
Elasticity.groovy – This element collects the configuration for the elasticity calculation and triggers the Python job.
ElasticityScript.py – This element is a Python script that loads the data and then trains a final machine learning model using the parameters in model_parameters on the full dataset, producing a future forecast. It then uses the predictions from this model to generate elasticity curves for each product and number of time periods of the forecast and fits a logistic ('S') curve to the data.
The Python job triggered in Elasticity.groovy will write a set of model tables. This writing is done directly by the Python job and is not related to a Groovy logic.
The following tables are produced:
forecast – Future forecast outputs.
final_model_preds – Predictions of the final model on the training data.
elasticity_factors – Fitted curve parameters needed to reproduce the elasticity curves.
elasticity_data – Data used for plotting the elasticity curve charts.
elasticity_r2_scores – r² scores for the logistic curve fits.
simple_elasticity – The simple elasticity data to be used as the fallback for products that do not meet the minimum requirements chosen in the Elasticity Settings tab.
fallback_products – The products that do not meet the minimum transaction and minimum r² score requirements chosen in the Elasticity Settings tab.
There is no reason to edit this in general.
Calculation: Post Process
The logic is MFE_4_Pred_Calc_PostProcess.
This calculation precomputes the data needed for the summed forecast of all products portlet and stores it in a table. It is then loaded in the Overview Tab, leading to faster rendering and avoiding potential timeouts with large datasets.
Table summed_forecast used in Overview Tab.
There is no reason to edit this in general.
Overview Tab
The logic is MFE_4_Pred_Eval_Overview.
This logic displays charts and tables for the general results of the elasticity calculation for all products.
Portlets showing:
Summed forecast for all products.
Several histograms showing the distribution of the elasticity metrics.
Tables showing the elasticity and fallback elasticity data.
To add, modify, or remove charts or tables.
Details Tab
The logics are MFE_4_Pred_Eval_Details and MFE_4_Pred_Eval_Details_Configurator.
This logic displays charts and a table showing the results of the elasticity calculation for a single product and date of the forecast. The configurator selects a single product from the list of unique products in the forecast table, and a date from the available dates in the forecast table.
Portlets showing:
Forecast for a single product.
Elasticity curve for the product and period start date selected in the configurator.
Table showing the elasticity_factors data for the selected product.
To add, modify, or remove charts or tables.
Evaluation
The model has one evaluation with three elements that return information based on the given input: ElasticityFactorsTableName, ElasticityFallbackTableName, and Configuration. For more details about model evaluations see Query Optimization Engine Results | Using the Evaluator.
The logic is MFE_Eval_QueryResults.
It is a way for the models to communicate outside of themselves some basic information about their state:
It can provide the names of certain output tables so they may be accessed outside of the model.