<certainty>

<certainty> indica il grado di certezza o incertezza associato a un determinato aspetto del la codifica del testo 21.1.2 Structured Indications of Uncertainty
Modulocertainty — 21 Certainty and Responsibility
Attributi
targetindica elementi la cui codifica è incerta
Stato Richiesto
Tipo di dati 1–∞ occurrences of
data.pointer
separato da spazio bianco
Valori a series of one or more identifiers (URIs), separated by whitespace
Elizabeth went to <persName xml:id="ESX">Essex</persName>
<certainty target="#ESXlocus="gidegree="0.6"/>
Nota
If more than one identifier is given, the <certainty> element is interpreted as applying to all. If no identifier is present on the element being annotated, the attribute should give the identifier of a <ptr> element which points at the element being annotated; for further discussion of this indirect pointing mechanism, see chapter 16 Linking, Segmentation, and Alignment.
locusindica la posizione dell'incertezza nella codifica: l'applicabilità dell'elemento, la precisa posizione del marcatore iniziale o finale, il valore di un singolo attributo, ecc.
Stato Richiesto
Tipo di dati
data.enumerated
I valori suggeriti includono:
gi
(nome di elemento) è incerto se l'elemento usato sia applicabile al brano in questione
startLoc
(posizione iniziale) il marcatore iniziale potrebbe non essere posizionato correttamente
endLoc
(posizione finale) il marcatore finale potrebbe non essere posizionato correttamente
location
sia il marcatore iniziale che quello finale potrebbero non essere posizionati correttamente
attrName
(nome di attributo) il valore assegnato al nome di attributo è incerto
transcribedContent
il contenuto dell'elemento potrebbe non essere una trascrizione corretta del testo originario
suppliedContent
il contenuto dell'elemento potrebbe non essere stato indicato dal lettore, ad esempio con gli elementi corr e abbrev
Nota
If the name of an attribute is supplied, it must be prefixed by att..
assertedValueassegna un valore alternativo all'apetto della codifica in questione, un identificatore generico, una trascrizione, il valore di un attributo, o l'identificatore di un elemento <anchor> (per indicare una posizione di inizio o fine alternativa). Se viene fornito un attributo assertedValue, il livello di sicurezza specificato dall'attributo degree si applica alla codifica alternativa specificata dall'attributo assertedValue; se non viene fornito alcun attributo, si applica alla codifica del testo.
Stato Consigliato
Tipo di dati
data.pointer | data.name | data.word
Valori generic identifier, attribute value, location (e.g. indicated by a reference to an <anchor> element or to an <ptr> element), or other appropriate alternative value.
<certainty
  target="#ESX"
  locus="gi"
  assertedValue="place"
  degree="0.2"/>
Nota
This attribute makes it possible to indicate the degree of confidence in a specific alternative to some aspect of the markup. In the example above the encoder is expressing the likelihood (.2) that the generic identifier should be <place> rather than <persName>, which is the coded element.
givenindica le condizioni presunte nell'assegnare un grado di certezza
Stato Consigliato
Tipo di dati 1–∞ occurrences of
data.pointer
separato da spazio bianco
Valori a pointer to a characterization of the conditions which are assumed in the assignment of a degree of confidence.
Nota
A project may wish to control the vocabulary used in this attribute.
The envisioned typical value of this attribute would be the identifier of another <certainty> element or a list of such identifiers. It may thus be possible to construct probability networks by chaining <certainty> elements together. Such networks would ultimately be grounded in unconditional <certainty> elements (with no value for given). The semantics of this chaining would be understood in this way: if a <certainty> element is specified, via a reference, as the assumption, then it is not the attribution of uncertainty that is the assumption, but rather the assertion itself. For instance, in the example above, the first <certainty> element indicates that the confidence in the identification of the new scribe as msm. The second indicates the degree of confidence that Essex is a personal name, given that the new scribe is msm. Note that the given in the second <certainty> element is not the assertion that the likelihood that msm is the new scribe is 0.6, but simply the assertion that msm is the new scribe; this is a recommended convention to facilitate building networks.
The ambitious encoder may wish to attempt complex networks or probability assertions, experimenting with references to other elements or prose assertions, and deploying feature structure connectives such as <alt>, <join>, and <note>. However, we do not believe that the <certainty> element gives, at this time, a comprehensive ambiguity-free system for indicating certainty.
degreeindica il grado di certezza assegnato ad un aspetto della codifica indicato dall'attributo locus.
Stato Opzionale
Tipo di dati
data.probability
Usato da model.global.meta
Può contenere
core: desc gloss
tagdocs: altIdent equiv
Dichiarazione
element certainty
{
   att.global.attributes,
   attribute target { list { data.pointer+ } },
   attribute locus
   {
      "gi"
    | "startLoc"
    | "endLoc"
    | "location"
    | "attrName"
    | "transcribedContent"
    | "suppliedContent"
    | xsd:Name
   },
   attribute assertedValue { data.pointer | data.name | data.word }?,
   attribute given { list { data.pointer+ } }?,
   attribute degree { data.probability }?,
   model.glossLike*
}
Esempio

(For discussion of this example, see section 21.1.2 Structured Indications of Uncertainty)

Earnest went to <anchor xml:id="A1"/> old
<persName xml:id="SYB">Saybrook</persName>.

<certainty
  xml:id="c1"
  target="#SYB"
  locus="gi"
  degree="0.6"/>

<certainty
  target="#SYB"
  locus="startLoc"
  given="#c1"
  degree="0.9"/>

<certainty
  xml:id="C-c2"
  target="#SYB"
  locus="gi"
  assertedValue="persName"
  degree="0.4"/>

<certainty
  target="#SYB"
  locus="startLoc"
  given="#C-c2"
  degree="0.5"/>

<certainty
  target="#SYB"
  locus="startLoc"
  assertedValue="#a1"
  given="#c1"
  degree="0.5"/>