ArtResearch / artresearch.net

ArtResearch ResearchSpace application hosted at https://artresearch.net
5 stars 1 forks source link

A single URI to identify unknown/anonymous artists #281

Open lklic opened 2 years ago

lklic commented 2 years ago

We should be able to identify all of these works in a search

lklic commented 2 years ago

@spykoulouris could you identify URI's used across institutions for anonymous artworks? This way we can try to materialize some FC/FRs for these.

Thanks

mafragias commented 2 years ago

Note : this would be a postprocess implementation. Suggestion: http://vocab.getty.edu/ulan/500125274

mafragias commented 2 years ago

@spykoulouris

aindlq commented 9 months ago

There are thousands such instances, currently they all are typed as E21_Person and even have a birth date.

Query to get them:

PREFIX crm: <http://www.cidoc-crm.org/cidoc-crm/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?person ?label {
  ?person a crm:E21_Person ;
          rdfs:label ?label .
  FILTER regex(?label, "school", "i")
} 

Mostly stuff like "Anonymous, Italian School, Neapolitan, 19th century". It is not only in Frick data but also in ITatti, e.g https://artresearch.net/resource/itatti/actor/9000374416

aindlq commented 9 months ago

I believe it is not valid to type these actors as persons and re-use URIs, because it means that the same "Anonymous, Italian School, 17th century" person created 4k artworks. This should be modeled differently.

Better query:

PREFIX crm: <http://www.cidoc-crm.org/cidoc-crm/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX cfr: <https://artresearch.net/resource/custom/fr/>
SELECT ?person ?label (COUNT(DISTINCT ?work) AS ?count) {
  ?person a crm:E21_Person ;
          rdfs:label ?label .
  FILTER regex(?label, "anonymous|school", "i") .
  ?person cfr:Artist_created_Work ?work .
} 
GROUP BY ?person ?label
ORDER BY DESC(?count)

image

lklic commented 9 months ago

The objective would be to somehow identify them in a search, as this is a common research question, users want to be able to find artworks by unidentified artists.

How should we proceed with this to make sure that "Anonymous" shows up in the facets and we can search for them through structured search?

aindlq commented 9 months ago
  1. There are artworks without any associated person - 734847
  2. Then there are artworks with anonymous person somehow explicitly specified ~ 62327

When you say "artworks by unidentified artists" do you mean both or only explicit "anonymous" artists?

lklic commented 9 months ago

Explicitly by an anonymous artist, meaning that that the artist is unknown.

For artworks that don't have an associate person, this number seems a high, but we can expect that there will be may photographs representing built works and objects that are too old to have a specific actor associated with them.

I Tatti alone has 17k artworks that do not have a specific known artist, coming from our homeless paintings collection.