8.3.2 最小限のUnsupervised GraphWiseモデルの作成

最小限の構成とデフォルトのハイパーパラメータを使用して、頂点プロパティのみ、エッジ・プロパティのみまたは両方でUnsupervised GraphWiseモデルを作成できます。
opg4j> var model = analyst.unsupervisedGraphWiseModelBuilder().
                setVertexInputPropertyNames("features").
                build()
UnsupervisedGraphWiseModel model = analyst.unsupervisedGraphWiseModelBuilder()
    .setVertexInputPropertyNames("features")
    .build();
model = analyst.unsupervised_graphwise_builder(vertex_input_property_names=["features"])