Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ML] Changes UI info text for model test and model deployment #161849

Merged
merged 4 commits into from
Jul 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ export const DeploymentSetup: FC<DeploymentSetupProps> = ({
description={
<FormattedMessage
id="xpack.ml.trainedModels.modelsList.startDeployment.numbersOfAllocationsHelp"
defaultMessage="Increase to improve throughput of all requests."
defaultMessage="Increase to improve document ingest throughput."
/>
}
>
Expand Down Expand Up @@ -282,7 +282,7 @@ export const DeploymentSetup: FC<DeploymentSetupProps> = ({
description={
<FormattedMessage
id="xpack.ml.trainedModels.modelsList.startDeployment.threadsPerAllocationHelp"
defaultMessage="Increase to improve latency for each request."
defaultMessage="Increase to improve inference latency."
/>
}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ export class LangIdentInference extends InferenceBase<TextClassificationResponse
);
protected info = [
i18n.translate('xpack.ml.trainedModels.testModelsFlyout.langIdent.info1', {
defaultMessage: 'Test how well the model identifies the language of your text.',
defaultMessage:
'Test how well the model identifies the language of your text. The model is more accurate with longer text.',
}),
];

Expand Down
Loading