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
Hi thanks for the code. But I found some problematic part in your code
in time_proj.py in def load_data() there is this code snippet
time_proj.py
def load_data()
with open(self.p.dataset,'r') as filein: for line in filein: train_triples.append([int(x.strip()) for x in line.split()[0:3]]) triple_time[count] = [x.split('-')[0] for x in line.split()[3:5]] count+=1
self.p.dataset means the trainset of data. and the line
triple_time[count] = [x.split('-')[0] for x in line.split()[3:5]]
splits time interval part with '-' but inside YAGO's dataset, there is fact like this And this fact's start time will be parsed like this
It seems problematic to me... Isn't it???
The text was updated successfully, but these errors were encountered:
I think it is really a problem, I can't understand, too
Sorry, something went wrong.
No branches or pull requests
Hi thanks for the code.
But I found some problematic part in your code
in
time_proj.py
in
def load_data()
there is this code snippet
self.p.dataset means the trainset of data.
and the line
splits time interval part with '-'
but inside YAGO's dataset, there is fact like this
And this fact's start time will be parsed like this
It seems problematic to me...
Isn't it???
The text was updated successfully, but these errors were encountered: