From 41e9d3d9eeb3dd506e1a5d21018d20fb2f6ab2a9 Mon Sep 17 00:00:00 2001 From: Travis CI Date: Fri, 19 Jan 2018 07:10:40 +0000 Subject: [PATCH] Deploy to GitHub Pages: 55ec0e2a92fb83656ca6f2fae654afd0738420a8 --- develop/doc/operators.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/develop/doc/operators.json b/develop/doc/operators.json index f95075a11bf..584e422bf57 100644 --- a/develop/doc/operators.json +++ b/develop/doc/operators.json @@ -3437,16 +3437,16 @@ "attrs" : [ ] },{ "type" : "edit_distance", - "comment" : "\n\nEditDistance operator computes the edit distances between a batch of hypothesis\nstrings and their references.\n\nEdit distance, also called Levenshtein distance, measures how dissimilar two strings \nare by counting the minimum number of operations to transform one string into anthor. \nHere the operations include insertion, deletion, and substitution. For example, \ngiven hypothesis string A = \"kitten\" and reference B = \"sitting\", the edit distance \nis 3 for A will be transformed into B at least after two substitutions and one \ninsertion:\n \n \"kitten\" -> \"sitten\" -> \"sittin\" -> \"sitting\"\n\nInput(Hyps) is a LoDTensor consisting of all the hypothesis strings with the total \nnumber denoted by `batch_size`, and the separation is specified by the LoD information. \nAnd the `batch_size` reference strings are arranged in order in the same way in the \nLoDTensor Input(Refs).\n\nOutput(Out) contains the `batch_size` results and each stands for the edit stance \nfor a pair of strings respectively. If Attr(normalized) is true, the edit distance \nwill be divided by the length of reference string.\n", + "comment" : "\n\nEditDistance operator computes the edit distances between a batch of hypothesis\nstrings and their references.\n\nEdit distance, also called Levenshtein distance, measures how dissimilar two strings\nare by counting the minimum number of operations to transform one string into anthor.\nHere the operations include insertion, deletion, and substitution. For example,\ngiven hypothesis string A = \"kitten\" and reference B = \"sitting\", the edit distance\nis 3 for A will be transformed into B at least after two substitutions and one\ninsertion:\n\n \"kitten\" -> \"sitten\" -> \"sittin\" -> \"sitting\"\n\nInput(Hyps) is a LoDTensor consisting of all the hypothesis strings with the total\nnumber denoted by `batch_size`, and the separation is specified by the LoD information.\nAnd the `batch_size` reference strings are arranged in order in the same way in the\nLoDTensor Input(Refs).\n\nOutput(Out) contains the `batch_size` results and each stands for the edit stance\nfor a pair of strings respectively. If Attr(normalized) is true, the edit distance\nwill be divided by the length of reference string.\n", "inputs" : [ { "name" : "Hyps", - "comment" : "(2-D LoDTensor, 2nd dim. equal to 1) The indices for hypothesis strings.", + "comment" : "(2-D LoDTensor, 2nd dim. equal to 1) The indices for hypothesis strings.", "duplicable" : 0, "intermediate" : 0 }, { "name" : "Refs", - "comment" : "(2-D LoDTensor, 2nd dim. equal to 1) The indices for reference strings.", + "comment" : "(2-D LoDTensor, 2nd dim. equal to 1) The indices for reference strings.", "duplicable" : 0, "intermediate" : 0 } ], -- GitLab