Regression Model for Weight Maintenance Functioning Levels (ICF b530)

Description

A fine-tuned regression model that assigns a functioning level to Dutch sentences describing weight maintenance functions. The model is based on a pre-trained Dutch medical language model (link to be added): a RoBERTa model, trained from scratch on clinical notes of the Amsterdam UMC. To detect sentences about weight maintenance functions in clinical text in Dutch, use the icf-domains classification model.

Functioning levels

Level Meaning
4 Healthy weight, no unintentional weight loss or gain, SNAQ 0 or 1.
3 Some unintentional weight loss or gain, or lost a lot of weight but gained some of it back afterwards.
2 Moderate unintentional weight loss or gain (more than 3 kg in the last month), SNAQ 2.
1 Severe unintentional weight loss or gain (more than 6 kg in the last 6 months), SNAQ ≥ 3.
0 Severe unintentional weight loss or gain (more than 6 kg in the last 6 months) and admitted to ICU.

The predictions generated by the model might sometimes be outside of the scale (e.g. 4.2); this is normal in a regression model.

Intended uses and limitations

How to use

To generate predictions with the model, use the Simple Transformers library:

from simpletransformers.classification import ClassificationModel

model = ClassificationModel(
    'roberta',
    'CLTL/icf-levels-mbw',
    use_cuda=False,
)

example = 'Tijdens opname >10 kg afgevallen.'
_, raw_outputs = model.predict([example])
predictions = np.squeeze(raw_outputs)

The prediction on the example is:

1.95

The raw outputs look like this:

[[1.95429301]]

Training data

Training procedure

The default training parameters of Simple Transformers were used, including:

Evaluation results

The evaluation is done on a sentence-level (the classification unit) and on a note-level (the aggregated unit which is meaningful for the healthcare professionals).

Sentence-level Note-level
mean absolute error 0.81 0.60
mean squared error 0.83 0.56
root mean squared error 0.91 0.75

Authors and references

Authors

Jenia Kim, Piek Vossen

References

TBD