プロパティ・グラフのグラフ開発者ガイド Oracleプロパティ・グラフ・スタート・ガイド グラフ用の機械学習ライブラリ(PgxML)の使用 Unsupervised GraphWiseアルゴリズムの使用 最小限のUnsupervised GraphWiseモデルの作成 8.3.2 最小限のUnsupervised GraphWiseモデルの作成 最小限の構成とデフォルトのハイパーパラメータを使用して、頂点プロパティのみ、エッジ・プロパティのみまたは両方でUnsupervised GraphWiseモデルを作成できます。 次のコードに示すように、Unsupervised GraphWiseモデルを作成します。 JShellを使用した最小限のUnsupervised GraphWiseモデルの作成opg4j> var model = analyst.unsupervisedGraphWiseModelBuilder(). setVertexInputPropertyNames("features"). build() Javaを使用した最小限のUnsupervised GraphWiseモデルの作成UnsupervisedGraphWiseModel model = analyst.unsupervisedGraphWiseModelBuilder() .setVertexInputPropertyNames("features") .build(); Pythonを使用した最小限のUnsupervised GraphWiseモデルの作成model = analyst.unsupervised_graphwise_builder(vertex_input_property_names=["features"]) 親トピック: Unsupervised GraphWiseアルゴリズムの使用