Closed TudorAndrei closed 3 years ago
The results of the training process differ from those of the paper.
Steps to reproduce the behavior:
python3 link_predict.py -d wn18 --n-epochs 300 --gpu 0 --eval-protocol filtered --edge-sampler neighbor --n-hidden", "100 --n-bases 10
python3 link_predict.py -d wn18 --n-epochs 300 --gpu 0 --eval-protocol filtered --edge-sampler neighbor --n-hidden 100 --n-bases 10
FROM pytorch/pytorch:1.9.0-cuda11.1-cudnn8-runtime RUN apt-get update && \ apt-get upgrade -y COPY requirements.txt ./ RUN conda install -c dglteam dgl-cuda11.0 RUN pip install --upgrade pip RUN pip install --no-cache-dir -r requirements.txt ENV DGLBACKEND='pytorch' ENV DGL_DOWNLOAD_DIR='/home/stud/user/graph/.dgl' RUN python -c "import torch"
The image above is build on a GPU cluster
There was a similar issue long time ago (https://github.com/dmlc/dgl/issues/697). It seemed that the author's code cannot reproduce paper results either.
🐛 Bug
The results of the training process differ from those of the paper.
To Reproduce
Steps to reproduce the behavior:
Expected results
Environment
The image above is build on a GPU cluster