opg4j> model.export().db().
modelstore("modelstoretablename"). // name of the model store table
modelname("model"). // model name (primary key of model store table)
description("a model description"). // description to store alongside the model
store();
Javaを使用したトレーニング済Unsupervised GraphWiseモデルの格納
model.export().db()
.modelstore("modelstoretablename") // name of the model store table
.modelname("model") // model name (primary key of model store table)
.description("a model description") // description to store alongside the model
.store();
Pythonを使用したトレーニング済Unsupervised GraphWiseモデルの格納
model.export().db(model_store="modelstoretablename",
model_name="model", description="a model description")