MCPcopy Create free account
hub / github.com/SpatialVLA/SpatialVLA / NormalizationType

Class NormalizationType

data/utils/data_utils.py:48–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

46
47# Defines supported normalization schemes for action and proprioceptive state.
48class NormalizationType(str, Enum):
49 # fmt: off
50 NORMAL = "normal" # Normalize to Mean = 0, Stdev = 1
51 BOUNDS = "bounds" # Normalize to Interval = [-1, 1]
52 BOUNDS_Q99 = "bounds_q99" # Normalize [quantile_01, ..., quantile_99] --> [-1, ..., 1]
53 # fmt: on
54
55
56# === State / Action Processing Primitives ===

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected