17.6.2 最小限のUnsupervised Anomaly Detection GraphWiseモデルの作成

最小限の構成およびデフォルトのハイパーパラメータを使用して、Unsupervised Anomaly Detection GraphWiseモデルを作成できます。次の例では特徴プロパティが1つしか指定されていませんが、任意の数だけ指定できます。
opg4j> var model = analyst.unsupervisedAnomalyDetectionGraphWiseModelBuilder().
          setVertexInputPropertyNames("features").
          build()
UnsupervisedAnomalyDetectionGraphWiseModel model = analyst.unsupervisedAnomalyDetectionGraphWiseModelBuilder()
    .setVertexInputPropertyNames("features")
    .build();

model = analyst.unsupervised_anomaly_detection_graphwise_builder(vertex_input_property_names=["features"])