Views
No views yet
| Level | Meaning |
|---|---|
| 5 | MET>6. Can tolerate jogging, hard exercises, running, climbing stairs fast, sports. |
| 4 | 4≤MET≤6. Can tolerate walking / cycling at a brisk pace, considerable effort (e.g. cycling from 16 km/h), heavy housework. |
| 3 | 3≤MET<4. Can tolerate walking / cycling at a normal pace, gardening, exercises without equipment. |
| 2 | 2≤MET<3. Can tolerate walking at a slow to moderate pace, grocery shopping, light housework. |
| 1 | 1≤MET<2. Can tolerate sitting activities. |
| 0 | 0≤MET<1. Can physically tolerate only recumbent activities. |
pipeline and classes; doing so would generate incorrect outputs. For this reason, the API on this page is disabled.from simpletransformers.classification import ClassificationModel
model = ClassificationModel(
'roberta',
'CLTL/icf-levels-ins',
use_cuda=False,
)
example = 'kan nog goed traplopen, maar flink ingeleverd aan conditie na Corona'
_, raw_outputs = model.predict([example])
predictions = np.squeeze(raw_outputs)3.13[[3.1300993]]| Sentence-level | Note-level | |
|---|---|---|
| mean absolute error | 0.69 | 0.61 |
| mean squared error | 0.80 | 0.64 |
| root mean squared error | 0.89 | 0.80 |