[ML] Clarifies label vs class terminology in DFA UI text. (#95770)

This commit is contained in:
István Zoltán Szabó 2021-03-31 10:17:35 +02:00 committed by GitHub
parent e365396810
commit e5e68ecff1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -48,7 +48,7 @@ const jobDetails: JobDetails = {
},
[ANALYSIS_CONFIG_TYPE.CLASSIFICATION]: {
helpText: i18n.translate('xpack.ml.dataframe.analytics.create.classificationHelpText', {
defaultMessage: 'Classification predicts labels of data points in the data set.',
defaultMessage: 'Classification predicts classes of data points in the data set.',
}),
icon: 'classificationJob',
title: i18n.translate('xpack.ml.dataframe.analytics.create.classificationTitle', {

View file

@ -309,7 +309,7 @@ export const EvaluatePanel: FC<EvaluatePanelProps> = ({ jobConfig, jobStatus, se
<EuiText size="xs" color="subdued">
<FormattedMessage
id="xpack.ml.dataframe.analytics.classificationExploration.confusionMatrixActualLabel"
defaultMessage="Actual label"
defaultMessage="Actual class"
/>
</EuiText>
</div>
@ -320,7 +320,7 @@ export const EvaluatePanel: FC<EvaluatePanelProps> = ({ jobConfig, jobStatus, se
<EuiText size="xs" color="subdued">
<FormattedMessage
id="xpack.ml.dataframe.analytics.classificationExploration.confusionMatrixPredictedLabel"
defaultMessage="Predicted label"
defaultMessage="Predicted class"
/>
</EuiText>
</div>