We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
. In main.ipynb the following code:
print(f"Loading dataset: {dataset_name}") triplets = { 'test': np.load(f"dataset/{dataset_name}/test_triples.npy"), 'valid': np.load(f"dataset/{dataset_name}/valid_triples.npy") }
which test_triples.npy and valid_triples.npy are being referred to? They are not part of the package downloaded from github.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
.
In main.ipynb the following code:
(N, 3) Columns: head, realtion, tail
print(f"Loading dataset: {dataset_name}")
triplets = {
'test': np.load(f"dataset/{dataset_name}/test_triples.npy"),
'valid': np.load(f"dataset/{dataset_name}/valid_triples.npy")
}
which test_triples.npy and valid_triples.npy are being referred to? They are not part of the package downloaded from github.
The text was updated successfully, but these errors were encountered: