You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 12, 2019. It is now read-only.
Hey. Are you still extracting events and populating the database? I'm asking because I've been just looking into the mcmprod database and am wondering that there are already 128129 events but only 197 events belong to an artist who has a name and only 10 artists with a name have at least one event.
-- Returns 10
select count(*)
from artists a
where exists(
select *
from events e
where a."entityId" = e."entityId"
)
and a.name is not null;
Is it how it should be right now? Should I just wait for some days and there will be more useful events?
Some further Information to this matter:
We only link stuff when we run Wikipedia Pages. And we only can link if the Name in the Wiki-Page is exactly the name in the artists table (since we have no pseudonyms, and the code does not know if it's the same person otherwise)
In the future (makes only sense if we have pseudonyms), we additionally could run some OpenIE, Ollie, .... on the extracted date-events, gather some more information about subjects and objects and then try to link the given subjects and objects. This is a big thing, since we may get multiple subjects and objects and have to think of some magic on how to determine which is the correct one to link to.
Regarding the deadline today and the status of the db,
this will and can not be done right now.
We hopefully will link some more artists with #79, but maybe not enough, or the ones for you to show @chaoran-chen
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hey. Are you still extracting events and populating the database? I'm asking because I've been just looking into the mcmprod database and am wondering that there are already 128129 events but only 197 events belong to an artist who has a name and only 10 artists with a name have at least one event.
Is it how it should be right now? Should I just wait for some days and there will be more useful events?
(@ansjin)
The text was updated successfully, but these errors were encountered: