-
`
def parse_line(line):
line = line.strip().split()
sub = line[0]
rel = line[1]
obj = line[2]
val = [1]
if len(line) > 3:
if line[3] == '-1':
# pri…
-
it seems that there is no L2-norm constraints of the entities embedding in the transE code implementation, while the constraints is recommended in the transE paper, for what consideration you made thi…
-
AttributeError: 'DistMultModule' object has no attribute 'margin'
-
Hi,
I am unable to reproduce the results reported on `FB15k-237` without using the given pre-trained embeddings. Also, providing `--pre-trained` as `True/False` doesn't make any difference because in…
-
Hi there,
When I tried running "python train.py --embedding_dim 100 --num_filters 50 --learning_rate 0.000005 --name FB15k-237 --useConstantInit --model_name fb15k237", It seems the program does no…
-
Thank you for your code, it helps me a lot!
I am a fresh man, and my English is really poor,
I run the code following your README
when I run the eval code, there is an error like this:
```
[File…
-
Hi, I have failed to reproduce results of ComplEx on WN18RR and FB15K237 reported in ConvE paper. I use an implementation of myself and it can reproduce results of FB15K and WN18 correctly. Could you …
-
I think the culprit is
```
c++ -pthread -std=c++0x -march=native -O3 -funroll-loops -c src/fasttext.cc
‘void fasttext::FastText::quantize(const fasttext::Args&)’: src/fasttext.cc:302:45: warning…
-
Hi Liwei,
When I run:
python3 pretrain.py --config=config_fb15k237.yaml --pretrain_config=TransE
I get this error after the 50th epoch:
Traceback (most recent call last):
File "pretrain.py"…
esmab updated
6 years ago
-
Hi, I have noticed that test.txt/valid.txt of WN18RR and FB15K237 contains entities that are not appear at train.txt,. It means that these entities will never be updated during the training, how to de…