File size: 4,095 Bytes
ee95cbe 051f6d5 ee95cbe 051f6d5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 | ---
license: apache-2.0
library_name: torch
language: en
pipeline_tag: reinforcement-learning
tags:
- world-model
- latent-dynamics
- defect-regularization
- continuous-representation
- finite-dynamical-system
---
# AQARION Defect World Model
A foundational world model that learns structured latent transitions via the **AQARION Defect Regularizer**, a differentiable penalty that minimizes topological defects in latent space. Designed for environments with continuous state spaces and structured dynamics.
## Model Description
This model combines:
- A standard encoder-decoder architecture for reconstruction.
- The **AQARION Defect Loss**, which regularizes latent transitions by penalizing misalignment between encoded states and their predicted evolution.
The loss encourages the latent space to evolve smoothly, reducing "defects" that disrupt downstream planning or control.
## Intended Use
- Learning compact, structured world models from high-dimensional observations.
- Environments with toroidal or cyclic dynamics (e.g., robotics, climate, physics simulation).
- Research into latent space topology and structured regularization.
## Limitations & Ethical Considerations
- The defect loss assumes a fixed number of clusters; performance may degrade if dynamics are highly non-stationary.
- Not intended for safety-critical deployment without additional verification.
- Latent interpretability is limited—clusters are emergent, not semantically labeled.
## Training
- **Data**: High-dimensional continuous observations with temporal structure.
- **Optimizer**: Adam (lr=1e-3)
- **Batch size**: 256
- **Latent dim**: 16
- **Clusters**: 6
- **Defect weight (β)**: 10.0
- **Seed**: 369 (for reproducibility)
## Usage
```python
from aqarion_world_model import AQARIONWorldModel
model = AQARIONWorldModel(obs_dim=128, latent_dim=16, num_clusters=6)
recon, defect_loss, clusters = model(obs_t, obs_t_next)
---
@misc{aqarion2026defect,
author = {AQARION},
title = {AQARION Defect World Model},
year = {2026},
publisher = {Hugging Face},
url = {https://huggingface.co/aqarion/aqarion-defect-world-model}
}
---
license: apache-2.0
library_name: torch
language: en
pipeline_tag: reinforcement-learning
tags:
- world-model
- latent-dynamics
- defect-regularization
- continuous-representation
- finite-dynamical-system
---
# AQARION Defect World Model
A foundational world model that learns structured latent transitions via the **AQARION Defect Regularizer**, a differentiable penalty that minimizes topological defects in latent space. Designed for environments with continuous state spaces and structured dynamics.
## Model Description
This model combines:
- A standard encoder-decoder architecture for reconstruction.
- The **AQARION Defect Loss**, which regularizes latent transitions by penalizing misalignment between encoded states and their predicted evolution.
The loss encourages the latent space to evolve smoothly, reducing "defects" that disrupt downstream planning or control.
## Intended Use
- Learning compact, structured world models from high-dimensional observations.
- Environments with toroidal or cyclic dynamics (e.g., robotics, climate, physics simulation).
- Research into latent space topology and structured regularization.
## Limitations & Ethical Considerations
- The defect loss assumes a fixed number of clusters; performance may degrade if dynamics are highly non-stationary.
- Not intended for safety-critical deployment without additional verification.
- Latent interpretability is limited—clusters are emergent, not semantically labeled.
## Training
- **Data**: High-dimensional continuous observations with temporal structure.
- **Optimizer**: Adam (lr=1e-3)
- **Batch size**: 256
- **Latent dim**: 16
- **Clusters**: 6
- **Defect weight (β)**: 10.0
- **Seed**: 369 (for reproducibility)
## Usage
```python
from aqarion_world_model import AQARIONWorldModel
model = AQARIONWorldModel(obs_dim=128, latent_dim=16, num_clusters=6)
recon, defect_loss, clusters = model(obs_t, obs_t_next) |