KnowledgeGraphEmbedding
KnowledgeGraphEmbedding copied to clipboard
Thank you for your work and I have three questions: 1. Why do you use this method to calculate the initialization range? I didn't see the relevant introduction in your...
I use the command: ``` bash run.sh train RotatE FB15k-237 0 0 1024 256 1000 9.0 1.0 0.00005 100000 16 -de ``` to train RotatE on a 11 GB GPU....
When Using L3 regularization for ComplEx and DistMult, you apply norm function two times for relation embedding, just as follwing (model.relation_embedding.norm(p=3).norm(p=3) ** 3). Can you explain why you apply norm...
Hello all, Thank you for great work. I was wondering whether you plan to make pretrained RotatE models publicly available. I reckon such pretrained models would be very helpful for...
Hi, When operating on my data set I was getting the following error: ``` > Traceback (most recent call last): > File "codes/run.py", line 361, in > main(parse_args()) > File...
Hi, thanks for developing RotatE! I was wondering, why are your results a bit different from the ones obtained by your other project https://graphvite.io/?
Hello, I'm a student who try to learn from this paper and code, and I met a small question confused me. def count_frequency(triples, start=4): ''' Get frequency of a partial...