1

我在 Google AutoML 语言翻译中构建了一个自定义模型和一个词汇表。有没有办法同时使用自定义模型和词汇表?如果是这样,request.json 应该是什么样的?

4

3 回答 3

2

您完全可以同时使用词汇表和 AutoML。发出帖子请求:

POST https://translation.googleapis.com/v3/projects/project-number-or-id/locations/us-central1:translateText

有了这个有效载荷。模型应该指向您的 AutoML 模型路径,而词汇表配置应该指向您的词汇表 ID。

{
  "model": "projects/project-number-or-id/locations/us-central1/models/TRL1395675701985363739",
  "sourceLanguageCode": "en",
  "targetLanguageCode": "ru",
  "contents": "Dr. Watson, please discard your trash. You've shared unsolicited email with me. Let's talk about spam and importance ranking in a confidential mode.",
  "glossaryConfig": {
    "glossary": "projects/project-number/locations/us-central1/glossaries/glossary-id"
  }
}
于 2019-12-10T17:37:08.607 回答
0

我不知道如何请求,但我使用了另一种方式。

  • 从“词汇表”中获取翻译。
  • 使用翻译作为自定义模型源文本。

就像这样: text = "You want to translate" → text2(使用词汇表) → final_result (自定义模型)

希望对你有一点帮助

于 2019-11-30T22:38:49.597 回答
0

“你想翻译”→ text2(使用词汇表)→ final_result(自定义模型)听起来很有趣。我会试一试。

于 2019-12-02T02:09:51.393 回答