Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
tensorflow
GitHub Repository: tensorflow/docs-l10n
Path: blob/master/site/ja/hub/writing_model_documentation.md
25115 views

モデルドキュメントの作成

tfhub.dev にモデルを貢献するには、Markdown のドキュメントを提供する必要があります。tfhub.dev にモデルを追加するための詳細なプロセスについては、モデルの貢献ガイドをご覧ください。

Markdown ドキュメントの種類

tfhub.dev では次の 3 種類の Markdown ドキュメントが使用されています。

  • Publisher Markdown - パブリッシャに関する情報が含まれます(パブリッシャになるには ガイドをご覧ください)。

  • Model Markdown - 特定のモデルに関する情報が含まれます。

  • Collection Markdown - パブリッシャが定義したモデルコレクションに関する情報が含まれます(詳細は、コレクションの作成ガイドをご覧ください)。

コンテンツの編成

TensorFlow Hub GitHub リポジトリに貢献する際は、次のコンテンツで編成することをお勧めします。

  • 各パブリッシャディレクトリは assets ディレクトリに配置します。

  • オプションの models ディレクトリと collections ディレクトリは、各パブリッシャディレクトリに含めます。

  • 各モデルには、assets/publisher_name/models の下にそれぞれのディレクトリを用意します。

  • 各コレクションには、assets/publisher_name/collections の下にそれぞれのディレクトリを用意します。

パブリッシャとコレクションの Markdown はバージョン管理されていませんが、モデルにはさまざまなバージョンを設けることができます。モデルの各バージョンには、そのバージョンにちなんだ個別の Markdown ファイル(1.md2.md など)が必要です。

特定のモデルのすべてのバージョンを、そのモデルのディレクトリに配置してください。

Markdown コンテンツの編成を次の図に示しています。

assets ├── publisher_name_a │ ├── publisher_name_a.md -> Documentation of the publisher. │ └── models │ └── model -> Model name with slashes encoded as sub-path. │ ├── 1.md -> Documentation of the model version 1. │ └── 2.md -> Documentation of the model version 2. ├── publisher_name_b │ ├── publisher_name_b.md -> Documentation of the publisher. │ ├── models │ │ └── ... │ └── collections │ └── collection -> Documentation for the collection feature. │ └── 1.md ├── publisher_name_c │ └── ... └── ...

モデルページ固有の Markdown 形式

モデルドキュメントは、複数のアドオンの構文を備えた Markdown ファイルです。最小限の例、またはより現実的な例の Markdown ファイルについては以下をご覧ください。

ドキュメントの例

高品質のモデルドキュメントには、コードスニペット、モデルのトレーニング方法および使用目的に関する情報が含まれています。また、ユーザーがあなたのモデルを tfhub.dev で素早く検索できるように、以下に説明されているモデル固有のメタデータプロパティもご利用ください。

# Module google/text-embedding-model/1 Simple one sentence description. <!-- asset-path: https://path/to/text-embedding-model/model.tar.gz --> <!-- module-type: text-embedding --> <!-- fine-tunable: true --> <!-- format: saved_model_2 --> ## Overview Here we give more information about the model including how it was trained, expected use cases, and code snippets demonstrating how to use the model: `` Code snippet demonstrating use (e.g. for a TF model using the tensorflow_hub library) import tensorflow_hub as hub model = hub.KerasLayer(<model name>) inputs = ... output = model(inputs) ``

モデルのデプロイとデプロイのグループ化

tfhub.dev では、TensorFlow モデルを TF.js、TFLite、およびCoral デプロイで公開できます。

Markdown ファイルの最初の行には、デプロイ形式の種類が指定されている必要があります。

  • TF.js デプロイ用の # Tfjs publisher/model/version

  • Lite デプロイ用の # Lite publisher/model/version

  • Coral デプロイ用の # Coral publisher/model/version

tfhub.dev の同じモデルページ上にこれらの異なるデプロイを表示することを習慣付けると良いでしょう。特定の TF.js、TFLite、または Coral のデプロイと TensorFlow モデルを関連付けるには、親モデルのタグを指定します。

<!-- parent-model: publisher/model/version -->

場合によっては TensorFlow SavedModel なしで 1 つ以上のデプロイを公開することが考えられます。その場合は、プレースホルダーモデルを作成して、parent-model のタグにそのハンドルを指定します。プレースホルダーの Markdown は TensorFlow モデルの Markdownとまったく同じですが、最初の行だけは # Placeholder publisher/model/version とし、asset-path プロパティは必要ありません。

Model Markdown 固有のメタデータプロパティ

Markdown ファイルにはメタデータプロパティを含めることができます。これらは、Markdown ファイルの説明の後に、Markdown のコメントとして示されます。次に例を示します。

# Module google/universal-sentence-encoder/1 Encoder of greater-than-word length text trained on a variety of data. <!-- module-type: text-embedding --> ...

次のメタデータプロパティがあります。

  • format: TensorFlow モデルの場合: TensorFlow Hub 形式のモデル。有効な値として、hub はモデルがレガシーの TF1 hub 形式である場合、そして saved_model_2 はモデルが TF2 Saved Model 経由でエクスポートされている場合に使用できます。

  • asset-path: Google Cloud Storage バケットなど、アップロードする実際のモデルアセットへの world-readable なリモートパスです。URL は、robots.txt ファイルによって取得できる必要があります(この理由により、"https://github.com/.*/releases/download/.*" は https://github.com/robots.txt で禁止されているためサポートされていません)。

  • parent-model: TF.js、TFLite、Coral モデルの場合: 同伴する SavedModel/プレースホルダーのハンドルです。

  • module-type: 問題の分野。"text-embedding" や "image-classification" など。

  • dataset: モデルがトレーニングされたデータセット。"ImageNet-21k" や "Wikipedia" など。

  • network-architecture: モデルが基づくネットワークアーキテクチャ。"BERT" や "Mobilenet V3" など。

  • language: テキストモデルがトレーニングされた言語の言語コード。"en" や "fr" など。

  • fine-tunable: ブール値。ユーザーがモデルをファインチューニングできるかどうか。

  • license: モデルに適用されるライセンス。公開されたモデルのライセンスは Apache 2.0 License であることがデフォルトで前提となっています。使用できる他のオプションは、OSI Approved Licenses にリストされています。可能な(リテラル)値: Apache-2.0BSD-3-ClauseBSD-2-ClauseGPL-2.0GPL-3.0LGPL-2.0LGPL-2.1LGPL-3.0MITMPL-2.0CDDL-1.0EPL-2.0custom。カスタムライセンスには、ケースごとに特別な考慮事項があります。

Markdown ドキュメントの種類は、さまざまな必須メタデータプロパティとオプションのメタデータプロパティをサポートしています。

種類必須オプション
パブリッシャ
コレクションmodule-typedataset、language
: : : ネットワークアーキテクチャ :
プレースホルダーmodule-typedataset、fine-tunable、language
: : : ライセンス、ネットワークアーキテクチャ :
SavedModelasset-path、module-typedataset、language、license
: : ファインチューニング可能、形式 : ネットワークアーキテクチャ :
Tfjsasset-path、parent-model
Liteasset-path、parent-model
Coralasset-path、parent-model