When initializing a linguistic tagger with init(tagSchemes:options:), you specify one or more tag schemes that correspond to the kind of information you're interested in for a selection of natural language text. To ensure optimal performance, avoid specifying tag schemes that you won't use.
ある言語学的タガーをinit(tagSchemes:options:)を使って初期化する時、あなたは1つ以上のタグスキームを指定します、それらはある自然言語テキストの選択に対してあなたが興味を持つ情報の種類に対応するものです。最善の性能を保証するには、あなたが使わないだろうタグスキームの指定を避けてください。
When working with linguistic tags using the methods described in Getting Linguistic Tags and Enumerating Linguistic Tags, the returned tag value depends on the specified scheme. For example, given the token "Überraschung", the returned tag is noun when using the lexicalClass tag scheme, "de" (German language) when using the language tag scheme, and "Latn" (Latin script) when using the script tag scheme, as shown in the following code.
言語学的タグを言語学的タグを取得するおよび言語学的タグを列挙するで記述されるメソッドを使って扱う時、返されるタグ値は指定されたスキームに依存します。例えば、トークン "Überraschung" を与えられて、返されるタグは、lexicalClassタグスキームを使う時はnoun、languageタグスキームを使う時は "de"(ドイツ語)、そしてscriptタグスキームを使う時は "Latn"(ラテン文字)です、以下のコードで示されるように。
The following table lists the available tag schemes, their applicable linguistic units, and possible tag values.
以下の表は利用可能なタグスキーム、それらの適用可能な言語学的単位、そして可能なタグ値を一覧にします。
Classifies tokens corresponding to names according to nameType, and classifies all other tokens according to lexicalClass.
名前に相当するトークンをnameTypeに従って分類します、そして全ての他のトークンをlexicalClassに従って分類します。
A token, lexical class, name, lemma, language, or script returned by a linguistic tagger for natural language text.
自然言語テキストに対する言語学的タガー(タグ付けプログラム)によって返される、トークン、語彙的クラス、名前、見出し語、言語、または書体。