awareness subject
- CURIE:
gmeow:awarenessSubject - IRI: https://blackcatinformatics.ca/gmeow/awarenessSubject
- Category: property
- Defined by:
gmeow:slices/awareness - Box roles: RBox role (What is this?)
Relates a gmeow:AwarenessTenure to the gmeow:Agent whose awareness state it records — the experiencer in the mode over the interval. A per-branch bearer edge (Principle 4): the tenure carries its subject EXPLICITLY through this property, NOT through gufo:inheresIn (P5 alignment-target discipline — the gUFO inherence target is left untouched). The agent the sleep episode, focus session, or inference run belongs to.
Structure
Property shape: object property; gmeow:AwarenessTenure -> gmeow:Agent; functional
Practical Pattern
Use gmeow:awarenessSubject from gmeow:AwarenessTenure to gmeow:Agent 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.
Ai Inference Regime
- Source:
slices/core/awareness/examples/ai-inference-regime.ttl - Examples catalog: open in catalog#example-slices-core-awareness-examples-ai-inference-regime
@prefix gmeow: <https://blackcatinformatics.ca/gmeow/> .
@prefix ex: <https://blackcatinformatics.ca/gmeow/examples/awareness/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# --- A live serving window — online inference, the machine analogue of waking. A
# claim formed within this tenure can record that it was formed during live
# serving (operational-state provenance for the agent-memory flagship).
ex:servingTenure a gmeow:AwarenessTenure ;
rdfs:label "a live serving window"@en ;
gmeow:awarenessSubject ex:lillith ;
gmeow:awarenessMode gmeow:modeOnlineInference ;
gmeow:awarenessScalar 0.7 ;
gmeow:duringInterval ex:requestInterval .
# --- A weight-updating training run — the machine analogue of a developmental /
# consolidative state, with no clean single human counterpart.
ex:trainingTenure a gmeow:AwarenessTenure ;
rdfs:label "a fine-tuning run"@en ;
gmeow:awarenessSubject ex:lillith ;
gmeow:awarenessMode gmeow:modeTraining ;
gmeow:awarenessScalar 0.5 ;
gmeow:duringInterval ex:trainingInterval .
Sleep Episode
- Source:
slices/core/awareness/examples/sleep-episode.ttl - Examples catalog: open in catalog#example-slices-core-awareness-examples-sleep-episode
@prefix gmeow: <https://blackcatinformatics.ca/gmeow/> .
@prefix ex: <https://blackcatinformatics.ca/gmeow/examples/awareness/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# --- The night-long sleep tenure: an agent in a mode over an interval.
ex:lillithSleep a gmeow:AwarenessTenure ;
rdfs:label "Lillith's night of sleep"@en ;
gmeow:awarenessSubject ex:lillith ;
gmeow:awarenessMode gmeow:modeAsleep ;
gmeow:awarenessLevel gmeow:levelUnresponsive ;
gmeow:duringInterval ex:nightInterval .
# --- A nested REM sub-tenure: rapid-eye-movement sleep, the vivid-dreaming stage.
# The same agent, two co-applying modes (REM stage + dreaming), a shorter span
# contained within the night interval.
ex:lillithREM a gmeow:AwarenessTenure ;
rdfs:label "Lillith's REM episode"@en ;
gmeow:awarenessSubject ex:lillith ;
gmeow:awarenessMode gmeow:modeREM , gmeow:modeDreaming ;
gmeow:awarenessLevel gmeow:levelUnresponsive ;
gmeow:duringInterval ex:remInterval .
Common Companion Terms
gmeow:AwarenessTenure, gmeow:Agent
Usage Advice
Use when
- Use to name the
gmeow:Agentagmeow:AwarenessTenureis about — the experiencer whose sleep, focus, or inference state the reified tenure records.
Avoid when
- Avoid expressing the subject with gufo:inheresIn (the tenure carries its subject explicitly through this edge) and avoid using it off a
gmeow:AwarenessTenure; for a lightweight, unreified tag putgmeow:awarenessModedirectly on the agent or process instead.
How to use
- On a
gmeow:AwarenessTenure, pointgmeow:awarenessSubjectat thegmeow:Agent, then addgmeow:awarenessMode,gmeow:duringInterval, and optionalgmeow:awarenessLevel/gmeow:awarenessScalarto complete the reified state.
Scope notes
- Per-branch bearer, not gUFO inherence (Principle 4 / Principle 5):
gmeow:awarenessSubjectis the awareness slice's own subject edge, deliberately distinct from gufo:inheresIn (an alignment target this slice never asserts); the tenure is agmeow:TimeScopedRelationsituation and this edge names its agent role-filler.
Examples
- ex:lillithSleep
gmeow:awarenessSubjectex:lillith.