My basic data set is a merge of 3 origin-destination matrixes (one per transportation mode). These matrixes are the "observed" data. The modal choice model has to estimate/predict the modal split for each OD pair.
At the end, I compare the result of the modal-split model to the observations, on a per OD basis. How can I compare the performance of the different modal-split models I use in order to chose the "best" ?
My first guess is to use an estimator such as MSE, MAE, MAPE or SMAPE. Which is the best? Should I use them on the absolute values (transported tons in my case) or on the modal split (expressed in % for each OD pair) ?
Are there other good estimators ?
Any suggestion is welcome.