training
- CURIE:
gmeow:modeTraining - IRI: https://blackcatinformatics.ca/gmeow/modeTraining
- Category: individual
- Defined by:
gmeow:slices/awareness - Box roles: ABox role (What is this?)
Weight-updating learning — the operational state in which a model's parameters are being adjusted by gradient descent or fine-tuning, distinct from inference. The machine state with no clean single human counterpart (a developmental / consolidative analogue); claims 'formed during training' are provenance-distinct from those formed at serving time.
Structure
Types: gmeow:AwarenessMode
Practical Pattern
Use gmeow:modeTraining as a controlled value typed as gmeow:AwarenessMode.
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#> .
# SPDX-FileCopyrightText: 2026 Blackcat Informatics® Inc. <paudley@blackcatinformatics.ca>
# SPDX-License-Identifier: CC-BY-4.0
#
# Worked example — an AI agent's operational-state regime, the Principle-5 bridge.
# The same gmeow:AwarenessTenure machinery that records a human's sleep records a
# machine's operational state: a live serving window (gmeow:modeOnlineInference),
# a weight-updating training run (gmeow:modeTraining), and a free-running generative
# pass (gmeow:modeSampling), each scoped to a temporal interval and each carrying a
# continuous gmeow:awarenessScalar (a temperature-like regime value). These machine
# modes are SIBLINGS of the human modes in ONE open vocabulary, bridged to human
# waking / dreaming / mind-wandering by ANALOGY, NOT by equivalence (no owl:sameAs,
# no owl:equivalentClass) — substrate-specific realisations of the awareness faculty.
# --- 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 .