Skip to content
Snippets Groups Projects
Commit 9e97e611 authored by lenhy's avatar lenhy
Browse files

Changed hyperparameters in RotatE

parent b01fee10
Branches
No related tags found
No related merge requests found
......@@ -23,19 +23,19 @@ def get_model(name: str, triples, inverse_triples, regularizer):
}
lr_dict = {
"TransE": 0.01,
"RotatE": 5.0e-6,
"RotatE": 0.01,
"ConvE": 0.001,
"DistMult": 0.1,
}
epochs_dict = {
"TransE": 500,
"RotatE": 6000,
"RotatE": 600,
"ConvE": 500,
"DistMult": 300,
}
bs_dict = {
"TransE": 1440,
"RotatE": 100000,
"RotatE": 1440,
"ConvE": 128,
"DistMult": 4000,
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment