The dataset viewer is not available for this split.
Error code: StreamingRowsError
Exception: ValueError
Message: Expected object or value
Traceback: Traceback (most recent call last):
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 290, in _generate_tables
pa_table = paj.read_json(
io.BytesIO(batch), read_options=paj.ReadOptions(block_size=block_size)
)
File "pyarrow/_json.pyx", line 342, in pyarrow._json.read_json
File "pyarrow/error.pxi", line 155, in pyarrow.lib.pyarrow_internal_check_status
File "pyarrow/error.pxi", line 92, in pyarrow.lib.check_status
raise convert_status(status)
pyarrow.lib.ArrowInvalid: JSON parse error: Column() changed from object to string in row 0
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/src/services/worker/src/worker/utils.py", line 147, in get_rows_or_raise
return get_rows(
dataset=dataset,
...<4 lines>...
column_names=column_names,
)
File "/src/libs/libcommon/src/libcommon/utils.py", line 272, in decorator
return func(*args, **kwargs)
File "/src/services/worker/src/worker/utils.py", line 127, in get_rows
rows_plus_one = list(itertools.islice(safe_iter(ds, dataset=dataset), rows_max_number + 1))
File "/src/services/worker/src/worker/utils.py", line 483, in safe_iter
yield from ds.decode(False) if ds.features else ds
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2840, in __iter__
for key, example in ex_iterable:
^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2373, in __iter__
for key, pa_table in self._iter_arrow():
~~~~~~~~~~~~~~~~^^
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2398, in _iter_arrow
for key, pa_table in self.ex_iterable._iter_arrow():
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 536, in _iter_arrow
for key, pa_table in iterator:
^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 419, in _iter_arrow
for key, pa_table in self.generate_tables_fn(**gen_kwags):
~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/json/json.py", line 304, in _generate_tables
batch = json_encode_fields_in_json_lines(original_batch, json_field_paths)
File "/usr/local/lib/python3.14/site-packages/datasets/utils/json.py", line 111, in json_encode_fields_in_json_lines
examples = [ujson_loads(line) for line in original_batch.splitlines()]
~~~~~~~~~~~^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/utils/json.py", line 20, in ujson_loads
return pd.io.json.ujson_loads(*args, **kwargs)
~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
ValueError: Expected object or valueNeed help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
Amortized Inference Training
Training trajectories for demo-conditioned material inference (Design 4: g_ψ(demo) → material code m, with m conditioning once-trained constitutive nets V(state; m) / D(state; m)).
All dynamics come from the PAC-NeRF ecosystem MPM engine (GIC taichi MLS-MPM, dt = 1/4800 s);
geometry is the PAC-NeRF torus (L3 will add Objaverse shapes). No self-made simulators.
The three levels
Train one encoder per level and compare — the deltas isolate where difficulty lives (IC-robustness vs material reading vs shape transfer).
| Level | Folder | Contents | Purpose |
|---|---|---|---|
| L1 | L1/ |
100 trajectories — same object (torus), same material (E=1e6, ν=0.3), varied ICs, 24 fps (59 frames) | observation view (Stage-B input rate); pipeline overfit pilot |
| L1 dense | L1dense/ |
100 trajectories — same object+material as L1, varied ICs, 48 fps (118 frames) | physics view: denser states for material supervision |
| L2 | L2/ |
150-target (148 delivered; 2 soft tori splat unrecoverably) — same object, many materials (E, ν sweep), varied ICs, 24 fps | material diversity: makes latent codes m meaningful |
| L3 | (pending) | Objaverse shapes × material sweep | shape diversity |
The L1/L1dense material is certified against the shipped PAC-NeRF torus demo (corresponded particle error 4.6% of span at E=1e6, ν=0.3; the E=1e5 alternative rejected at 34%). The real 59-frame PAC-NeRF demo is reserved for evaluation and is not part of this dataset.
File schema
{MODE}_shard{S}_traj{NNNN}.npz (raw trajectory):
| field | shape | meaning |
|---|---|---|
traj |
(F, 30000, 3) float16 | particle positions; fixed subsample of the 381,414-particle PAC-NeRF torus cloud (exact correspondence) |
sub_idx |
(30000,) | indices into the 381,414-particle cloud |
E, nu, rho |
scalars | ground-truth material (EVALUATION ONLY — never train on them) |
vel, omega, rot |
(3,), (3,), (3,) | initial condition |
fps |
scalar | export rate |
{MODE}_shard{S}_traj{NNNN}_prep.npz (chart preprocessing):
| field | shape | meaning |
|---|---|---|
t, R |
(F,3), (F,3,3) | per-frame Kabsch rigid pose (world translation; body→world rotation) |
xi |
(F, 12) | chart coordinates — transformer-chart inversion (warm-started Adam; mean residual ~1.0–1.4% of span) |
inv_err |
(F,) | per-frame inversion residual, fraction of cloud span |
E, nu, vel, omega, fps |
— | copied from the raw file |
Units (important)
Positions are meters. Material parameters in frame units scale with fps²; the canonical
yardstick is demo units (time unit = 1/24 s), where the L1 material is μ=0.325, λ=0.291. When
consuming 48 fps data, scale rates by fps/24 and use dt_sub = (24/fps)/NSUB so learned
parameters are fps-invariant.
Loading
import numpy as np
d = np.load("L1dense/L1dense_shard0_traj0000.npz")
traj = d["traj"].astype(np.float32) # (F, 30000, 3) exact MPM clouds
p = np.load("L1dense/L1dense_shard0_traj0000_prep.npz")
t, R, xi = p["t"], p["R"], p["xi"] # floating-frame + chart states
Provenance / integrity gates
- Engine: GIC taichi MLS-MPM (the PAC-NeRF ecosystem), elasticity material,
dt = 1/4800 sinvariant across export rates. - Per-trajectory CFL check by the engine; crashing ICs are excluded (L2: 2/150).
- Ground-truth material for L1 certified against the shipped PAC-NeRF torus trajectory (gate above).
- Observation augmentations (noise, frame subsets) are intentionally NOT stored — derive on the fly.
- Downloads last month
- 258