Open qiangxinglin opened 4 years ago
Hi. Thanks for pointing out that bug.
app.solver.model
is only set when you call app.train()
. So a workaround is to call app.train()
with num_epoch=0
and specify other hyperparameters (e.g., model
) as you want. This won't touch the learned parameters.
Hi,
I trained a GraphApplication, and save the model into disk. When I try to load back the model,
app.solver.model
is empty. And thus will raise such exception during link prediction task.I suppose the problem is due to class
GraphApplication