Overview of RSMTool Pipeline¶
The following figure gives an overview of the RSMTool pipeline:

As its primary input, RSMTool takes a data file containing a table with numeric, non-sparse features and a human scores for all responses, pre-processes them and lets you train a regression-based Scoring Model to predict the human score from the features. Available regression models include Ridge, SVR, AdaBoost, and Random Forests, among many others.
This trained model can then be used to generate scores for a held-out evaluation data whose feature values are pre-processed using the same Pre-processing Parameters. In addition to the raw scores predicted by the model, the Prediction Analysis component of the pipline generates several additional post-processed scores that are commonly used in automated scoring.
The primary output of RSMTool is a comprehensive, customizable HTML statistical report that contains the multiple analyses required for a comprehensive evaluation of an automated scoring model including descriptive analyses for all features, model analyses, subgroup comparisons, as well as several different evaluation measures illustrating model efficacy. More Details about these analyses can be found in this documentaion and in a separate technical paper.
In addition to the HTML report, RSMTool also saves the intermediate outputs of all of the performed analyses as CSV files.
Input file format¶
The input files for the training and evaluation data should either be in a tabular format with responses as rows and features and score(s) in the columns in the jsonlines
format with a JSON object per responses on each line. See below for a more detailed description of the .jsonlines
format.
RSMTool supports input files in .csv
, .tsv
, .sas7bdat
, .xlsx
, or .jsonlines
format. The format of the file is determined based on the extension. In all cases the output files will be saved in .csv
format by default (see file format for other intermediate file output options).
For Excel
spreadsheets, all data must be stored in the first sheet.
Note
RSMTool 8.1 and higher no longer support .xls
files. All Excel files must be in .xlsx
format.
In a .jsonlines
format file, each line corresponds to a response and is represented as a dictionary with column names as the keys and column values as the values. For example:
{"id":"RESPONSE_1","FEATURE1":4.9380646013,"FEATURE2":-0.0584019308,"FEATURE3":-0.0846667513,"FEATURE4":-0.3167939755,"FEATURE5":-0.059868434,"FEATURE6":4.6559139785,"FEATURE7":16,"FEATURE8":-7940.9812058284,"LENGTH":279,"QUESTION":"QUESTION_1","L1":"Esperanto","y":3,"score2":3}
{"id":"RESPONSE_2","FEATURE1":5.3798973535,"FEATURE2":-0.0781006576,"FEATURE3":-0.1592030845,"FEATURE4":-0.2715376933,"FEATURE5":-0.1073346977,"FEATURE6":4.7626728111,"FEATURE7":10,"FEATURE8":-6683.4324801506,"LENGTH":434,"QUESTION":"QUESTION_1","L1":"Klingon","y":4,"score2":4}
Although RSMTool does allow for nesting in the JSON objects on each line of a .jsonlines
format file, the top-level keys will be ignored when parsing the files and processing the data. Therefore, in the example below, the keys x
and metadata
will be ignored.
{"id":"RESPONSE_1","y":3,"x":{"FEATURE1":4.9380646013,"FEATURE2":-0.0584019308,"FEATURE3":-0.0846667513,"FEATURE4":-0.3167939755,"FEATURE5":-0.059868434,"FEATURE6":4.6559139785,"FEATURE7":16.0,"FEATURE8":-7940.9812058284},"metadata":{"LENGTH":279,"QUESTION":"QUESTION_1","L1":"Esperanto","score2":3}}
{"id":"RESPONSE_2","y":4,"x":{"FEATURE1":5.3798973535,"FEATURE2":-0.0781006576,"FEATURE3":-0.1592030845,"FEATURE4":-0.2715376933,"FEATURE5":-0.1073346977,"FEATURE6":4.7626728111,"FEATURE7":10.0,"FEATURE8":-6683.4324801506},"metadata":{"LENGTH":434,"QUESTION":"QUESTION_1","L1":"Klingon","score2":4}}
If the file contains nesting of more than two levels, the column names for nested records beyond the top level will be generated using .
to separate levels: For example, given the JSON object {'foo': {'bar': {'foo2': 0, 'foo3': 0}}
, foo
will be ignored and the columns will be named bar.foo2
and bar.foo3
.
Feature pre-processing¶
Data filtering¶
- Remove all training and evaluation responses that have non-numeric for any of the features (see column selection methods for different ways to select features).
- Remove all training and evaluation responses with non-numeric values for human scores.
- Optionally remove all training and evaluation responses with zero values for human scores. Zero scored responses are usually removed since in many scoring rubrics, zero scores usually indicate non-scorable responses.
- Remove all features with values that do not change across responses (i.e., those with a standard deviation close to 0).
Data preprocessing¶
- Truncate/clamp any outlier feature values, where outliers are defined as \(\mu \pm 4*\sigma\), where \(\mu\) is the mean and \(\sigma\) is the standard deviation.
- Apply pre-specified transformations to feature values.
- Standardize all transformed feature values into z-scores.
- Flip the signs for feature values if necessary.
Pre-processing parameters¶
Any held-out evaluation data on which the model is to be evaluated needs to be pre-processed in the same way as the training data. Therefore, the following parameters are computed on the training set, saved to disk, and re-used when pre-processing the evaluation set:
- Mean and standard deviation of raw feature values. These are used to compute floor and ceiling for truncating any outliers in the evaluation set;
- Any transformation and sign changes that were applied;
- Mean and standard deviation of transformed feature values. These are used to convert feature values in the evaluation set to z-scores.
Score post-processing¶
RSMTool computes six different versions of scores commonly used in different applications of automated scoring:
raw¶
The raw predictions generated by the model.
raw_trim¶
The raw predictions “trimmed” to be in the score range acceptable for the item. The scores are trimmed to be within the following range: \(score_{min} - tolerance\) and \(score_{max} + tolerance\). Unless specified otherwise, \(score_{min}\) and \(score_{max}\) are set to the lowest and highest points on the scoring scale respectively and tolerance
is set to 0.4998.
This approach represents a compromise: it provides scores that are real-valued and, therefore, provide more information than human scores that are likely to be integer-valued. However, it also ensures that the scores fall within the expected scale.
Note
In RSMTool v6.x and earlier, the default value for tolerance
was 0.49998 (note the extra “9”). Therefore, the raw_trim
values computed for outliers by RSMTool v7.0 and onwards will be different from those computed by previous versions. If you wish to replicate results obtained with older versions, set the new trim_tolerance field in the experiment configuration file to 0.49998.
raw_trim_round¶
The raw_trim predictions rounded to the nearest integer.
Note
The rounding is done using rint
function from numpy
. See numpy documentation for treatment of values such as 1.5.
scale¶
The raw predictions rescaled to match the human score distribution on the training set. The raw scores are first converted to z-scores using the mean and standard deviation of the machine scores predicted for the training set. The z-scores are then converted back to “scaled” scores using the mean and standard deviation of the human scores, also computed on the training set.
scale_trim¶
The scaled scores trimmed in the same way as raw_trim scores.
scale_trim_round¶
The scale_trim scores scores rounded to the nearest integer.