We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85bad98 commit 7d7deffCopy full SHA for 7d7deff
graphdatascience/model/kge_runner.py
@@ -66,12 +66,13 @@ def train(
66
"task": "KGE_TRAINING_PYG",
67
"task_config": {
68
"graph_config": graph_config,
69
- "modelname": "dummmy_model_name",
+ "modelname": "dummmy_model_name"+str(time.time()),
70
"task_config": algo_config,
71
},
72
- # "encrypted_db_password": self._encrypted_db_password,
73
"graph_arrow_uri": self._arrow_uri,
74
}
+ if self._encrypted_db_password is not None:
75
+ config["encrypted_db_password"] = self._encrypted_db_password
76
77
if mlflow_experiment_name is not None:
78
config["task_config"]["mlflow"] = {
0 commit comments