Make the hardware do more.

Geocentric treats training speed, memory use, context, evaluation, vision, and inference as one connected systems problem.

EPICYCLE

Training efficiency across four resource axes

EPICYCLE combines progressive depth, context folding, selective token loss, and memory-efficient optimization.

GearConstraintMechanism
DEFERENTSpeedStart with fewer active layers and bring the rest online during training.
HORIZONSpeed, token useTrain shorter independent sequences before expanding to full context.
EQUANTQuality per tokenExperiment with selective difficult-token loss after warmup.
ARMILLARYOptimizer memoryReduce persistent optimizer state to free capacity for larger models.
DESIGN RULE

The model remains an ordinary decoder-only transformer at inference time.

MEASUREMENTS

Current systems results

Inference: 74.26 → 88.27 tokens/sec in a controlled Apple M4 generation comparison, an 18.87% increase.

Training: context folding reached about 1.10× throughput in an M4 systems ablation.

Optimizer state: experimental balanced momentum measured 65.38% lower resident optimizer-state memory in one embedding-heavy 11.2M-parameter configuration.

SCOPE

These are separate controlled experiments, not one combined speedup number.

PARALLAX

Evaluation that tells you what changed

PARALLAX tests the model across multiple failure modes instead of collapsing everything into one score.

Text modelingLanguage-model quality across multiple genres.
Context useWhether additional context actually improves predictions.
Completion rankingWhether true continuations outrank false alternatives.
Instruction followingRule-based checks for requested behavior.
DegenerationLooping and repetition behavior.
PerformancePrefill, decode throughput, and peak memory.
Vision groundingWhether image information improves the right caption prediction.
ATTRIBUTION

Optional text watermarking can travel with a checkpoint

Geocentric's watermarking work stores identity and strength with the model so attribution can be applied consistently during generation.

VISION

Add images without rebuilding the language decoder

A vision tower encodes image patches and a projector maps them into the language model's embedding space. The decoder keeps the same core architecture.

TRAINING STACK

From raw data to a finished model

TokenizerTrain and validate a model-specific vocabulary.
DataPrepare large corpora into reusable tokenized shards.
PretrainingTrain the base causal language model from scratch.
Post-trainingInstruction tuning and capability shaping.
EvaluationMeasure quality, context use, stability, and performance.
ReleasePackage weights, configuration, tokenizer, and model metadata.