credence
- CURIE:
gmeow:credence - IRI: https://blackcatinformatics.ca/gmeow/credence
- Category: property
- Defined by:
gmeow:slices/epistemics - Box roles: RBox role (What is this?)
A graded degree-of-belief in the closed interval [0,1], attached to a DoxasticState. Non-functional: an agent's credence may be reported by multiple sources or updated over time, and those reports coexist (Principle 9). Distinct from gmeow:confidence (our certainty about a statement, in the provenance/statement layer) and from claimModality (qualitative standpoint belief value on the linked StandpointClaim).
Structure
Property shape: datatype property; gmeow:DoxasticState -> xsd:decimal
Practical Pattern
Use gmeow:credence from gmeow:DoxasticState to xsd:decimal when the relationship itself belongs in the native GMEOW graph.
Example Snippets
These snippets are generated from canonical slice examples and trimmed to the Turtle blocks where this term appears.
Belief Revision
- Source:
slices/core/epistemics/examples/belief-revision.ttl - Examples catalog: open in catalog#example-slices-core-epistemics-examples-belief-revision
@prefix gmeow: <https://blackcatinformatics.ca/gmeow/> .
@prefix ex: <https://blackcatinformatics.ca/gmeow/examples/epistemics/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# --- Original belief (high credence, unequivocal) -----------------------------
ex:originalBelief a gmeow:DoxasticState ;
rdfs:label "original belief: the printer is broken"@en ;
gmeow:epistemicAgent ex:operator ;
gmeow:doxasticContent ex:propPrinterBroken ;
gmeow:credence "0.92"^^xsd:decimal ;
gmeow:doxasticClaim ex:originalClaim .
# --- Revised belief (lower credence, probable) --------------------------------
ex:revisedBelief a gmeow:DoxasticState ;
rdfs:label "revised belief: printer may be broken"@en ;
gmeow:epistemicAgent ex:operator ;
gmeow:doxasticContent ex:propPrinterBroken ;
gmeow:credence "0.35"^^xsd:decimal ;
gmeow:doxasticClaim ex:revisedClaim .
Flagship Epistemic Ledger
- Source:
slices/core/epistemics/examples/flagship-epistemic-ledger.ttl - Examples catalog: open in catalog#example-slices-core-epistemics-examples-flagship-epistemic-ledger
@prefix gmeow: <https://blackcatinformatics.ca/gmeow/> .
@prefix ex: <https://blackcatinformatics.ca/gmeow/examples/epistemics/flagship/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# --- Original credence-weighted belief (operator) --------------------------------
ex:opBeliefOriginal a gmeow:DoxasticState ;
rdfs:label "original belief: LLM recalled the meeting date correctly"@en ;
gmeow:epistemicAgent ex:operator ;
gmeow:doxasticContent ex:propRecall ;
gmeow:doxasticClaim ex:opClaimOriginal ;
gmeow:credence "0.85"^^xsd:decimal ;
gmeow:justifiedBy ex:evidenceSpan1 .
# --- Revised belief after a defeater ---------------------------------------------
ex:opBeliefRevised a gmeow:DoxasticState ;
rdfs:label "revised belief: LLM probably misremembered the meeting date"@en ;
gmeow:epistemicAgent ex:operator ;
gmeow:doxasticContent ex:propRecall ;
gmeow:doxasticClaim ex:opClaimRevised ;
gmeow:credence "0.30"^^xsd:decimal .
Common Companion Terms
Usage Advice
Use when
- Use to record a numeric degree-of-belief on a reified
DoxasticStatewhen graded strength is itself first-class.
Avoid when
- Avoid for the flat
gmeow:believesspine (usegmeow:standpointModalityon the statement instead) and avoid conflating it withgmeow:confidenceorgmeow:claimModality.
How to use
- Attach one or more xsd:decimal values in [0,1] to a
DoxasticState; pair withdoxasticClaimcarryingclaimModalityfor the qualitative side.
Examples
- ex:aliceBelievesRound
gmeow:credence"0.92"^^xsd:decimal.