diff --git a/README.md b/README.md new file mode 100644 index 0000000000000000000000000000000000000000..fca472e6fc8da6e953f6a44f3553f18968310f97 --- /dev/null +++ b/README.md @@ -0,0 +1,119 @@ +--- +license: apache-2.0 +task_categories: +- robotics +tags: +- LeRobot +- so101 +- smolvla +- teleoperation +- egocentric +- retargeting +- ISR +size_categories: +- 10K` / `--all` | the POC only read the HF Hub; this dataset is on disk | +| SO-101 6-D layout in `split_state` | 6-D state was falling through to `unknown[6]` → gripper force-keep disabled | +| v3 parquet cache in `_episode_table_v3` | it re-read the 28 948-row concatenated file once per episode (100×) | +| `isr_resample.py --gripper-threshold` | 0.05 is a *normalized* gripper default; this gripper is in degrees | +| `viz.py --max-episode-figs`, wide-figure scaling | 100 bars/figures were unreadable | + +## Knob calibration (defaults assume metres — this data is degrees) + +Measured over all 100 episodes: per-frame joint step 2.03° mean / 1.50° median; +accel magnitude 267 °/s² mean; gripper span 41.6° per episode. + +- `--lambda-acc 0.002` → the acceleration term carries **21 %** of per-frame info + (paper's 0.01-in-metres is likewise a minority-but-material share). 0.01 here would be 57 % — acc-dominated. +- `--gripper-threshold 2.0` ≈ 5 % of the 41.6° gripper span — the same intent as the 0.05 normalized default. + Flags 12.5 % of frame pairs as gripper events (0.5 → 21 %, i.e. jitter). +- `--d-target 12` → 32.8 % of frames kept, deliberately matched to the 3× uniform baseline (33.7 %) + so ISR-vs-uniform is like-for-like. Sweep is in `calibration_sweep.txt`. + +## Results + +**Compression** — 28 948 → 9 500 frames (32.8 %). Kept ratio varies **25.1 %–44.1 %** per episode +(std 0.040); the 3× baseline is flat at 33.4 % (std 0.001). That content-adaptivity is the ISR claim, +and it reproduces here. 42 frames/episode on average are gripper-forced. + +**Scoring** — dataset ActionVariance **raw 89.8 → ISR 94.3 (+5.0 %)**; it *rose* in 76/100 episodes +(mean +5.4 %). This is the opposite of the BridgeData POC (−22 %) and is expected rather than a bug: +removing pause frames removes the *lowest*-variance samples (a held pose has near-identical actions), +so the mean over what remains goes up. The raw→ISR delta is therefore **not** a "pacing noise removed" +readout on this dataset — read the ISR column alone, as a relative ranking. + +**Buckets** (percentile mode, P50/P90 on ISR scores): **50 train / 40 review / 10 quarantine**. +Quarantined: `ep7, ep11, ep15, ep42, ep61, ep71, ep83, ep86, ep87, ep92`. +Score spread 71.0 → 115.1 (p50 95.0, p90 106.1); every episode was scoreable (100 % clustered coverage). + +## Caveats + +1. **Bucket assignment is ε-sensitive on this dataset** (`out/eps_sensitivity.json`). All 100 episodes + are the same task, so states overlap heavily. Per-episode rank correlation against ε=0.5: + ε=0.3 → 0.51, ε=0.2 → 0.41, ε=0.1 → 0.19; mean cluster size 90 → 22 → 8.5 → 3.5 points. + The train/quarantine split would reshuffle materially at a tighter radius — treat the current + 10 quarantines as a shortlist to eyeball, not a verdict, until ε is pinned by a labeled reference. +2. Scores are in **degrees²** and only comparable within this dataset (the scorer is test-grade — + implemented from paper Eq. 9, no official code exists). +3. Joint-space ISR is the POC's extension beyond the paper (paper operates on EE positions). +4. Only 5 arm joints drive the resampling; the gripper channel drives force-keeping only. + +## Outputs + +``` +trajs/ 100 × ep{N}.npz (positions/gripper/actions/timestamps) + index.json +out/isr/ 100 × ep{N}.npz (ISR-kept) + ep{N}_baseline3x.npz + stats.json +out/scores_raw.json ActionVariance before ISR +out/scores_isr.json ActionVariance after ISR +out/report.json final artifact — buckets, thresholds, per-episode ISR stats +out/eps_sensitivity.json ε-radius stability check +out/plots/ compression.png, spacing.png, variance.png, ep{0..11}_isr.png +run.log full stdout +``` + +Nothing was written back into `mm_teleop`; it is untouched. + +--- + +## v3.0 dataset build (2026-08-18, after the POC run) + +`build_std_dataset.py` materializes the ISR-kept frames as a real LeRobot **v3.0** dataset at +`lerobot_v30/` (223 MB): parquet rows AND the matching video frames, decoded from `mm_teleop` +and re-encoded h264. 100 eps / 9,500 frames / 1 task, loads via `LeRobotDataset`. + +Frames are renumbered onto a uniform grid at **10 fps** — the measured effective rate +(30 fps ÷ 3.05x compression) — because ISR spacing is non-uniform in real time and LeRobot +enforces `timestamp ≈ frame_index / fps`. Episode durations stay within ~2% of the real ones. +`--fps 30` rebuilds at the source rate instead. + +Env: `/workspace/.venv-lerobot` (lerobot 0.4.4). Comparison against ego: `COMPARISON_ego_vs_std_mm_teleop.md`. diff --git a/std_results/build_std_dataset.py b/std_results/build_std_dataset.py new file mode 100644 index 0000000000000000000000000000000000000000..96440e94da9138a7f6610d524c408f9bd19f1292 --- /dev/null +++ b/std_results/build_std_dataset.py @@ -0,0 +1,149 @@ +#!/usr/bin/env python3 +"""Materialize the ISR-standardized teleop set as a native LeRobot v3.0 dataset. + +`teleop_std_poc` only emits npz + report artifacts; SmolVLA needs a real dataset. This takes + source frames : /workspace/mm_teleop (LeRobot v3.0, SO-101, 30 fps) + kept indices : /workspace/std_mm_teleop/out/isr/ep{N}.npz ["keep"] +and writes the kept frames — parquet rows AND the matching video frames — as a new v3.0 tree. + +TIME: ISR frames are non-uniform in real time, so the original timestamps cannot be carried over +(LeRobot enforces timestamp ≈ frame_index / fps within tolerance_s). Frames are renumbered onto a +uniform grid at the dataset's EFFECTIVE rate (30 fps / mean compression ≈ 10 fps), which keeps +episode durations within a few percent of the real ones. Pass --fps 30 to renumber at the source +rate instead (episodes then play ~3x fast). + +Videos are decoded sequentially per camera file (episodes are contiguous and ordered inside them), +so each source frame is touched exactly once. +""" +import argparse +import json +import os +import time +from pathlib import Path + +os.environ.setdefault("HF_HUB_OFFLINE", "1") +os.environ.setdefault("HF_DATASETS_OFFLINE", "1") + +import av +import numpy as np +import pyarrow.parquet as pq + +from lerobot.datasets.lerobot_dataset import LeRobotDataset + +SRC = Path("/workspace/mm_teleop") +ISR = Path("/workspace/std_mm_teleop/out/isr") +OUT = Path("/workspace/std_mm_teleop/lerobot_v30") + + +class CamReader: + """Sequential decoder over one camera's concatenated v3.0 video files.""" + + def __init__(self, root: Path, cam: str): + self.dir = root / "videos" / cam / "chunk-000" + self.file_index = None + self.container = None + self.iter = None + + def _open(self, file_index: int): + if self.container is not None: + self.container.close() + path = self.dir / f"file-{file_index:03d}.mp4" + self.container = av.open(str(path)) + self.iter = self.container.decode(video=0) + self.file_index = file_index + + def take(self, file_index: int, count: int, keep_local: set[int]) -> dict[int, np.ndarray]: + """Consume `count` frames of that file, returning only the ones in keep_local.""" + if file_index != self.file_index: + self._open(file_index) + out = {} + for i in range(count): + frame = next(self.iter) + if i in keep_local: + out[i] = frame.to_ndarray(format="rgb24") + return out + + def close(self): + if self.container is not None: + self.container.close() + + +def main(): + ap = argparse.ArgumentParser() + ap.add_argument("--fps", type=int, default=0, help="0 = effective rate (source fps / compression)") + ap.add_argument("--repo-id", default="angkul07/std_mm_teleop") + ap.add_argument("--out", default=str(OUT)) + ap.add_argument("--limit", type=int, default=0, help="debug: only N episodes") + a = ap.parse_args() + + out_root = Path(a.out) + if out_root.exists(): + raise SystemExit(f"{out_root} exists — remove it first") + + info = json.loads((SRC / "meta" / "info.json").read_text()) + src_fps = int(info["fps"]) + features = {k: dict(v, shape=tuple(v["shape"])) # info.json stores lists; validation wants tuples + for k, v in info["features"].items() + if k in ("action", "observation.state") or k.startswith("observation.images")} + cams = [k for k in features if k.startswith("observation.images")] + + ep_meta = pq.read_table(SRC / "meta" / "episodes" / "chunk-000" / "file-000.parquet").to_pydict() + n_eps = len(ep_meta["episode_index"]) + data = pq.read_table(SRC / "data" / "chunk-000" / "file-000.parquet") + state_all = np.array(data["observation.state"].to_pylist(), dtype=np.float32) + action_all = np.array(data["action"].to_pylist(), dtype=np.float32) + task_by_index = dict(zip(*pq.read_table(SRC / "meta" / "tasks.parquet").to_pydict().values())) + task_index_all = np.array(data["task_index"].to_pylist()) + + keeps = {} + for ep in range(n_eps): + keeps[ep] = np.load(ISR / f"ep{ep}.npz")["keep"].astype(int) + kept_total = sum(len(v) for v in keeps.values()) + src_total = int(info["total_frames"]) + compression = src_total / kept_total + fps = a.fps or max(1, round(src_fps / compression)) + print(f"{src_total} -> {kept_total} frames ({100*kept_total/src_total:.1f}%), " + f"compression {compression:.2f}x -> writing at {fps} fps " + f"({'effective rate' if not a.fps else 'forced'})") + + ds = LeRobotDataset.create( + repo_id=a.repo_id, fps=fps, features=features, root=out_root, + robot_type=info.get("robot_type"), use_videos=True, + image_writer_processes=0, image_writer_threads=4, vcodec="h264", + ) + + readers = {c: CamReader(SRC, c) for c in cams} + t0 = time.time() + todo = n_eps if not a.limit else min(a.limit, n_eps) + for ep in range(todo): + lo, hi = ep_meta["dataset_from_index"][ep], ep_meta["dataset_to_index"][ep] + length = hi - lo + keep = keeps[ep] + keep_set = set(keep.tolist()) + frames = {} + for cam in cams: + fi = ep_meta[f"videos/{cam}/file_index"][ep] + frames[cam] = readers[cam].take(fi, length, keep_set) + if len(frames[cam]) != len(keep): + raise SystemExit(f"ep{ep} {cam}: got {len(frames[cam])} frames, expected {len(keep)}") + task = task_by_index[int(task_index_all[lo])] + for j in keep: + ds.add_frame({ + "observation.state": state_all[lo + j], + "action": action_all[lo + j], + **{c: frames[c][int(j)] for c in cams}, + "task": task, + }) + ds.save_episode() + if ep % 10 == 0 or ep == todo - 1: + el = time.time() - t0 + print(f" ep{ep:>3}: {length} -> {len(keep)} frames | {el:.0f}s elapsed, " + f"eta {el/(ep+1)*(todo-ep-1):.0f}s", flush=True) + + for r in readers.values(): + r.close() + print(f"done in {time.time()-t0:.0f}s -> {out_root}") + + +if __name__ == "__main__": + main() diff --git a/std_results/build_v30.log.gz b/std_results/build_v30.log.gz new file mode 100644 index 0000000000000000000000000000000000000000..6c49b4158828881daeb14ddaff2a9c80e6637d1b --- /dev/null +++ b/std_results/build_v30.log.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcc356159e6c0c7a67dc4de1459cc5782414cc4577bfd7f40a60d3bfc1e6e611 +size 25508 diff --git a/std_results/calibrate.py b/std_results/calibrate.py new file mode 100644 index 0000000000000000000000000000000000000000..90fc3c6f10f51ea74b2df01d11631e9dce921a6c --- /dev/null +++ b/std_results/calibrate.py @@ -0,0 +1,51 @@ +"""Calibrate ISR knobs for degree-unit SO-101 joint data (defaults assume metres).""" +import sys, json +from pathlib import Path +import numpy as np + +sys.path.insert(0, "/workspace/teleop_std_poc") +from isr_resample import _acceleration_magnitudes, isr_resample, _gripper_forced + +T = Path("/workspace/std_mm_teleop/trajs") +files = sorted(T.glob("ep*.npz"), key=lambda p: int(p.stem[2:])) + +step_all, acc_all, grip_d, spans = [], [], [], [] +for f in files: + d = np.load(f) + pos, ts, g = d["positions"], d["timestamps"], d["gripper"] + step_all.append(np.linalg.norm(np.diff(pos, axis=0), axis=1)) + acc_all.append(_acceleration_magnitudes(pos, ts)) + grip_d.append(np.abs(np.diff(g))) + spans.append(g.max() - g.min()) +step = np.concatenate(step_all); acc = np.concatenate(acc_all); gd = np.concatenate(grip_d) +print(f"per-frame joint step (deg): mean {step.mean():.3f} median {np.median(step):.3f} p90 {np.percentile(step,90):.3f}") +print(f"accel magnitude (deg/s^2): mean {acc.mean():.1f} median {np.median(acc):.1f}") +print(f"gripper |delta| per frame: median {np.median(gd):.3f} p90 {np.percentile(gd,90):.3f} max {gd.max():.2f}") +print(f"gripper span per episode : mean {np.mean(spans):.1f}") + +# lambda_acc so the acceleration term carries a comparable weight to distance, as in the paper +# (paper: metres + lambda_acc 0.01 -> acc term is a minority but non-trivial share of the info) +for la in [0.0, 0.001, 0.002, 0.005, 0.01]: + share = la * acc.mean() / (step.mean() + la * acc.mean()) + print(f" lambda_acc={la:<6} -> acc share of per-frame info {100*share:.0f}%") + +# gripper threshold: pick the knee between "real open/close" and per-frame jitter +for th in [0.5, 1.0, 2.0, 3.0]: + frac = float((gd > th).mean()) + print(f" grip_threshold={th:<4} -> {100*frac:.1f}% of frame pairs flagged as gripper events") + +# d_target sweep on a 12-episode probe (keep ratio + gripper-forced share) +probe = files[:12] +la, gt = 0.002, 2.0 +print("\nd_target sweep (12-episode probe, lambda_acc=%.3f, grip_th=%.1f):" % (la, gt)) +for dt in [2, 4, 6, 8, 12, 16, 24]: + ratios, forced_share = [], [] + for f in probe: + d = np.load(f) + pos, ts, g = d["positions"], d["timestamps"], d["gripper"] + keep = isr_resample(pos, ts, g, dt, 1.0, la, gt) + forced = _gripper_forced(g, len(pos), threshold=gt) + ratios.append(len(keep) / len(pos)) + forced_share.append(len(forced) / max(len(keep), 1)) + print(f" d_target={dt:<4} kept {100*np.mean(ratios):5.1f}% (min {100*min(ratios):.0f} max {100*max(ratios):.0f}) " + f"| gripper-forced share of kept {100*np.mean(forced_share):.0f}%") diff --git a/std_results/calibration_sweep.txt b/std_results/calibration_sweep.txt new file mode 100644 index 0000000000000000000000000000000000000000..f435c13a05effed0d32670ee79947ba5cedcb410 --- /dev/null +++ b/std_results/calibration_sweep.txt @@ -0,0 +1,22 @@ +per-frame joint step (deg): mean 2.028 median 1.497 p90 4.997 +accel magnitude (deg/s^2): mean 267.4 median 237.4 +gripper |delta| per frame: median 0.000 p90 2.478 max 3.75 +gripper span per episode : mean 41.6 + lambda_acc=0.0 -> acc share of per-frame info 0% + lambda_acc=0.001 -> acc share of per-frame info 12% + lambda_acc=0.002 -> acc share of per-frame info 21% + lambda_acc=0.005 -> acc share of per-frame info 40% + lambda_acc=0.01 -> acc share of per-frame info 57% + grip_threshold=0.5 -> 21.3% of frame pairs flagged as gripper events + grip_threshold=1.0 -> 18.0% of frame pairs flagged as gripper events + grip_threshold=2.0 -> 12.5% of frame pairs flagged as gripper events + grip_threshold=3.0 -> 7.3% of frame pairs flagged as gripper events + +d_target sweep (12-episode probe, lambda_acc=0.002, grip_th=2.0): + d_target=2 kept 69.7% (min 65 max 74) | gripper-forced share of kept 21% + d_target=4 kept 60.5% (min 53 max 65) | gripper-forced share of kept 24% + d_target=6 kept 51.5% (min 41 max 58) | gripper-forced share of kept 29% + d_target=8 kept 42.9% (min 34 max 49) | gripper-forced share of kept 34% + d_target=12 kept 33.3% (min 26 max 42) | gripper-forced share of kept 44% + d_target=16 kept 28.8% (min 22 max 38) | gripper-forced share of kept 51% + d_target=24 kept 23.9% (min 18 max 34) | gripper-forced share of kept 61% diff --git a/std_results/comparison_stats.json b/std_results/comparison_stats.json new file mode 100644 index 0000000000000000000000000000000000000000..107e162689d6d48c6cdd7693d3effd385d4cbffb --- /dev/null +++ b/std_results/comparison_stats.json @@ -0,0 +1,224 @@ +[ + { + "name": "std_mm_teleop", + "root": "/workspace/std_mm_teleop/lerobot_v30", + "format": "LeRobot v3.0", + "robot_type": "so_follower", + "fps": 10, + "episodes": 100, + "frames": 9500, + "tasks": 1, + "task_examples": [ + "pick up blue cube and put into orange box" + ], + "duration_s": 950.0, + "duration_hms": "15.8 min", + "episode_len": { + "mean": 95.0, + "min": 78, + "max": 117, + "median": 94 + }, + "camera_keys": [ + "observation.images.wrist", + "observation.images.front" + ], + "video": { + "observation.images.wrist": { + "codec": "h264", + "size": "640x480", + "pix_fmt": "yuv420p", + "fps": "10/1", + "n_files": 1 + }, + "observation.images.front": { + "codec": "h264", + "size": "640x480", + "pix_fmt": "yuv420p", + "fps": "10/1", + "n_files": 1 + } + }, + "state_dtype": "float32[6]", + "action_dtype": "float32[6]", + "state_layout": [ + "shoulder_pan.pos", + "shoulder_lift.pos", + "elbow_flex.pos", + "wrist_flex.pos", + "wrist_roll.pos", + "gripper.pos" + ], + "state_range_deg": [ + [ + -14.3, + 62.6 + ], + [ + -105.8, + 70.7 + ], + [ + -78.3, + 97.1 + ], + [ + 28.7, + 97.2 + ], + [ + -72.2, + 115.5 + ], + [ + 1.4, + 59.8 + ] + ], + "action_convention": { + "mae_vs_state_at_lag": { + "0": 4.0875, + "1": 2.4818, + "2": 2.0846, + "3": 3.0765, + "4": 4.45, + "5": 6.1464, + "6": 7.921 + }, + "best_lag_frames": 2, + "best_lag_mae_deg": 2.0846 + }, + "gripper": { + "state_range": [ + 1.398, + 59.784 + ], + "action_range": [ + 0.0, + 60.714 + ], + "looks_normalized_01": false, + "mean": 18.569, + "mean_normalized": 0.294, + "p05_p50_p95": [ + 1.461, + 13.85, + 44.473 + ], + "pct_below_25pct_of_span": 52.6, + "pct_above_75pct_of_span": 4.1 + } + }, + { + "name": "ego_v21", + "root": "/workspace/final_dataset/final_data/ego_v21", + "format": "LeRobot v3.0", + "robot_type": "so101_follower", + "fps": 30, + "episodes": 324, + "frames": 36442, + "tasks": 89, + "task_examples": [ + "pick up a AirPods case from the table and place it on the chessboard.", + "pick up a black silk hairtie from the table and place it in the clear jar.", + "pick up a black stapler from the table and place it in the box lid." + ], + "duration_s": 1214.7, + "duration_hms": "20.2 min", + "episode_len": { + "mean": 112.5, + "min": 30, + "max": 354, + "median": 96 + }, + "camera_keys": [ + "observation.images.front", + "observation.images.wrist" + ], + "video": { + "observation.images.front": { + "codec": "h264", + "size": "640x480", + "pix_fmt": "yuv420p", + "fps": "30/1", + "n_files": 1 + }, + "observation.images.wrist": { + "codec": "h264", + "size": "640x480", + "pix_fmt": "yuv420p", + "fps": "30/1", + "n_files": 1 + } + }, + "state_dtype": "float32[6]", + "action_dtype": "float32[6]", + "state_layout": [ + "shoulder_pan.pos", + "shoulder_lift.pos", + "elbow_flex.pos", + "wrist_flex.pos", + "wrist_roll.pos", + "gripper.pos" + ], + "state_range_deg": [ + [ + -110.0, + 110.0 + ], + [ + -100.0, + 100.0 + ], + [ + -96.8, + 96.8 + ], + [ + -95.0, + 95.0 + ], + [ + -157.2, + 162.8 + ], + [ + -10.0, + 84.3 + ] + ], + "action_convention": { + "mae_vs_state_at_lag": { + "0": 1.9507, + "1": 0.0, + "2": 1.9761, + "3": 3.8321, + "4": 5.6246, + "5": 7.3562, + "6": 9.0061 + }, + "best_lag_frames": 1, + "best_lag_mae_deg": 0.0 + }, + "gripper": { + "state_range": [ + -10.0, + 84.298 + ], + "action_range": [ + -8.594, + 84.298 + ], + "looks_normalized_01": false, + "mean": 20.944, + "mean_normalized": 0.328, + "p05_p50_p95": [ + 1.1, + 18.343, + 49.112 + ], + "pct_below_25pct_of_span": 33.5, + "pct_above_75pct_of_span": 0.7 + } + } +] \ No newline at end of file diff --git a/std_results/eps_sens.py b/std_results/eps_sens.py new file mode 100644 index 0000000000000000000000000000000000000000..2718d0f04ca3854dc77c0b3598cfa6e0320b0ba7 --- /dev/null +++ b/std_results/eps_sens.py @@ -0,0 +1,43 @@ +"""ε sensitivity: is the per-episode ranking stable, or an artifact of over-wide state clusters?""" +import sys, json +from pathlib import Path +import numpy as np + +sys.path.insert(0, "/workspace/teleop_std_poc") +import os +os.environ.setdefault("TSP_ROOT", "/workspace/std_mm_teleop") +from action_variance import load, score + +eps_list = [0.5, 0.3, 0.2, 0.1] +episodes = load("isr") +S = np.concatenate([p for _, p, _ in episodes]) +mu, sd = S.mean(0), S.std(0) + 1e-9 +Z = (S - mu) / sd +res = {} +rank0 = None +out = {} +for e in eps_list: + per, ds, _ = score(episodes, e, 2) + names = list(per) + vals = np.array([per[n]["score"] if per[n]["score"] is not None else np.nan for n in names]) + cov = np.mean([per[n]["scored_points"] / per[n]["total_points"] for n in names]) + # mean cluster size, sampled (full N^2 already done inside score, recompute cheaply on a sample) + idx = np.random.default_rng(0).choice(len(Z), size=min(2000, len(Z)), replace=False) + sizes = [(np.linalg.norm(Z - Z[i], axis=1) <= e).sum() for i in idx] + r = np.argsort(np.argsort(np.nan_to_num(vals, nan=-1))) + if rank0 is None: + rank0 = r + corr = 1.0 + else: + corr = float(np.corrcoef(rank0, r)[0, 1]) + out[str(e)] = {"dataset_av": None if ds is None else round(ds, 4), + "coverage": round(100 * cov, 1), + "mean_cluster_size": round(float(np.mean(sizes)), 1), + "median_cluster_size": int(np.median(sizes)), + "cluster_pct_of_dataset": round(100 * float(np.mean(sizes)) / len(Z), 2), + "rank_corr_vs_eps0.5": round(corr, 3)} + print(e, out[str(e)]) +Path("/workspace/std_mm_teleop/out/eps_sensitivity.json").write_text(json.dumps( + {"note": "per-episode ActionVariance ranking vs cluster radius on ISR-resampled data", + "n_points": int(len(Z)), "eps": out}, indent=2)) +print("wrote out/eps_sensitivity.json") diff --git a/std_results/out/eps_sensitivity.json b/std_results/out/eps_sensitivity.json new file mode 100644 index 0000000000000000000000000000000000000000..579e60018413817343aa968f4c3c96afe184912f --- /dev/null +++ b/std_results/out/eps_sensitivity.json @@ -0,0 +1,38 @@ +{ + "note": "per-episode ActionVariance ranking vs cluster radius on ISR-resampled data", + "n_points": 9500, + "eps": { + "0.5": { + "dataset_av": 94.3317, + "coverage": 99.6, + "mean_cluster_size": 90.5, + "median_cluster_size": 34, + "cluster_pct_of_dataset": 0.95, + "rank_corr_vs_eps0.5": 1.0 + }, + "0.3": { + "dataset_av": 32.7051, + "coverage": 92.4, + "mean_cluster_size": 22.1, + "median_cluster_size": 11, + "cluster_pct_of_dataset": 0.23, + "rank_corr_vs_eps0.5": 0.51 + }, + "0.2": { + "dataset_av": 11.1128, + "coverage": 74.0, + "mean_cluster_size": 8.5, + "median_cluster_size": 5, + "cluster_pct_of_dataset": 0.09, + "rank_corr_vs_eps0.5": 0.41 + }, + "0.1": { + "dataset_av": 2.0393, + "coverage": 42.3, + "mean_cluster_size": 3.5, + "median_cluster_size": 1, + "cluster_pct_of_dataset": 0.04, + "rank_corr_vs_eps0.5": 0.186 + } + } +} \ No newline at end of file diff --git a/std_results/out/isr/ep0.npz b/std_results/out/isr/ep0.npz new file mode 100644 index 0000000000000000000000000000000000000000..99e450ecdec57173fc9c64f5b4c31977d5ed7469 --- /dev/null +++ b/std_results/out/isr/ep0.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:985b67a2ce220606a9e653a896b59fdc2a57b07fecf117d74a82e218fbdffbf0 +size 11892 diff --git a/std_results/out/isr/ep0_baseline3x.npz b/std_results/out/isr/ep0_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..b2fa9f0b552848f29cd957dd12c2b025aea2a06f --- /dev/null +++ b/std_results/out/isr/ep0_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36f8b60d3a2df4547b707ef891ca7be607c27cbaa276259b8d04cc7b3d606cd4 +size 10474 diff --git a/std_results/out/isr/ep1.npz b/std_results/out/isr/ep1.npz new file mode 100644 index 0000000000000000000000000000000000000000..b06f2156db3ad376fcb84edeb6362496472714d5 --- /dev/null +++ b/std_results/out/isr/ep1.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c46ef8ae2811b763b1448d8faa49363adb991570c4e2b41bbb0aa6b828ae4922 +size 13012 diff --git a/std_results/out/isr/ep10.npz b/std_results/out/isr/ep10.npz new file mode 100644 index 0000000000000000000000000000000000000000..48f259e33447781b4778fbf3d33f45cfa3b6b608 --- /dev/null +++ b/std_results/out/isr/ep10.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b747a59d43f26557313b3c913162b108537c083697a05ea4e3c31e9b148dc3f +size 11204 diff --git a/std_results/out/isr/ep10_baseline3x.npz b/std_results/out/isr/ep10_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..5febb6a3e405607c13667dd552d3527c8ec0f989 --- /dev/null +++ b/std_results/out/isr/ep10_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e9f5a0271b47ccdab8b720a73e6817c80e459c5843fe55a93da653118136cb6 +size 9434 diff --git a/std_results/out/isr/ep11.npz b/std_results/out/isr/ep11.npz new file mode 100644 index 0000000000000000000000000000000000000000..e8f02203636039d0c954b1c32de6d278ccccac08 --- /dev/null +++ b/std_results/out/isr/ep11.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec2b14f66547bc2631c51282e474e4f0e6909c2bc1c213876dfd952e74aa6142 +size 13900 diff --git a/std_results/out/isr/ep11_baseline3x.npz b/std_results/out/isr/ep11_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..9485e94d2caf2116e4e42a5828ef9ecd9436d69e --- /dev/null +++ b/std_results/out/isr/ep11_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88ad0bacbb046414ba96ccdfc949725a911e7a8694ce1006ad0c8e66440c289d +size 9850 diff --git a/std_results/out/isr/ep12.npz b/std_results/out/isr/ep12.npz new file mode 100644 index 0000000000000000000000000000000000000000..34215ae9afdbe47ceb8ade4464929a5109ea094f --- /dev/null +++ b/std_results/out/isr/ep12.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:035d209f965c95151b7eba7456d6050495ff2f9d51e9ce26406fee5dde2748f1 +size 10428 diff --git a/std_results/out/isr/ep12_baseline3x.npz b/std_results/out/isr/ep12_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..0240c07d23415bb6a2e21558a6ad457eae5b7844 --- /dev/null +++ b/std_results/out/isr/ep12_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b7732ffc8edb4b9ad2bdac87dd514624b67921549928b126d23ca38cc332303 +size 11618 diff --git a/std_results/out/isr/ep13.npz b/std_results/out/isr/ep13.npz new file mode 100644 index 0000000000000000000000000000000000000000..230fc68c20d7ef85e9ed7c2f8222d9ce6f8d9ff6 --- /dev/null +++ b/std_results/out/isr/ep13.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:901aac020baf83a6a1aad7ba708fd22ec1bca77e9f0896186564e98e5c1a9098 +size 11708 diff --git a/std_results/out/isr/ep13_baseline3x.npz b/std_results/out/isr/ep13_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..0924f81782c0dd0f9d5ee0b8523a5bc6a3d0ddf5 --- /dev/null +++ b/std_results/out/isr/ep13_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ff292435eb8ea4daf5074050f942141ff4ad11dd606b3d4f2c9afce61535229 +size 10890 diff --git a/std_results/out/isr/ep14.npz b/std_results/out/isr/ep14.npz new file mode 100644 index 0000000000000000000000000000000000000000..a3f102490436f34c9769a4df651b6787cc5c1975 --- /dev/null +++ b/std_results/out/isr/ep14.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:169de8654175ce48f7015fb0f8a2559a12d102dbb388846544b1a8d165aaf3fc +size 12396 diff --git a/std_results/out/isr/ep14_baseline3x.npz b/std_results/out/isr/ep14_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..e5557b318b5743d247dfdb5d21aaee741d3514dd --- /dev/null +++ b/std_results/out/isr/ep14_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d68a24718b36111636517c3209b8904f4539626735da7fc1c7cfa77dde9f3f7 +size 10578 diff --git a/std_results/out/isr/ep15.npz b/std_results/out/isr/ep15.npz new file mode 100644 index 0000000000000000000000000000000000000000..a13177cf981cccb70d81975565852168ffafeac5 --- /dev/null +++ b/std_results/out/isr/ep15.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dbe44609551f66b178a649fede6290084ddea47215a61204ba5b4c7251d7c1c +size 11948 diff --git a/std_results/out/isr/ep15_baseline3x.npz b/std_results/out/isr/ep15_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..14d8ebf833bffad69850a52068572cec0a78e3ca --- /dev/null +++ b/std_results/out/isr/ep15_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89ebded65b49f5f1b81d21c8370869af984dc96798f70c844e0ec90953d27553 +size 10058 diff --git a/std_results/out/isr/ep16.npz b/std_results/out/isr/ep16.npz new file mode 100644 index 0000000000000000000000000000000000000000..3f123cb8e61784eb116e7b9f2c88d3c6c2fbc544 --- /dev/null +++ b/std_results/out/isr/ep16.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1664a043dcd8b57805528a7047dc120f0956f69f3fbbec9be2223797e2c92e3b +size 12356 diff --git a/std_results/out/isr/ep16_baseline3x.npz b/std_results/out/isr/ep16_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..4185f2c8c074fcd564596d97e95244f8ac485528 --- /dev/null +++ b/std_results/out/isr/ep16_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6763f63dfedf77819721ca9d0113812e6540cdd91495e7adce6fc21b9da9d663 +size 9954 diff --git a/std_results/out/isr/ep17.npz b/std_results/out/isr/ep17.npz new file mode 100644 index 0000000000000000000000000000000000000000..2dedd6ffe4ae1db8b1a38e29d6dfc55847229270 --- /dev/null +++ b/std_results/out/isr/ep17.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6f2096948a3b46a7e802793d782cf434eb4710d34032e7cb8ac46f6f3fd4f39 +size 11740 diff --git a/std_results/out/isr/ep17_baseline3x.npz b/std_results/out/isr/ep17_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..286c800d7c39456deacf01f77eb7b0fcbdb16140 --- /dev/null +++ b/std_results/out/isr/ep17_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ca1475df5eccf002945dce6bedfd6004fa8625ede8be8c89f3880f9550c9740 +size 11618 diff --git a/std_results/out/isr/ep18.npz b/std_results/out/isr/ep18.npz new file mode 100644 index 0000000000000000000000000000000000000000..3672dbad248072b6e3c5d61d1cd99429a24e9a31 --- /dev/null +++ b/std_results/out/isr/ep18.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf5de414cbf1f58f8a92cf0b0b57fc8d197771a4cd4f64ea81e668fe1fe166a2 +size 11812 diff --git a/std_results/out/isr/ep18_baseline3x.npz b/std_results/out/isr/ep18_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..5073f10ccbcd286e39e31432969387928ccc240b --- /dev/null +++ b/std_results/out/isr/ep18_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4fec41fee45ac170abbad2cda14c39cc0679ba03a9de15ba14cfbd8289182fb +size 12138 diff --git a/std_results/out/isr/ep19.npz b/std_results/out/isr/ep19.npz new file mode 100644 index 0000000000000000000000000000000000000000..596bed110934f76848e885f3499772dfa69815de --- /dev/null +++ b/std_results/out/isr/ep19.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4eaaed4f00ef975bba3e65b65348042d58f90b94e2add2844655659c3327beef +size 12116 diff --git a/std_results/out/isr/ep19_baseline3x.npz b/std_results/out/isr/ep19_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..e8f556e46808367efdf4131b3c8f6c55c1c46316 --- /dev/null +++ b/std_results/out/isr/ep19_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:468fedc8588646b89f1d9cbfc4891cdb17a045530f847dcbb0bdfab665a1602e +size 12034 diff --git a/std_results/out/isr/ep1_baseline3x.npz b/std_results/out/isr/ep1_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..0f06b5d5c7172aa39edae901f1493e95fc34df90 --- /dev/null +++ b/std_results/out/isr/ep1_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57f614de6f14ae058e995263ccd87d8878b94e28f235587a58fd507168b6bfc6 +size 10786 diff --git a/std_results/out/isr/ep2.npz b/std_results/out/isr/ep2.npz new file mode 100644 index 0000000000000000000000000000000000000000..7c5738bec56b03e3966074bebe3eda3d33875d19 --- /dev/null +++ b/std_results/out/isr/ep2.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:132a9fb38a2d123947821770ca4e6d7dc23fb39fab5254e7b6378156176e809e +size 13236 diff --git a/std_results/out/isr/ep20.npz b/std_results/out/isr/ep20.npz new file mode 100644 index 0000000000000000000000000000000000000000..ff7021fdfbdb20028e0df81c4a250dcb92c5eaed --- /dev/null +++ b/std_results/out/isr/ep20.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:495a5b06dd3b741196096e67de84496fe777281fd8b3304636b38953f182f2ce +size 11460 diff --git a/std_results/out/isr/ep20_baseline3x.npz b/std_results/out/isr/ep20_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..641dfb9fc6528c2c7ce7b2188646eea042599a58 --- /dev/null +++ b/std_results/out/isr/ep20_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3fbb4703da668d03ee3a8830214067240b8cff450603096020c07ca01d88b2a +size 11410 diff --git a/std_results/out/isr/ep21.npz b/std_results/out/isr/ep21.npz new file mode 100644 index 0000000000000000000000000000000000000000..aea74892e312860be3a383360d7d443cc44fab38 --- /dev/null +++ b/std_results/out/isr/ep21.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a88c387c87c00e07baaffd460c2b3abd95b659d12e2eaea73c041c2c872f8fa +size 12500 diff --git a/std_results/out/isr/ep21_baseline3x.npz b/std_results/out/isr/ep21_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..7f2024c060fc334c9438437aa8b62bcd0484794b --- /dev/null +++ b/std_results/out/isr/ep21_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50267cef61387e4ba41035ba79079ee16469e550634349b97ca4572ef06585c8 +size 10890 diff --git a/std_results/out/isr/ep22.npz b/std_results/out/isr/ep22.npz new file mode 100644 index 0000000000000000000000000000000000000000..a94c176f289fa1580e057e719cbb33852d814a87 --- /dev/null +++ b/std_results/out/isr/ep22.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06d9121af94aa8ba6860a0a2209335c04e81b22c60e71254970fdcffd7dbaf32 +size 12476 diff --git a/std_results/out/isr/ep22_baseline3x.npz b/std_results/out/isr/ep22_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..c854b76c7aa0789b961df366b1dc10f2a87573a0 --- /dev/null +++ b/std_results/out/isr/ep22_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:680b29fb1157c0716d683e86c51fa341a2ed32ed73b0bea278972d74e5278714 +size 9954 diff --git a/std_results/out/isr/ep23.npz b/std_results/out/isr/ep23.npz new file mode 100644 index 0000000000000000000000000000000000000000..464f88974fde7eb35f584001e6a1980daa06152c --- /dev/null +++ b/std_results/out/isr/ep23.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2c353d5ad4e8d2a686a7f0ed4864c459d7211e6c77d94afc5a4061384ed7694 +size 13164 diff --git a/std_results/out/isr/ep23_baseline3x.npz b/std_results/out/isr/ep23_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..7045c5c6cccf27411893859e17ff31c591fc3632 --- /dev/null +++ b/std_results/out/isr/ep23_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92e583eb910c6939e3759e2174d548368554d6aa009832c287b17e7e0270ddc4 +size 10786 diff --git a/std_results/out/isr/ep24.npz b/std_results/out/isr/ep24.npz new file mode 100644 index 0000000000000000000000000000000000000000..0acfff5f12a3adb8077e18663891edda03019690 --- /dev/null +++ b/std_results/out/isr/ep24.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a8efde2763569981b15501719ce8e04c86c943fb9aadc15aac45ca0c78519d1 +size 12236 diff --git a/std_results/out/isr/ep24_baseline3x.npz b/std_results/out/isr/ep24_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..654c717d6a45ac5de17f116eb8d99bc745fcd0ae --- /dev/null +++ b/std_results/out/isr/ep24_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27d3b75bb608f6698707b727c3fe90d155ee6c92e30ae2fe1f3e82fbf7274b6a +size 9850 diff --git a/std_results/out/isr/ep25.npz b/std_results/out/isr/ep25.npz new file mode 100644 index 0000000000000000000000000000000000000000..db35c035dcab4540781186f51930a162012d04e9 --- /dev/null +++ b/std_results/out/isr/ep25.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b64a738b2beb136f31c3a2a1608a9dd1406c14ba446b5237582b277d701444d5 +size 12972 diff --git a/std_results/out/isr/ep25_baseline3x.npz b/std_results/out/isr/ep25_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..3a8a0a95cf7de035d5f3f2d709fe3902579491d7 --- /dev/null +++ b/std_results/out/isr/ep25_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:00b3f760a31619dd4f8d6b3d46210f8349ea22244c0b3083c9e472f9cb079479 +size 10370 diff --git a/std_results/out/isr/ep26.npz b/std_results/out/isr/ep26.npz new file mode 100644 index 0000000000000000000000000000000000000000..0dda55b9625891eb2e38f35f4539d916ffc6ede2 --- /dev/null +++ b/std_results/out/isr/ep26.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94bc70762da5b1602f3bed5606160b429927275649c52214c1e612ebf85899cd +size 13764 diff --git a/std_results/out/isr/ep26_baseline3x.npz b/std_results/out/isr/ep26_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..bdfd44e9494f234a4ab27e3efcbf6b3edf077182 --- /dev/null +++ b/std_results/out/isr/ep26_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e465a129ac69756b6f0f5b78836c3ccafaa7a6b4d6665bd141100278ad2db41a +size 9330 diff --git a/std_results/out/isr/ep27.npz b/std_results/out/isr/ep27.npz new file mode 100644 index 0000000000000000000000000000000000000000..3ddb2e336e4dd16864431067fab960945dcfa335 --- /dev/null +++ b/std_results/out/isr/ep27.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13f886637057f175c31a58b99f6a08b2cf60401ce85f0819d8e35555d1ce0982 +size 11532 diff --git a/std_results/out/isr/ep27_baseline3x.npz b/std_results/out/isr/ep27_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..cadb963431788677be48fbb5957fc8208a413ed1 --- /dev/null +++ b/std_results/out/isr/ep27_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f468ef306db5efeda6141d8d13ee39bce016d306adbe95f2c09f4a93f913be8 +size 10162 diff --git a/std_results/out/isr/ep28.npz b/std_results/out/isr/ep28.npz new file mode 100644 index 0000000000000000000000000000000000000000..301c4192659cdb53afa430916047bc5594915865 --- /dev/null +++ b/std_results/out/isr/ep28.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3c29a236216ab9187951ed9f17f87e99ca011a70032db5cf729ba589f9368cd +size 11876 diff --git a/std_results/out/isr/ep28_baseline3x.npz b/std_results/out/isr/ep28_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..5e15eda60223b80ed2bf51e862aedd65977097e5 --- /dev/null +++ b/std_results/out/isr/ep28_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e4d3217748eb29e5d22b16e40637624fb9af655dff0977380c659b4192a4d29 +size 11826 diff --git a/std_results/out/isr/ep29.npz b/std_results/out/isr/ep29.npz new file mode 100644 index 0000000000000000000000000000000000000000..403061aec2f23eee28a189afe0be3891dcb2efe4 --- /dev/null +++ b/std_results/out/isr/ep29.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:959a2eb5ec27194559fe51a62362392aaa80388e8f5fda4c98cb77691a91b9aa +size 12684 diff --git a/std_results/out/isr/ep29_baseline3x.npz b/std_results/out/isr/ep29_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..ad78c177afe9e06eaf86f4fe32f83f19114aa146 --- /dev/null +++ b/std_results/out/isr/ep29_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b2515eedda68e1522bb0c8373a317e600a6a661adc96a0cb7eb663299d56fe4 +size 10474 diff --git a/std_results/out/isr/ep2_baseline3x.npz b/std_results/out/isr/ep2_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..37e7c3a9b04e93ef227916104d6ebd7cc75a1199 --- /dev/null +++ b/std_results/out/isr/ep2_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1299508224edcb78af7d570cdf87f65811653a011a7ee1e2b6b5ddbff57a5f67 +size 11514 diff --git a/std_results/out/isr/ep3.npz b/std_results/out/isr/ep3.npz new file mode 100644 index 0000000000000000000000000000000000000000..1a678a3db69c49beadfc4078c12ace42644bb5eb --- /dev/null +++ b/std_results/out/isr/ep3.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6067e4ec57fd48146e0d8190419b27875147183e25f0f83bf7a3f9d07df6c32f +size 11620 diff --git a/std_results/out/isr/ep30.npz b/std_results/out/isr/ep30.npz new file mode 100644 index 0000000000000000000000000000000000000000..cfacbd678b35be2ee7ff279ef3c5241586df6bd6 --- /dev/null +++ b/std_results/out/isr/ep30.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9a0390d4eeb5d89379112975d88f501e0dc95968885f420b1f30e7d774dc383 +size 12572 diff --git a/std_results/out/isr/ep30_baseline3x.npz b/std_results/out/isr/ep30_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..939be8bec3e5762734a400877d8fd5ad94fe9f39 --- /dev/null +++ b/std_results/out/isr/ep30_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ff3d7783b05cb763aa495ef1d3648f010d6f350b425f070092a475fe0d429e0 +size 10682 diff --git a/std_results/out/isr/ep31.npz b/std_results/out/isr/ep31.npz new file mode 100644 index 0000000000000000000000000000000000000000..f563dc22a1406aabda41f16ceca1a6c03a8cfa71 --- /dev/null +++ b/std_results/out/isr/ep31.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89ec666414863c234a3a270a0048ebb2d7038064ad6e3537c0ac29667c57c47f +size 11532 diff --git a/std_results/out/isr/ep31_baseline3x.npz b/std_results/out/isr/ep31_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..f0aa85bcaf0e686b5a7ef4c7df6fb6cdb63854ce --- /dev/null +++ b/std_results/out/isr/ep31_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44c234b143c4a4e0562a2bc95554d5c5dab703f76fe1dfff4a8377e6b4736dfe +size 10786 diff --git a/std_results/out/isr/ep32.npz b/std_results/out/isr/ep32.npz new file mode 100644 index 0000000000000000000000000000000000000000..7990dc7b59e7d3dc41076b0790d55af9b835e812 --- /dev/null +++ b/std_results/out/isr/ep32.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9344f3e2002bc8116cba1bf1f069b5e6ae38eaffec2241d7214ef2919a58e2fc +size 12252 diff --git a/std_results/out/isr/ep32_baseline3x.npz b/std_results/out/isr/ep32_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..47a3a6daaa420163d64e815ed61736edb26713e3 --- /dev/null +++ b/std_results/out/isr/ep32_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dc8ce361f3e62c30a40b5d2cb1bc2b71d01e4fe238878faaaec52d123160c02 +size 10578 diff --git a/std_results/out/isr/ep33.npz b/std_results/out/isr/ep33.npz new file mode 100644 index 0000000000000000000000000000000000000000..10a495c58972f1214ed9689d90caa044c1c35df6 --- /dev/null +++ b/std_results/out/isr/ep33.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c69e2cf677cebf797b4043f9ca6677afb61de9a6a98aa5dfc03160805ecba3f0 +size 14228 diff --git a/std_results/out/isr/ep33_baseline3x.npz b/std_results/out/isr/ep33_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..2705203b89f7078390b9356aff6da1297bbba426 --- /dev/null +++ b/std_results/out/isr/ep33_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6b4d49c353085e3d496b2da5954155d026396fa5d4f8c8974fe103970926e32 +size 11202 diff --git a/std_results/out/isr/ep34.npz b/std_results/out/isr/ep34.npz new file mode 100644 index 0000000000000000000000000000000000000000..d0b636ac555271d425ddd49335ff3dfa37bf9157 --- /dev/null +++ b/std_results/out/isr/ep34.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa4bd4adc0bc5ec0b2b68e037e99933b84b48d3a47c112cd091e81b08ffd0547 +size 13516 diff --git a/std_results/out/isr/ep34_baseline3x.npz b/std_results/out/isr/ep34_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..7d18eb5acc976e7f0ab2fc271e422df8a9ce95d5 --- /dev/null +++ b/std_results/out/isr/ep34_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c74710d0f2b6ffb578c87ac17c844de9a039ab983726cd686ae4bdcaae7fdd0 +size 10370 diff --git a/std_results/out/isr/ep35.npz b/std_results/out/isr/ep35.npz new file mode 100644 index 0000000000000000000000000000000000000000..c3c01484fbf43f9e65eeac75bec2e702cf6783ba --- /dev/null +++ b/std_results/out/isr/ep35.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c58786ecbaee34fb49865262a021a04be403d87b66a9e30433a31654a9fb5546 +size 11556 diff --git a/std_results/out/isr/ep35_baseline3x.npz b/std_results/out/isr/ep35_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..a9d49c173ac94ef9062dd6b8a3097a17a7a6fcf1 --- /dev/null +++ b/std_results/out/isr/ep35_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5b17ceb77dc382b6bcf1c25ad927b7da1a68741cf9cb411627dc268489db37f +size 11202 diff --git a/std_results/out/isr/ep36.npz b/std_results/out/isr/ep36.npz new file mode 100644 index 0000000000000000000000000000000000000000..04ce6066febd96fa2d3c728a9a126888f49b7d22 --- /dev/null +++ b/std_results/out/isr/ep36.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86839bcefe47833ea15868846415a19a71445003d5f9ac434c79bef8ed7bc69d +size 11804 diff --git a/std_results/out/isr/ep36_baseline3x.npz b/std_results/out/isr/ep36_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..9c283225a549e7ac57cd89a8bba9a6e08aa20273 --- /dev/null +++ b/std_results/out/isr/ep36_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4e788b5f64adf23e15ab1eb92cb5f3e1442423101efb72d76164cfa32e98f95 +size 10890 diff --git a/std_results/out/isr/ep37.npz b/std_results/out/isr/ep37.npz new file mode 100644 index 0000000000000000000000000000000000000000..feba52afde1715e89ec4582af442f99f41c4115c --- /dev/null +++ b/std_results/out/isr/ep37.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa93f3744ba96aee30ddc05d448e11a7653b09fd66cac533e0c5e8ddc11c1ace +size 10996 diff --git a/std_results/out/isr/ep37_baseline3x.npz b/std_results/out/isr/ep37_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..951e9de94e88ffb1a0b65aa2afc5ce5c04f538a4 --- /dev/null +++ b/std_results/out/isr/ep37_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3837e7ab3068db3ecbbceb4212202dc739f80aefc114feb13f6d99c0d55facf +size 10890 diff --git a/std_results/out/isr/ep38.npz b/std_results/out/isr/ep38.npz new file mode 100644 index 0000000000000000000000000000000000000000..f2cf35e84a31e8b99117eb31c0d79dfa4ed179a3 --- /dev/null +++ b/std_results/out/isr/ep38.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12ecc4ff5bc8c2fbac72942df24f71d7b7fa97d0f93de797a21352c4b699fb09 +size 14028 diff --git a/std_results/out/isr/ep38_baseline3x.npz b/std_results/out/isr/ep38_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..f706c4a40fb391f2d2620066abd6191b4e484954 --- /dev/null +++ b/std_results/out/isr/ep38_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a41cde111010adf96a0359ae4da382327e61a668e8b529b7ac3e422265d9e9b3 +size 10994 diff --git a/std_results/out/isr/ep39.npz b/std_results/out/isr/ep39.npz new file mode 100644 index 0000000000000000000000000000000000000000..1e97e697abefeb00bc7bd4bb221a5303eeeb24a1 --- /dev/null +++ b/std_results/out/isr/ep39.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d58cb8a64c71bbb277057fea688463714ffdec50243c703d63601681c9aa01b5 +size 12404 diff --git a/std_results/out/isr/ep39_baseline3x.npz b/std_results/out/isr/ep39_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..3af8e111e34b396580815f2523121320bc6a29f9 --- /dev/null +++ b/std_results/out/isr/ep39_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a231566492f76b20b4efeef5502305b5a790442548c35a7512a614423813c658 +size 10682 diff --git a/std_results/out/isr/ep3_baseline3x.npz b/std_results/out/isr/ep3_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..fabc8052da6f13768f744f5e833433846ac68586 --- /dev/null +++ b/std_results/out/isr/ep3_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3909f1947b408adfff7305a7a2828a0b04edfa4162dda37f59501ed14785bdb3 +size 11202 diff --git a/std_results/out/isr/ep4.npz b/std_results/out/isr/ep4.npz new file mode 100644 index 0000000000000000000000000000000000000000..ba23ee3df1c61093d5a4f95359eee7795b1048a1 --- /dev/null +++ b/std_results/out/isr/ep4.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61a5a055feeb4581a59a0390122a2c7a8650eec39bafa783cd58cd63a5e98255 +size 11524 diff --git a/std_results/out/isr/ep40.npz b/std_results/out/isr/ep40.npz new file mode 100644 index 0000000000000000000000000000000000000000..dc2b6dd66065edef319b42e604ed9636c71932e7 --- /dev/null +++ b/std_results/out/isr/ep40.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e06a21872452387cd40248865b955026695953cdc8139303b1fd05f00f38581f +size 12164 diff --git a/std_results/out/isr/ep40_baseline3x.npz b/std_results/out/isr/ep40_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..564253024e4323a68703e3c991b9ef5d12e1d4d7 --- /dev/null +++ b/std_results/out/isr/ep40_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3023b3622bcf733e01b92320a047b5339f408987bdd931f92e96445c40da37d +size 11722 diff --git a/std_results/out/isr/ep41.npz b/std_results/out/isr/ep41.npz new file mode 100644 index 0000000000000000000000000000000000000000..bf8251479e75a3cfafdd913f18507a1836fc855b --- /dev/null +++ b/std_results/out/isr/ep41.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a3868cad3e340f441f728241578eb794ff640199aa6b0265b304d17593fb6d6 +size 13532 diff --git a/std_results/out/isr/ep41_baseline3x.npz b/std_results/out/isr/ep41_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..0b0afc6cf9a9ae83859d8e9d60c63950a5792ed2 --- /dev/null +++ b/std_results/out/isr/ep41_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba681c090e3fe526da386ae507180d8a82892bbade696b2609fa095130dd86fc +size 10994 diff --git a/std_results/out/isr/ep42.npz b/std_results/out/isr/ep42.npz new file mode 100644 index 0000000000000000000000000000000000000000..8304fb611fcc3899b6e388e4a546a4513a9905d5 --- /dev/null +++ b/std_results/out/isr/ep42.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ca5ac7ce322fb09fdfcee378556222711223d7ca5c6af8ff8b505294910e2c6 +size 12644 diff --git a/std_results/out/isr/ep42_baseline3x.npz b/std_results/out/isr/ep42_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..fe6f309d3d36f736f8daf5a414b7afd0f03bce65 --- /dev/null +++ b/std_results/out/isr/ep42_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28707b45409bd894bf7e33c1e12ef4512fc88577dabfbb87f772979b35de0a77 +size 10682 diff --git a/std_results/out/isr/ep43.npz b/std_results/out/isr/ep43.npz new file mode 100644 index 0000000000000000000000000000000000000000..40a426b7e73384dadde4e0c627457564e370384b --- /dev/null +++ b/std_results/out/isr/ep43.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f151b8f528e013e6b17705cbb40815933e00bfafe74e02b60e750583d5c0a135 +size 12484 diff --git a/std_results/out/isr/ep43_baseline3x.npz b/std_results/out/isr/ep43_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..1cce6c8a0f6733615afbd597b1771b022019bfdc --- /dev/null +++ b/std_results/out/isr/ep43_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3948006066f2201dc304659d5df2b56a000aa7934ee16f45a7a3fb9600dad00a +size 10474 diff --git a/std_results/out/isr/ep44.npz b/std_results/out/isr/ep44.npz new file mode 100644 index 0000000000000000000000000000000000000000..74228de394302aa4e46a96f6f372484a3ac3f5b8 --- /dev/null +++ b/std_results/out/isr/ep44.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0caf67b152394c077c0d1d06f63ef6e756894620217370614f9505f56f74d791 +size 11636 diff --git a/std_results/out/isr/ep44_baseline3x.npz b/std_results/out/isr/ep44_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..dc4a4ba35d7b6583b77b0171b55252ff129c0709 --- /dev/null +++ b/std_results/out/isr/ep44_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fe7588c27a1dbd7f81178eec851fdbdf601a122d077da925d30fb3967c4487f +size 10370 diff --git a/std_results/out/isr/ep45.npz b/std_results/out/isr/ep45.npz new file mode 100644 index 0000000000000000000000000000000000000000..1156cddd1ddc08430fcf88edd0a0fc8127c47e38 --- /dev/null +++ b/std_results/out/isr/ep45.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:419228ce83b1d588e0eab910bb7d55c95ef3e6df747901326c6f528fda918344 +size 12620 diff --git a/std_results/out/isr/ep45_baseline3x.npz b/std_results/out/isr/ep45_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..a6766505c5c9f410b59ca8334ce9aa9d6de2104c --- /dev/null +++ b/std_results/out/isr/ep45_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0600a65024f3301c0c7bfd5c21db308f743fbac1faeb328e6cf4f68c471a194b +size 10578 diff --git a/std_results/out/isr/ep46.npz b/std_results/out/isr/ep46.npz new file mode 100644 index 0000000000000000000000000000000000000000..bebb7edc0914ca2ab66e4cd9419680913ada353d --- /dev/null +++ b/std_results/out/isr/ep46.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45df406b3d522d110d082edd1ff76be68d2314a48118edd068409871ac9392c2 +size 11452 diff --git a/std_results/out/isr/ep46_baseline3x.npz b/std_results/out/isr/ep46_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..74c73f34a4c3b5a4d7aae2f6aa6469f91e2350e2 --- /dev/null +++ b/std_results/out/isr/ep46_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f933b0b32d1955a312e366b527bbc7a9116fa5f630489653aea2b14114bbb73e +size 10266 diff --git a/std_results/out/isr/ep47.npz b/std_results/out/isr/ep47.npz new file mode 100644 index 0000000000000000000000000000000000000000..61c5c7df3e1c9c1e86faec2490bb57941940ebe8 --- /dev/null +++ b/std_results/out/isr/ep47.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9df957bbdc6fb2c5b1f114d56501c29a1903dc1ea581be8eab38c6bd61609e6b +size 11556 diff --git a/std_results/out/isr/ep47_baseline3x.npz b/std_results/out/isr/ep47_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..ff2e386f8d6e16bfa78c3d8a980f839a1afff9ed --- /dev/null +++ b/std_results/out/isr/ep47_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c4546592a0650037923b54ea179bfa19c1a3d912f8e3ed57ee350f87583784b3 +size 10162 diff --git a/std_results/out/isr/ep48.npz b/std_results/out/isr/ep48.npz new file mode 100644 index 0000000000000000000000000000000000000000..652142d53330c1491a7b60e40049106059436f7f --- /dev/null +++ b/std_results/out/isr/ep48.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58c305b0f93a22e836de751fd47d9bda86c93e20218e524a51791741dc2f15dc +size 12004 diff --git a/std_results/out/isr/ep48_baseline3x.npz b/std_results/out/isr/ep48_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..e1a9bd80b4440d3e8d28ec62bffa4bf5313e4300 --- /dev/null +++ b/std_results/out/isr/ep48_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d0a965983199ea7f5634faf86f8ee089a99f6c183fbe8f6a304613f6219b96b +size 9330 diff --git a/std_results/out/isr/ep49.npz b/std_results/out/isr/ep49.npz new file mode 100644 index 0000000000000000000000000000000000000000..f1184d80f6983420c4f4f69efa24b8ddc313fa0c --- /dev/null +++ b/std_results/out/isr/ep49.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9682dd256271c91fcc2392313c28fbe028882e4831526486b68aad6b4c540c5d +size 12956 diff --git a/std_results/out/isr/ep49_baseline3x.npz b/std_results/out/isr/ep49_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..d717c87cecb8007c83f4f1795fe3784d3b57a787 --- /dev/null +++ b/std_results/out/isr/ep49_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:073010e44a0b0843c2522e99ff7c38423f73e28bb9445c0407a7b359060efc02 +size 9642 diff --git a/std_results/out/isr/ep4_baseline3x.npz b/std_results/out/isr/ep4_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..1573008a44236e67d86094e21114a55de91576aa --- /dev/null +++ b/std_results/out/isr/ep4_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5156a8da5530af43793c415857403bacc0c9cad1ad5ddbe8e27a328543010190 +size 11202 diff --git a/std_results/out/isr/ep5.npz b/std_results/out/isr/ep5.npz new file mode 100644 index 0000000000000000000000000000000000000000..67e4c490742887ab98fa1b6435407306fe92d77f --- /dev/null +++ b/std_results/out/isr/ep5.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e1b2004ef847cdfaa4752cc805054004cbf2254efc12f2de740b33c9cba4584 +size 11540 diff --git a/std_results/out/isr/ep50.npz b/std_results/out/isr/ep50.npz new file mode 100644 index 0000000000000000000000000000000000000000..7078410d1c725981ae65868d01b48011db430b8a --- /dev/null +++ b/std_results/out/isr/ep50.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d236e4829119e5f3a57b46e25705bee0b4a5242c44e4d1532c1a890e718ad453 +size 12908 diff --git a/std_results/out/isr/ep50_baseline3x.npz b/std_results/out/isr/ep50_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..ddd26362da70480ede4bc9c97123861a9e31456e --- /dev/null +++ b/std_results/out/isr/ep50_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b90e85f5848aad956bd9ebad07238edd388c9ffe8f73bf6a5fc444ce0532b30c +size 13282 diff --git a/std_results/out/isr/ep51.npz b/std_results/out/isr/ep51.npz new file mode 100644 index 0000000000000000000000000000000000000000..92e5c2d11d747fe23b7073352c16353f16bdf73a --- /dev/null +++ b/std_results/out/isr/ep51.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c5718d49148a1707fb0de9ad32be37a24ccc8f412bcfab719fbdf2679823180 +size 13892 diff --git a/std_results/out/isr/ep51_baseline3x.npz b/std_results/out/isr/ep51_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..f74e5ca8eeef4ce52a6ff4dedb28e442a9174bff --- /dev/null +++ b/std_results/out/isr/ep51_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13b7f3bf055702c61ea5fd92109ed311e3fdb71028fb8e65d95bc3b4094b8d78 +size 11202 diff --git a/std_results/out/isr/ep52.npz b/std_results/out/isr/ep52.npz new file mode 100644 index 0000000000000000000000000000000000000000..22ec7b087fa0972c8227680f2d72d26793a24cfd --- /dev/null +++ b/std_results/out/isr/ep52.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54ab949ee5ac78c2ee6bdf9cb3a8ff0d8bbf75c3b20cfbbf7030ad9c5bd72149 +size 14764 diff --git a/std_results/out/isr/ep52_baseline3x.npz b/std_results/out/isr/ep52_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..410cf7a7644fd652b0e1781a3cc13c5cbcc1e460 --- /dev/null +++ b/std_results/out/isr/ep52_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:776f2be533eab546ffcf6257b95ae78be360e9d0d100a37b4a43c4bddea5431f +size 11514 diff --git a/std_results/out/isr/ep53.npz b/std_results/out/isr/ep53.npz new file mode 100644 index 0000000000000000000000000000000000000000..638650ea9fd15ca5862cdcfef0c786557326ecd1 --- /dev/null +++ b/std_results/out/isr/ep53.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:227252bdae1d33b4e0677f27def889806aadecc079237a38ce9fcddef91b66a1 +size 12988 diff --git a/std_results/out/isr/ep53_baseline3x.npz b/std_results/out/isr/ep53_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..3dc7bb4f478cbaa7460f850eaa2fb68267b9e134 --- /dev/null +++ b/std_results/out/isr/ep53_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d69721dfa49c8711d79793655b6d1bfbc859cddd17548fb3d802641bafeba3ef +size 10994 diff --git a/std_results/out/isr/ep54.npz b/std_results/out/isr/ep54.npz new file mode 100644 index 0000000000000000000000000000000000000000..feae89de28adca64681a1a27e56d43a7d3bdd832 --- /dev/null +++ b/std_results/out/isr/ep54.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4e15b5533f85a8b2f4163d06818a8fb523fdc022692c25ae26a99bc7c0d187b +size 12596 diff --git a/std_results/out/isr/ep54_baseline3x.npz b/std_results/out/isr/ep54_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..1c0b1d9d9a3317121e870f3c95bd84efbf5153dc --- /dev/null +++ b/std_results/out/isr/ep54_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:478d133045d2fcfdd5af73aeb485f49efa37743d73a492545d69cf4d25a316a4 +size 10786 diff --git a/std_results/out/isr/ep55.npz b/std_results/out/isr/ep55.npz new file mode 100644 index 0000000000000000000000000000000000000000..c37c680e52c4921b611da947168b5d66fe9aa4d2 --- /dev/null +++ b/std_results/out/isr/ep55.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5008464ea4fdcb39ab84686f81b9980aff7cb73b7c69d57047028b487bc5c43d +size 12092 diff --git a/std_results/out/isr/ep55_baseline3x.npz b/std_results/out/isr/ep55_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..db18a18b86d059fdbe67de1bf2c8a5148b8f52b5 --- /dev/null +++ b/std_results/out/isr/ep55_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06e45c054325b4521188ef578f888ff6dacb69e6beedc66832573e416e35105e +size 11306 diff --git a/std_results/out/isr/ep56.npz b/std_results/out/isr/ep56.npz new file mode 100644 index 0000000000000000000000000000000000000000..db2f29d5cfef8808b9b72acbfae401f10c87733c --- /dev/null +++ b/std_results/out/isr/ep56.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d25134e9e3e575d70cdae0a245b577900d2c4da947d84230f93bdc717161e79 +size 13020 diff --git a/std_results/out/isr/ep56_baseline3x.npz b/std_results/out/isr/ep56_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..1b44c152e3701bea45ab19192a22c77cf1ba6eef --- /dev/null +++ b/std_results/out/isr/ep56_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee689cb29babc567fcab1ded044081e49c88768d9530ee072ce1b452b3b3506e +size 11098 diff --git a/std_results/out/isr/ep57.npz b/std_results/out/isr/ep57.npz new file mode 100644 index 0000000000000000000000000000000000000000..7f6d552d673975e755e588859d648acb3920c615 --- /dev/null +++ b/std_results/out/isr/ep57.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb5281b209643ad8393a3bca88ba21bd2b199f0b21f3d5531916fbe0a6e83bf4 +size 13964 diff --git a/std_results/out/isr/ep57_baseline3x.npz b/std_results/out/isr/ep57_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..b0b38fe61ffabc0df3ef7999c4804ab66ccacf1d --- /dev/null +++ b/std_results/out/isr/ep57_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c0e2620d0f8d7e72a72be693d8b4b8d3e3ed6f1de613d1e4aec7d473f1e02f7 +size 12658 diff --git a/std_results/out/isr/ep58.npz b/std_results/out/isr/ep58.npz new file mode 100644 index 0000000000000000000000000000000000000000..3184adc7b07e1c347125afbe393273e68806ac8e --- /dev/null +++ b/std_results/out/isr/ep58.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb47eba6c1914ba28f363ae9e97d7a54b2996c19385e2912765f6befb053c948 +size 12956 diff --git a/std_results/out/isr/ep58_baseline3x.npz b/std_results/out/isr/ep58_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..237b9d213674b24b74baede2959bb0981395e552 --- /dev/null +++ b/std_results/out/isr/ep58_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:439e189ca939905a97e88a80ef3750a4099045da5752372569706b2a2479cbbf +size 10578 diff --git a/std_results/out/isr/ep59.npz b/std_results/out/isr/ep59.npz new file mode 100644 index 0000000000000000000000000000000000000000..a92d21fad878d029f1a9d8b5c0e3d4bdf017b77a --- /dev/null +++ b/std_results/out/isr/ep59.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0233a1f5ee2cd38c7ccfbd5f60905a44d492f6756b6cf1625dbc992c1035132a +size 12588 diff --git a/std_results/out/isr/ep59_baseline3x.npz b/std_results/out/isr/ep59_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..c334441a8051f8645c25e9f9ca5533be141cb525 --- /dev/null +++ b/std_results/out/isr/ep59_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:668f4c9baf96e48a557803a7802786baeb5e14e9066ff30d903d8a3604cd5511 +size 11098 diff --git a/std_results/out/isr/ep5_baseline3x.npz b/std_results/out/isr/ep5_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..70766a32e4bcbbe92db1732b8d0d94f015fc5e94 --- /dev/null +++ b/std_results/out/isr/ep5_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39c4c876b38256a68399a5e29a6268852ff84645c98ef583f04ac7da171e8b73 +size 12762 diff --git a/std_results/out/isr/ep6.npz b/std_results/out/isr/ep6.npz new file mode 100644 index 0000000000000000000000000000000000000000..5bc6311cf65c8eb744541f9c9ea9b79e48039075 --- /dev/null +++ b/std_results/out/isr/ep6.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b5424385693d631d00e3f4c399147b53a953f37954218b2dc8eb935f0eccaf9 +size 12276 diff --git a/std_results/out/isr/ep60.npz b/std_results/out/isr/ep60.npz new file mode 100644 index 0000000000000000000000000000000000000000..06bb12fa146ba498892f9c19d3a029236fe493ba --- /dev/null +++ b/std_results/out/isr/ep60.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77a08829603a6b20261ef130ea0e08ef74728101f7bfdacf1deb09b0afbfee33 +size 12684 diff --git a/std_results/out/isr/ep60_baseline3x.npz b/std_results/out/isr/ep60_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..61aba09fa16f17736efa11a799d864475f585685 --- /dev/null +++ b/std_results/out/isr/ep60_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67103941104efcc6950636c0adf43cd0bc137ba6d84cfbdf918ec90d2efee530 +size 11618 diff --git a/std_results/out/isr/ep61.npz b/std_results/out/isr/ep61.npz new file mode 100644 index 0000000000000000000000000000000000000000..bbaf883189c797463a9df53e0a8de31f5094cc5c --- /dev/null +++ b/std_results/out/isr/ep61.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab23341daa94a1110ab95fa7620d4474f62d67a9ba772682ec1030d614d12fda +size 12132 diff --git a/std_results/out/isr/ep61_baseline3x.npz b/std_results/out/isr/ep61_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..68f2ba20cb8d7548212e0d51490d7d03ab40e0ca --- /dev/null +++ b/std_results/out/isr/ep61_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6f91d7d6d9313da5afb3e709f2228b22171e02e814fef17ce9c318f26c6de28 +size 10682 diff --git a/std_results/out/isr/ep62.npz b/std_results/out/isr/ep62.npz new file mode 100644 index 0000000000000000000000000000000000000000..9c7134e2d147f2c4d6d7480e9f4181098d216e37 --- /dev/null +++ b/std_results/out/isr/ep62.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0d1c204053c884d16b31005f3f34735a3ddf4d7045fd758431d0cd038809b10 +size 13444 diff --git a/std_results/out/isr/ep62_baseline3x.npz b/std_results/out/isr/ep62_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..7792a9ad5fbed9e975d3c844d15c650584ed1a07 --- /dev/null +++ b/std_results/out/isr/ep62_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e46ef0b815df86c6412d974020982729aefd11d943ae06c494508c0a4d385f1 +size 10682 diff --git a/std_results/out/isr/ep63.npz b/std_results/out/isr/ep63.npz new file mode 100644 index 0000000000000000000000000000000000000000..a28ee03d4c6916694b388bf2137ad3137f32c568 --- /dev/null +++ b/std_results/out/isr/ep63.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6693ae3ea7647856e9f7c1b69ddf12ee5ea737bc5cb9ad2121eeb5582c5f93f8 +size 14796 diff --git a/std_results/out/isr/ep63_baseline3x.npz b/std_results/out/isr/ep63_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..fe7f6221cd15bf54fe74fb0bb0f14e7ed512ffab --- /dev/null +++ b/std_results/out/isr/ep63_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2332fcab3628d3429b1944317242a02f1be143f391721b50cc71919fe945fd21 +size 10786 diff --git a/std_results/out/isr/ep64.npz b/std_results/out/isr/ep64.npz new file mode 100644 index 0000000000000000000000000000000000000000..4fb19a1a26b1963fb16f532a968611d88fc86c0c --- /dev/null +++ b/std_results/out/isr/ep64.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f87c804212776f7b7787e582a5c22f87bb5d015f3c8a2f87c0b36d3efc21ed21 +size 13940 diff --git a/std_results/out/isr/ep64_baseline3x.npz b/std_results/out/isr/ep64_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..ea3c2748eb1fd17469d2ce1f3b9459b1ca49f67b --- /dev/null +++ b/std_results/out/isr/ep64_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0210f696e9cf7dcb113f1641ddbe24ad96dc88135ebede5e9d595b02933d1160 +size 11722 diff --git a/std_results/out/isr/ep65.npz b/std_results/out/isr/ep65.npz new file mode 100644 index 0000000000000000000000000000000000000000..c9013a567c48d5d46fe236be8b2da3af09c2a703 --- /dev/null +++ b/std_results/out/isr/ep65.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0eefeb30090bcd8569b185ddc7fd94802d26dac35772cc5aa2db42894dc5ab5b +size 14244 diff --git a/std_results/out/isr/ep65_baseline3x.npz b/std_results/out/isr/ep65_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..4701113a16ced7bfa9ff3d5d433012f106ce757c --- /dev/null +++ b/std_results/out/isr/ep65_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9da177b207b806afeffd476404320ee50fdfb183fa3c0672b974d35e0828b7b8 +size 11826 diff --git a/std_results/out/isr/ep66.npz b/std_results/out/isr/ep66.npz new file mode 100644 index 0000000000000000000000000000000000000000..4885908342cd0710b61a978f2f2370a71fc495a9 --- /dev/null +++ b/std_results/out/isr/ep66.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae90513fcbf90417b826edb00d9c32febf2c7a2774acc6b5f759a76bb8db0dac +size 12796 diff --git a/std_results/out/isr/ep66_baseline3x.npz b/std_results/out/isr/ep66_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..e0d1c35db7d6d56cf726d18fd10e1ea3b42cd327 --- /dev/null +++ b/std_results/out/isr/ep66_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a82dbaedb7ab314eec9d1a7868d59b7438465f67e9142e2d8a1604292e7f4d2c +size 11202 diff --git a/std_results/out/isr/ep67.npz b/std_results/out/isr/ep67.npz new file mode 100644 index 0000000000000000000000000000000000000000..65705e3f202804af5fb2e8a02defdf0a2aa46a12 --- /dev/null +++ b/std_results/out/isr/ep67.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6138399143121f73274e108652b00d36f135a5be094005ac421a2b22c9d1dee6 +size 15140 diff --git a/std_results/out/isr/ep67_baseline3x.npz b/std_results/out/isr/ep67_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..0acb894bc900bb98d709c1cf94a883b8e7d8a255 --- /dev/null +++ b/std_results/out/isr/ep67_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f652cdbbf9f03f9752ff80e0bee8a6e8390a6b8fdc27177b5f7e97ef0905625 +size 10994 diff --git a/std_results/out/isr/ep68.npz b/std_results/out/isr/ep68.npz new file mode 100644 index 0000000000000000000000000000000000000000..127282547b95cfd81fe0e045b4710a2b8b32f324 --- /dev/null +++ b/std_results/out/isr/ep68.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62249b84af640d3aa5f517951e6fda36142f51a126ecfc92a797fc672b82619e +size 12708 diff --git a/std_results/out/isr/ep68_baseline3x.npz b/std_results/out/isr/ep68_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..cc5e40f90333204936d6e5d9aa1d4e0aa0798535 --- /dev/null +++ b/std_results/out/isr/ep68_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f91c0a0a7eeb8b465dc0a4723cafc04bdba4e83f5e4a74b3768ac124f5bf4f94 +size 10994 diff --git a/std_results/out/isr/ep69.npz b/std_results/out/isr/ep69.npz new file mode 100644 index 0000000000000000000000000000000000000000..1ed1c67eda21ddb700acede2d25d4de5e6864eb3 --- /dev/null +++ b/std_results/out/isr/ep69.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:300b1f6c2f0b3a5e3222f82f15b2e5c951aafe8e009bc7ee8c7dd091123c9d09 +size 13420 diff --git a/std_results/out/isr/ep69_baseline3x.npz b/std_results/out/isr/ep69_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..14b19bb64d3da1ae865a8b3782a067afcd3a3634 --- /dev/null +++ b/std_results/out/isr/ep69_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ae6a8774dd78c77e3a6baa368f007203c025894d4dc4c7b2dc65de5be433172 +size 9954 diff --git a/std_results/out/isr/ep6_baseline3x.npz b/std_results/out/isr/ep6_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..9034a0875ea8957f0e4307bf131791703b56e7a3 --- /dev/null +++ b/std_results/out/isr/ep6_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38bb7f99362b25f960715114f0c7d0c3b08648060a7ee7d25f90c00aa96c85e9 +size 9954 diff --git a/std_results/out/isr/ep7.npz b/std_results/out/isr/ep7.npz new file mode 100644 index 0000000000000000000000000000000000000000..8443dcf82a4782853825b6c9e23ac9aefaa09388 --- /dev/null +++ b/std_results/out/isr/ep7.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c6104e5053d76f3e48b6ddfaaa9c4365911822e5540c87b241bbda8c88981f6 +size 11676 diff --git a/std_results/out/isr/ep70.npz b/std_results/out/isr/ep70.npz new file mode 100644 index 0000000000000000000000000000000000000000..dc659b32abe547bee9b701b8b8f73688bb492c18 --- /dev/null +++ b/std_results/out/isr/ep70.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f755681b5915f9fce803479ba26b1a957d948324575ae9a56fad6f7d0a3e8c45 +size 11980 diff --git a/std_results/out/isr/ep70_baseline3x.npz b/std_results/out/isr/ep70_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..b54c6d83f51a7073678b17cabedc647c4d4b6a42 --- /dev/null +++ b/std_results/out/isr/ep70_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fde2bf6affb7ceb5f39e43e785ca05d42d6ee27fbf7aa547491dd168509ba4cd +size 10994 diff --git a/std_results/out/isr/ep71.npz b/std_results/out/isr/ep71.npz new file mode 100644 index 0000000000000000000000000000000000000000..a59b2d52e990b07e01f40b4ffbd1109a2014b282 --- /dev/null +++ b/std_results/out/isr/ep71.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:195ae1aa0faa679c8e3b293aee2819b08a9e119b248e64d3d1d8f3f8d99fe634 +size 12252 diff --git a/std_results/out/isr/ep71_baseline3x.npz b/std_results/out/isr/ep71_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..1a34772e46dc062dd17b37c41645d9ca9d1cce47 --- /dev/null +++ b/std_results/out/isr/ep71_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0945bdc347714bac917f757bc2a5e43f0b6bc4d5de260294cf8b19a0bd35e191 +size 12450 diff --git a/std_results/out/isr/ep72.npz b/std_results/out/isr/ep72.npz new file mode 100644 index 0000000000000000000000000000000000000000..400c6ee4daf699754b46fb68e695c2210ae8c020 --- /dev/null +++ b/std_results/out/isr/ep72.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c5c115b814602a35da8d4f74ec19f66e2175669cdedfc243a71dbacf8f2e1f8 +size 11972 diff --git a/std_results/out/isr/ep72_baseline3x.npz b/std_results/out/isr/ep72_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..854a27b5d91b008fd5c5a50836583d0c733eb84f --- /dev/null +++ b/std_results/out/isr/ep72_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40340cd42eac4d390e901049c837d7cdf4bad42e85376e3dc676c74eeabc6e0f +size 12866 diff --git a/std_results/out/isr/ep73.npz b/std_results/out/isr/ep73.npz new file mode 100644 index 0000000000000000000000000000000000000000..f506fb75fa6f26619bbff3042435ac760ae8ac36 --- /dev/null +++ b/std_results/out/isr/ep73.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80793dd2aaa340967d24b2269d221577705ab4e63e428c72f4d51711fedb072d +size 12196 diff --git a/std_results/out/isr/ep73_baseline3x.npz b/std_results/out/isr/ep73_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..1c040481979e8b0dd66522e495c2ec0dc43ffdbb --- /dev/null +++ b/std_results/out/isr/ep73_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5d6c7f3763490cb95d626ec08af0a08eebf5b65f9b8d6f17dabd86790b1843e +size 13074 diff --git a/std_results/out/isr/ep74.npz b/std_results/out/isr/ep74.npz new file mode 100644 index 0000000000000000000000000000000000000000..e1c4c3693c590e5143cc29599886dab09ebc9d5b --- /dev/null +++ b/std_results/out/isr/ep74.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df2e1b4ec7e63423789d586e6688afc9cf612cd658e3f3eb55e47ffc02268697 +size 11860 diff --git a/std_results/out/isr/ep74_baseline3x.npz b/std_results/out/isr/ep74_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..c69e78074312faba741787ece5dc7eb71235c809 --- /dev/null +++ b/std_results/out/isr/ep74_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39ee5b09ab687f1be840d65f474519a142c5cd39c15931e6dc5a24aebce136b9 +size 13698 diff --git a/std_results/out/isr/ep75.npz b/std_results/out/isr/ep75.npz new file mode 100644 index 0000000000000000000000000000000000000000..5fb996a902d19693903dd9b66301cf62f75a6c20 --- /dev/null +++ b/std_results/out/isr/ep75.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eeebd2abaa7fe54bcb091fda6b9c6fa3edeb1efbcd44da62e9d7c3fbb1903a4 +size 13748 diff --git a/std_results/out/isr/ep75_baseline3x.npz b/std_results/out/isr/ep75_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..109d0fce6ed9b6a3cc1c1b2a00058eaee1a9f32b --- /dev/null +++ b/std_results/out/isr/ep75_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d695cd1a1b933eca20631c09117a8827bf74e919adc4a47cfcee6d70979eb807 +size 12450 diff --git a/std_results/out/isr/ep76.npz b/std_results/out/isr/ep76.npz new file mode 100644 index 0000000000000000000000000000000000000000..89d0cf2886e7b15208465bdc4c7720504a3cd4b4 --- /dev/null +++ b/std_results/out/isr/ep76.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78d456e2fa19ff0e2ab6fdfcb63e1179eee5f4e32000e117c5ce6e9e6ea1bbf3 +size 13804 diff --git a/std_results/out/isr/ep76_baseline3x.npz b/std_results/out/isr/ep76_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..594e0a883b1de9e70eae625e9cc346f70530244d --- /dev/null +++ b/std_results/out/isr/ep76_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:048bb8f3e30a2a32850c67888670d754b636e0263126e061531485260e6c4395 +size 12450 diff --git a/std_results/out/isr/ep77.npz b/std_results/out/isr/ep77.npz new file mode 100644 index 0000000000000000000000000000000000000000..7d492bdfadb69832d8e9b16e373f4f5d5bbbe185 --- /dev/null +++ b/std_results/out/isr/ep77.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10ee709e995815eacf207a59952568b216b3fdf0e31f0618a8cddbe3f289bfdf +size 12196 diff --git a/std_results/out/isr/ep77_baseline3x.npz b/std_results/out/isr/ep77_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..de86be645cbf68df014b0872e168868816018607 --- /dev/null +++ b/std_results/out/isr/ep77_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a461ecd7a2bc7924eedb4db9fe19c58a1fc627d0ace4f34bc7adfc6fddeaad33 +size 12138 diff --git a/std_results/out/isr/ep78.npz b/std_results/out/isr/ep78.npz new file mode 100644 index 0000000000000000000000000000000000000000..37e8a57ffb88502ec0455324676fce958192ed15 --- /dev/null +++ b/std_results/out/isr/ep78.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca4cc3dd400be335d304afd1ae6fd235debe243c30ef9dfb7a33015594d9981b +size 12196 diff --git a/std_results/out/isr/ep78_baseline3x.npz b/std_results/out/isr/ep78_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..cc82fdee655784f8ba31973da59b8d296fe8e95c --- /dev/null +++ b/std_results/out/isr/ep78_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a16d51ec2333948f7877b610b05ede25420b416042fc7664720c6dac5db95632 +size 13178 diff --git a/std_results/out/isr/ep79.npz b/std_results/out/isr/ep79.npz new file mode 100644 index 0000000000000000000000000000000000000000..611d8762f473a8aa5925070c56d1b1e3f1e7ebf4 --- /dev/null +++ b/std_results/out/isr/ep79.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d381adec094d53550334ad543fb3431851dc10b157905b563cdb035ae985aecb +size 12492 diff --git a/std_results/out/isr/ep79_baseline3x.npz b/std_results/out/isr/ep79_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..08c17e390282d94753d308c1c0d87b0fde7af826 --- /dev/null +++ b/std_results/out/isr/ep79_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa28a250109afc3a68d02d91da0d7090ebb7f75a729ad4723e4297e02f4cf801 +size 12554 diff --git a/std_results/out/isr/ep7_baseline3x.npz b/std_results/out/isr/ep7_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..cb1b98eeb9b05f417cd74b547f5befb2e0cb39c5 --- /dev/null +++ b/std_results/out/isr/ep7_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1a91bd1d81be288e83286bdb75f3264aa5e95161fb05f242ca7db71ae13b8c5 +size 10994 diff --git a/std_results/out/isr/ep8.npz b/std_results/out/isr/ep8.npz new file mode 100644 index 0000000000000000000000000000000000000000..691909ca7da1ba0137ce9eb91bfce154e3d201b4 --- /dev/null +++ b/std_results/out/isr/ep8.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:636de1d02c66f4fde4bd8ce6477ae2029cc4f76ed8e0fae4c285f45ddfec6ef8 +size 11756 diff --git a/std_results/out/isr/ep80.npz b/std_results/out/isr/ep80.npz new file mode 100644 index 0000000000000000000000000000000000000000..a5dc8a33bd1569f5d041532f5a9e0fb30bc97385 --- /dev/null +++ b/std_results/out/isr/ep80.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c9195d0a04297d6e4c07786326483663d18272daa7f843a941fed4374ed935a +size 12636 diff --git a/std_results/out/isr/ep80_baseline3x.npz b/std_results/out/isr/ep80_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..81c2a691f15ffae4414fe9556f263e58c0bf76d0 --- /dev/null +++ b/std_results/out/isr/ep80_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8469ae66e0c5848a5f7bbc452c18bd7fda07d6429a3de2e4b8427d7db2f1a9c +size 12138 diff --git a/std_results/out/isr/ep81.npz b/std_results/out/isr/ep81.npz new file mode 100644 index 0000000000000000000000000000000000000000..8d0214c43214cbaa7301ffff36a289708c7ff414 --- /dev/null +++ b/std_results/out/isr/ep81.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b00bcf77b3cafc8bf00ea8d38f9f4d0148d0eec829cf5b2c8c1141c92533dd03 +size 13116 diff --git a/std_results/out/isr/ep81_baseline3x.npz b/std_results/out/isr/ep81_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..d32ae5047e433418142a9cbac74018add50c09d1 --- /dev/null +++ b/std_results/out/isr/ep81_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50cfa752df687497493ab5d0b514d616a431a13f30bf75282ac322b528e62050 +size 11722 diff --git a/std_results/out/isr/ep82.npz b/std_results/out/isr/ep82.npz new file mode 100644 index 0000000000000000000000000000000000000000..875f5468f68d12e94dc75d03c8231becacb35de7 --- /dev/null +++ b/std_results/out/isr/ep82.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:753d01414c6cb85c4a631f82f5169eaf5bc9d4bc2b019df276efb903ebd8771a +size 11636 diff --git a/std_results/out/isr/ep82_baseline3x.npz b/std_results/out/isr/ep82_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..f8a264812521fb452654a846f037949d14205256 --- /dev/null +++ b/std_results/out/isr/ep82_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bfd7c3057342db4ca314f5fe0782429f609d3cb8d78f9b4ab02d49a9896a617 +size 11618 diff --git a/std_results/out/isr/ep83.npz b/std_results/out/isr/ep83.npz new file mode 100644 index 0000000000000000000000000000000000000000..e4cb27038e751808f5b2f5fc57f679628c1052f9 --- /dev/null +++ b/std_results/out/isr/ep83.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:936566d785f37e713968f23942112edec8e1e7ae9cf56c1e8c075d847047d24e +size 11252 diff --git a/std_results/out/isr/ep83_baseline3x.npz b/std_results/out/isr/ep83_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..c1ff42e3df24776bc58997b2fd6a2786fb83611c --- /dev/null +++ b/std_results/out/isr/ep83_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:023efc0c2dfab2b0e50f73817160767323d8b903c78e268a02b8d6edebb71cf2 +size 12450 diff --git a/std_results/out/isr/ep84.npz b/std_results/out/isr/ep84.npz new file mode 100644 index 0000000000000000000000000000000000000000..c167b23fffae734242e21d5b19eacf02c097d931 --- /dev/null +++ b/std_results/out/isr/ep84.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3323b6ba700eb9a4869f242037d515b04e0b4e1afeec75ce5be694c0ebc3f99 +size 11188 diff --git a/std_results/out/isr/ep84_baseline3x.npz b/std_results/out/isr/ep84_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..4a5ca129fed1ded64581a5a744f1ff0a1618647e --- /dev/null +++ b/std_results/out/isr/ep84_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c90145bfc4b356ba4437e4ad20543ffe1435f1fec8eaf51e58258b0af5d8ed1 +size 11618 diff --git a/std_results/out/isr/ep85.npz b/std_results/out/isr/ep85.npz new file mode 100644 index 0000000000000000000000000000000000000000..013e37f4df2a48df8c8044f3f7158966a58a80a5 --- /dev/null +++ b/std_results/out/isr/ep85.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a8a4362b032368442fee686a94d2e20f6c9a6bf89cad8b83cae0ce1d455b9ae +size 13396 diff --git a/std_results/out/isr/ep85_baseline3x.npz b/std_results/out/isr/ep85_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..2a13573ad6e461f34a4116d528949eab4269bad6 --- /dev/null +++ b/std_results/out/isr/ep85_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:279e5315a6f37d4950a34c9d722315d90b120e4589a96ad982e1e44ea17c543b +size 11514 diff --git a/std_results/out/isr/ep86.npz b/std_results/out/isr/ep86.npz new file mode 100644 index 0000000000000000000000000000000000000000..280363be7445f3fb5ccac8fdc358705ce81fa7b9 --- /dev/null +++ b/std_results/out/isr/ep86.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9ae717dc96ca6cd93f2f5f8c2a9ff9da008818b86a83870970b62a49cdc4baa +size 13524 diff --git a/std_results/out/isr/ep86_baseline3x.npz b/std_results/out/isr/ep86_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..7bee775a7f8452bed01bfb764de4047f26d6495a --- /dev/null +++ b/std_results/out/isr/ep86_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb3d09839111d91c1e8582fc9b9750cc94fc3a3ccfbb4dc4e7c9d94a67da197b +size 10162 diff --git a/std_results/out/isr/ep87.npz b/std_results/out/isr/ep87.npz new file mode 100644 index 0000000000000000000000000000000000000000..35c4a7b9d3c333d42cd9343dba30e009591a802f --- /dev/null +++ b/std_results/out/isr/ep87.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6438e228082c17ce12e7b1797a192522cf82394728c609ddd192bd6b755bda74 +size 11908 diff --git a/std_results/out/isr/ep87_baseline3x.npz b/std_results/out/isr/ep87_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..7a32f9ba6b303c168fdfc15b123a7d03fecc93f4 --- /dev/null +++ b/std_results/out/isr/ep87_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b10e7b59c2eaf444f62124787c6a7df47f1ed4a54a3e4f0e6709bc0b2113630 +size 10058 diff --git a/std_results/out/isr/ep88.npz b/std_results/out/isr/ep88.npz new file mode 100644 index 0000000000000000000000000000000000000000..2e7199da58afd0afcfdb66ba2bfe414512eee30d --- /dev/null +++ b/std_results/out/isr/ep88.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d90ae7393f6fd38bb8d99c6ead73457662db52a24cb5a55378e06aefed2adde +size 10660 diff --git a/std_results/out/isr/ep88_baseline3x.npz b/std_results/out/isr/ep88_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..c3489aa5022f4f0c31463486c75b53d7473826f2 --- /dev/null +++ b/std_results/out/isr/ep88_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68b7f666a90bab2af821e99430ad0d0e9ac0292f9a28fd72968e909f30d8b60e +size 10890 diff --git a/std_results/out/isr/ep89.npz b/std_results/out/isr/ep89.npz new file mode 100644 index 0000000000000000000000000000000000000000..36d6acb02aefc9ce1613d3b74cf6a0a25c6628ae --- /dev/null +++ b/std_results/out/isr/ep89.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26aa413c230d6c321f001951f75577315f3d004e28cf13af86ec9ff25ab15e7a +size 11508 diff --git a/std_results/out/isr/ep89_baseline3x.npz b/std_results/out/isr/ep89_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..b7355fe1935cdef723bf2a696564c1af3cab43a2 --- /dev/null +++ b/std_results/out/isr/ep89_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8fd147ae2f60cb2be993764812c56328416f1a0e8656be1292e4628063ce16b +size 11722 diff --git a/std_results/out/isr/ep8_baseline3x.npz b/std_results/out/isr/ep8_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..5d6114ab15dcc26e80eba85cab3b0972529f1dfa --- /dev/null +++ b/std_results/out/isr/ep8_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a3b7ca44296c989d32636b470b4697bfbbe5a9756fb9b2e94ce7ab12f57c88a +size 12138 diff --git a/std_results/out/isr/ep9.npz b/std_results/out/isr/ep9.npz new file mode 100644 index 0000000000000000000000000000000000000000..536312c04b71273855da079b62f75f3031b4c5dc --- /dev/null +++ b/std_results/out/isr/ep9.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31ed84dd41a9f6ce43220188d840e7da895a70d054c769d154c4f3421b930674 +size 13076 diff --git a/std_results/out/isr/ep90.npz b/std_results/out/isr/ep90.npz new file mode 100644 index 0000000000000000000000000000000000000000..2ba743af3a234485cf99f7ec472e29add8b63662 --- /dev/null +++ b/std_results/out/isr/ep90.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee19b196a5a6c9fc81f1fc687d822ee3f1a6204ba065aeb4b5d481c6b307a293 +size 12780 diff --git a/std_results/out/isr/ep90_baseline3x.npz b/std_results/out/isr/ep90_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..4f0278b03700ee6cbd1bbcbd3c91e05ebfdff9a3 --- /dev/null +++ b/std_results/out/isr/ep90_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b0234e6445fe324e47aa73d6095bc4d48c15525fbc905801a3189b136622131 +size 12450 diff --git a/std_results/out/isr/ep91.npz b/std_results/out/isr/ep91.npz new file mode 100644 index 0000000000000000000000000000000000000000..acbdbd872b9bcf7efb4002bdd1538b2f771fb96a --- /dev/null +++ b/std_results/out/isr/ep91.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:914347cd74751e6d67ef3f60a5ba44dad13ad6a25bd984ef14e2286522d7fc60 +size 12420 diff --git a/std_results/out/isr/ep91_baseline3x.npz b/std_results/out/isr/ep91_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..1c36e4b9565622d47c2ff2e44fffa9c35e63f45d --- /dev/null +++ b/std_results/out/isr/ep91_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52cf13f20f27ae583220702673d3f68d86b7c96964e4ead65804fe0570efb0ba +size 11618 diff --git a/std_results/out/isr/ep92.npz b/std_results/out/isr/ep92.npz new file mode 100644 index 0000000000000000000000000000000000000000..2c530131389706e951bc9a4f177f3978d52f054e --- /dev/null +++ b/std_results/out/isr/ep92.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74f1ea817eedcee819fc1c1e7d209aea58f624bf254a98745e1660e0a5fb6ded +size 11780 diff --git a/std_results/out/isr/ep92_baseline3x.npz b/std_results/out/isr/ep92_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..0ec2ef38b6a204a482d21f213bf9e42fd8862681 --- /dev/null +++ b/std_results/out/isr/ep92_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfad5401b45ed7e47fda08c81bfbd019d1a127deedf0f7d90dfb181b5bee6ead +size 10786 diff --git a/std_results/out/isr/ep93.npz b/std_results/out/isr/ep93.npz new file mode 100644 index 0000000000000000000000000000000000000000..8f0360659c29bcd0a93efe6d07e81a0172cecb69 --- /dev/null +++ b/std_results/out/isr/ep93.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67dfd463cde4f1dbd8d05fecbfd6467f343f13bc29635c89d76306da5a41aac2 +size 11996 diff --git a/std_results/out/isr/ep93_baseline3x.npz b/std_results/out/isr/ep93_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..37a833dd012ed7f5a6af1835444e75d43e451bbd --- /dev/null +++ b/std_results/out/isr/ep93_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c2b9ff5c515a765aee7a2c9f7cd1a0963673fd137ee8be72639643b6942915a +size 10786 diff --git a/std_results/out/isr/ep94.npz b/std_results/out/isr/ep94.npz new file mode 100644 index 0000000000000000000000000000000000000000..521c4a21ec596a68d99a1844347f10406474afed --- /dev/null +++ b/std_results/out/isr/ep94.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57e0b372e1d8b742b5411180c714d9d9cb1b4817a4b41e34c7113ce3b1e6163b +size 11732 diff --git a/std_results/out/isr/ep94_baseline3x.npz b/std_results/out/isr/ep94_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..fce9da41594879cd02e5d34232d45cf05914607c --- /dev/null +++ b/std_results/out/isr/ep94_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfded877f4680980f54b6227df43547341a54c4582a477dd171402e1d7a07293 +size 11826 diff --git a/std_results/out/isr/ep95.npz b/std_results/out/isr/ep95.npz new file mode 100644 index 0000000000000000000000000000000000000000..c0f7626de2370c257503848dac7e70b977b5966b --- /dev/null +++ b/std_results/out/isr/ep95.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:003bb0ce562f0799e9589a77ba2c04fd40843d5a5dd511a325cacb4d31e5b9a1 +size 11764 diff --git a/std_results/out/isr/ep95_baseline3x.npz b/std_results/out/isr/ep95_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..cecdb7694810f877d7710c11283c64adeef2678a --- /dev/null +++ b/std_results/out/isr/ep95_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3218861dfe9fc4a1499d40fa265038f01b25fbf8765f47a9516df2136a29ec3a +size 11306 diff --git a/std_results/out/isr/ep96.npz b/std_results/out/isr/ep96.npz new file mode 100644 index 0000000000000000000000000000000000000000..0dbf2f0a0517ea7759948e4c3d0a48e0bdb5c797 --- /dev/null +++ b/std_results/out/isr/ep96.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb5c2ede86e3d12baacaa51d176d97ccdd1b31ad1095b9bec96e85023803965a +size 12196 diff --git a/std_results/out/isr/ep96_baseline3x.npz b/std_results/out/isr/ep96_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..8216c045c257ea5b2aa41951772f95a32ff7ed14 --- /dev/null +++ b/std_results/out/isr/ep96_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f54a4058c1db88a2567bc46d1d0db3a045e39bb2f041caab6c746002f1762cbd +size 12450 diff --git a/std_results/out/isr/ep97.npz b/std_results/out/isr/ep97.npz new file mode 100644 index 0000000000000000000000000000000000000000..1048905b4de7d49710095994f8d2a9f30d4c9f95 --- /dev/null +++ b/std_results/out/isr/ep97.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:620120ee9e2bc8f653f704aa9b86ea54079b650eaf296dd3e121a37693097227 +size 13020 diff --git a/std_results/out/isr/ep97_baseline3x.npz b/std_results/out/isr/ep97_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..174ad523d6dd41e9fef1c43676abb585558d4e0a --- /dev/null +++ b/std_results/out/isr/ep97_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a936cee10289afa88eea4b697051d6cb5402a69f1c8ae2a12313fdf89cc8436e +size 11306 diff --git a/std_results/out/isr/ep98.npz b/std_results/out/isr/ep98.npz new file mode 100644 index 0000000000000000000000000000000000000000..3abb913efce56ed0497d3a372194bb873313adfc --- /dev/null +++ b/std_results/out/isr/ep98.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8a1aef528911ef520da426dd1735e75f81a1a0946dc21f10ee5e95bfd468b46 +size 11516 diff --git a/std_results/out/isr/ep98_baseline3x.npz b/std_results/out/isr/ep98_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..4c1dc609382b8e6557bb0f4dcdd621b899bfacb6 --- /dev/null +++ b/std_results/out/isr/ep98_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f49bc02a90a1425cc48240f8aa34deef8e363c976d821a41eafd9e9d452e2df +size 10058 diff --git a/std_results/out/isr/ep99.npz b/std_results/out/isr/ep99.npz new file mode 100644 index 0000000000000000000000000000000000000000..25a8ca490f5c9c61ad7fdd33107f2ff74e57c193 --- /dev/null +++ b/std_results/out/isr/ep99.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2e73bc08ddba47d60433896d28ebb6b4b6c4ceb147306497e84d3d3a1e6f797 +size 12324 diff --git a/std_results/out/isr/ep99_baseline3x.npz b/std_results/out/isr/ep99_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..44efdb49dbf82b26afd142b13920e1bfd57750e7 --- /dev/null +++ b/std_results/out/isr/ep99_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:299d3dcf0871fff7431a978c65197dbb1c329955d9b0336b3acc7df93ddaa8ae +size 10682 diff --git a/std_results/out/isr/ep9_baseline3x.npz b/std_results/out/isr/ep9_baseline3x.npz new file mode 100644 index 0000000000000000000000000000000000000000..e7ae9709d6b1176796e9140b6205ce6d0e126af5 --- /dev/null +++ b/std_results/out/isr/ep9_baseline3x.npz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb3701275fefc47fa9580b087330d6fd6b0f301008fe661948880dd332a7671c +size 10266 diff --git a/std_results/out/isr/stats.json b/std_results/out/isr/stats.json new file mode 100644 index 0000000000000000000000000000000000000000..b3ad40a834955554bd4967f1455246de68298d2d --- /dev/null +++ b/std_results/out/isr/stats.json @@ -0,0 +1,711 @@ +{ + "knobs": { + "d_target": 12.0, + "lambda_dist": 1.0, + "lambda_acc": 0.002, + "grip_threshold": 2.0 + }, + "source": "/workspace/mm_teleop", + "episodes": { + "ep0": { + "frames_in": 270, + "frames_out": 90, + "ratio": 0.333, + "gripper_forced": 39, + "baseline_3x_frames": 91 + }, + "ep1": { + "frames_in": 278, + "frames_out": 100, + "ratio": 0.36, + "gripper_forced": 39, + "baseline_3x_frames": 94 + }, + "ep10": { + "frames_in": 241, + "frames_out": 84, + "ratio": 0.349, + "gripper_forced": 37, + "baseline_3x_frames": 81 + }, + "ep11": { + "frames_in": 253, + "frames_out": 106, + "ratio": 0.419, + "gripper_forced": 66, + "baseline_3x_frames": 85 + }, + "ep12": { + "frames_in": 304, + "frames_out": 78, + "ratio": 0.257, + "gripper_forced": 24, + "baseline_3x_frames": 102 + }, + "ep13": { + "frames_in": 282, + "frames_out": 88, + "ratio": 0.312, + "gripper_forced": 44, + "baseline_3x_frames": 95 + }, + "ep14": { + "frames_in": 272, + "frames_out": 94, + "ratio": 0.346, + "gripper_forced": 46, + "baseline_3x_frames": 92 + }, + "ep15": { + "frames_in": 257, + "frames_out": 90, + "ratio": 0.35, + "gripper_forced": 46, + "baseline_3x_frames": 87 + }, + "ep16": { + "frames_in": 255, + "frames_out": 94, + "ratio": 0.369, + "gripper_forced": 41, + "baseline_3x_frames": 86 + }, + "ep17": { + "frames_in": 304, + "frames_out": 89, + "ratio": 0.293, + "gripper_forced": 34, + "baseline_3x_frames": 102 + }, + "ep18": { + "frames_in": 317, + "frames_out": 90, + "ratio": 0.284, + "gripper_forced": 29, + "baseline_3x_frames": 107 + }, + "ep19": { + "frames_in": 314, + "frames_out": 92, + "ratio": 0.293, + "gripper_forced": 39, + "baseline_3x_frames": 106 + }, + "ep2": { + "frames_in": 300, + "frames_out": 102, + "ratio": 0.34, + "gripper_forced": 39, + "baseline_3x_frames": 101 + }, + "ep20": { + "frames_in": 297, + "frames_out": 87, + "ratio": 0.293, + "gripper_forced": 27, + "baseline_3x_frames": 100 + }, + "ep21": { + "frames_in": 281, + "frames_out": 95, + "ratio": 0.338, + "gripper_forced": 45, + "baseline_3x_frames": 95 + }, + "ep22": { + "frames_in": 255, + "frames_out": 95, + "ratio": 0.373, + "gripper_forced": 42, + "baseline_3x_frames": 86 + }, + "ep23": { + "frames_in": 278, + "frames_out": 101, + "ratio": 0.363, + "gripper_forced": 44, + "baseline_3x_frames": 94 + }, + "ep24": { + "frames_in": 251, + "frames_out": 93, + "ratio": 0.371, + "gripper_forced": 40, + "baseline_3x_frames": 85 + }, + "ep25": { + "frames_in": 266, + "frames_out": 99, + "ratio": 0.372, + "gripper_forced": 48, + "baseline_3x_frames": 90 + }, + "ep26": { + "frames_in": 238, + "frames_out": 105, + "ratio": 0.441, + "gripper_forced": 63, + "baseline_3x_frames": 80 + }, + "ep27": { + "frames_in": 262, + "frames_out": 87, + "ratio": 0.332, + "gripper_forced": 36, + "baseline_3x_frames": 88 + }, + "ep28": { + "frames_in": 308, + "frames_out": 90, + "ratio": 0.292, + "gripper_forced": 37, + "baseline_3x_frames": 104 + }, + "ep29": { + "frames_in": 270, + "frames_out": 97, + "ratio": 0.359, + "gripper_forced": 40, + "baseline_3x_frames": 91 + }, + "ep3": { + "frames_in": 291, + "frames_out": 88, + "ratio": 0.302, + "gripper_forced": 33, + "baseline_3x_frames": 98 + }, + "ep30": { + "frames_in": 275, + "frames_out": 96, + "ratio": 0.349, + "gripper_forced": 40, + "baseline_3x_frames": 93 + }, + "ep31": { + "frames_in": 278, + "frames_out": 87, + "ratio": 0.313, + "gripper_forced": 36, + "baseline_3x_frames": 94 + }, + "ep32": { + "frames_in": 273, + "frames_out": 93, + "ratio": 0.341, + "gripper_forced": 42, + "baseline_3x_frames": 92 + }, + "ep33": { + "frames_in": 291, + "frames_out": 109, + "ratio": 0.375, + "gripper_forced": 65, + "baseline_3x_frames": 98 + }, + "ep34": { + "frames_in": 266, + "frames_out": 103, + "ratio": 0.387, + "gripper_forced": 60, + "baseline_3x_frames": 90 + }, + "ep35": { + "frames_in": 290, + "frames_out": 87, + "ratio": 0.3, + "gripper_forced": 39, + "baseline_3x_frames": 98 + }, + "ep36": { + "frames_in": 282, + "frames_out": 89, + "ratio": 0.316, + "gripper_forced": 42, + "baseline_3x_frames": 95 + }, + "ep37": { + "frames_in": 283, + "frames_out": 82, + "ratio": 0.29, + "gripper_forced": 39, + "baseline_3x_frames": 95 + }, + "ep38": { + "frames_in": 286, + "frames_out": 107, + "ratio": 0.374, + "gripper_forced": 68, + "baseline_3x_frames": 96 + }, + "ep39": { + "frames_in": 276, + "frames_out": 94, + "ratio": 0.341, + "gripper_forced": 47, + "baseline_3x_frames": 93 + }, + "ep4": { + "frames_in": 292, + "frames_out": 87, + "ratio": 0.298, + "gripper_forced": 35, + "baseline_3x_frames": 98 + }, + "ep40": { + "frames_in": 305, + "frames_out": 92, + "ratio": 0.302, + "gripper_forced": 45, + "baseline_3x_frames": 103 + }, + "ep41": { + "frames_in": 286, + "frames_out": 103, + "ratio": 0.36, + "gripper_forced": 62, + "baseline_3x_frames": 96 + }, + "ep42": { + "frames_in": 276, + "frames_out": 96, + "ratio": 0.348, + "gripper_forced": 49, + "baseline_3x_frames": 93 + }, + "ep43": { + "frames_in": 270, + "frames_out": 95, + "ratio": 0.352, + "gripper_forced": 43, + "baseline_3x_frames": 91 + }, + "ep44": { + "frames_in": 268, + "frames_out": 88, + "ratio": 0.328, + "gripper_forced": 35, + "baseline_3x_frames": 90 + }, + "ep45": { + "frames_in": 274, + "frames_out": 96, + "ratio": 0.35, + "gripper_forced": 46, + "baseline_3x_frames": 92 + }, + "ep46": { + "frames_in": 264, + "frames_out": 86, + "ratio": 0.326, + "gripper_forced": 40, + "baseline_3x_frames": 89 + }, + "ep47": { + "frames_in": 260, + "frames_out": 87, + "ratio": 0.335, + "gripper_forced": 39, + "baseline_3x_frames": 88 + }, + "ep48": { + "frames_in": 238, + "frames_out": 90, + "ratio": 0.378, + "gripper_forced": 53, + "baseline_3x_frames": 80 + }, + "ep49": { + "frames_in": 246, + "frames_out": 99, + "ratio": 0.402, + "gripper_forced": 46, + "baseline_3x_frames": 83 + }, + "ep5": { + "frames_in": 337, + "frames_out": 87, + "ratio": 0.258, + "gripper_forced": 37, + "baseline_3x_frames": 113 + }, + "ep50": { + "frames_in": 352, + "frames_out": 99, + "ratio": 0.281, + "gripper_forced": 40, + "baseline_3x_frames": 118 + }, + "ep51": { + "frames_in": 292, + "frames_out": 107, + "ratio": 0.366, + "gripper_forced": 51, + "baseline_3x_frames": 98 + }, + "ep52": { + "frames_in": 301, + "frames_out": 114, + "ratio": 0.379, + "gripper_forced": 62, + "baseline_3x_frames": 101 + }, + "ep53": { + "frames_in": 284, + "frames_out": 99, + "ratio": 0.349, + "gripper_forced": 50, + "baseline_3x_frames": 96 + }, + "ep54": { + "frames_in": 279, + "frames_out": 96, + "ratio": 0.344, + "gripper_forced": 43, + "baseline_3x_frames": 94 + }, + "ep55": { + "frames_in": 293, + "frames_out": 92, + "ratio": 0.314, + "gripper_forced": 36, + "baseline_3x_frames": 99 + }, + "ep56": { + "frames_in": 288, + "frames_out": 99, + "ratio": 0.344, + "gripper_forced": 54, + "baseline_3x_frames": 97 + }, + "ep57": { + "frames_in": 333, + "frames_out": 108, + "ratio": 0.324, + "gripper_forced": 46, + "baseline_3x_frames": 112 + }, + "ep58": { + "frames_in": 272, + "frames_out": 99, + "ratio": 0.364, + "gripper_forced": 46, + "baseline_3x_frames": 92 + }, + "ep59": { + "frames_in": 289, + "frames_out": 96, + "ratio": 0.332, + "gripper_forced": 42, + "baseline_3x_frames": 97 + }, + "ep6": { + "frames_in": 254, + "frames_out": 93, + "ratio": 0.366, + "gripper_forced": 45, + "baseline_3x_frames": 86 + }, + "ep60": { + "frames_in": 303, + "frames_out": 97, + "ratio": 0.32, + "gripper_forced": 40, + "baseline_3x_frames": 102 + }, + "ep61": { + "frames_in": 275, + "frames_out": 92, + "ratio": 0.335, + "gripper_forced": 41, + "baseline_3x_frames": 93 + }, + "ep62": { + "frames_in": 277, + "frames_out": 103, + "ratio": 0.372, + "gripper_forced": 51, + "baseline_3x_frames": 93 + }, + "ep63": { + "frames_in": 278, + "frames_out": 114, + "ratio": 0.41, + "gripper_forced": 66, + "baseline_3x_frames": 94 + }, + "ep64": { + "frames_in": 305, + "frames_out": 107, + "ratio": 0.351, + "gripper_forced": 57, + "baseline_3x_frames": 103 + }, + "ep65": { + "frames_in": 309, + "frames_out": 110, + "ratio": 0.356, + "gripper_forced": 53, + "baseline_3x_frames": 104 + }, + "ep66": { + "frames_in": 292, + "frames_out": 98, + "ratio": 0.336, + "gripper_forced": 40, + "baseline_3x_frames": 98 + }, + "ep67": { + "frames_in": 285, + "frames_out": 117, + "ratio": 0.411, + "gripper_forced": 67, + "baseline_3x_frames": 96 + }, + "ep68": { + "frames_in": 284, + "frames_out": 97, + "ratio": 0.342, + "gripper_forced": 43, + "baseline_3x_frames": 96 + }, + "ep69": { + "frames_in": 255, + "frames_out": 102, + "ratio": 0.4, + "gripper_forced": 62, + "baseline_3x_frames": 86 + }, + "ep7": { + "frames_in": 284, + "frames_out": 88, + "ratio": 0.31, + "gripper_forced": 40, + "baseline_3x_frames": 96 + }, + "ep70": { + "frames_in": 285, + "frames_out": 91, + "ratio": 0.319, + "gripper_forced": 36, + "baseline_3x_frames": 96 + }, + "ep71": { + "frames_in": 327, + "frames_out": 93, + "ratio": 0.284, + "gripper_forced": 42, + "baseline_3x_frames": 110 + }, + "ep72": { + "frames_in": 338, + "frames_out": 91, + "ratio": 0.269, + "gripper_forced": 35, + "baseline_3x_frames": 114 + }, + "ep73": { + "frames_in": 346, + "frames_out": 93, + "ratio": 0.269, + "gripper_forced": 35, + "baseline_3x_frames": 116 + }, + "ep74": { + "frames_in": 363, + "frames_out": 91, + "ratio": 0.251, + "gripper_forced": 21, + "baseline_3x_frames": 122 + }, + "ep75": { + "frames_in": 326, + "frames_out": 106, + "ratio": 0.325, + "gripper_forced": 47, + "baseline_3x_frames": 110 + }, + "ep76": { + "frames_in": 328, + "frames_out": 107, + "ratio": 0.326, + "gripper_forced": 40, + "baseline_3x_frames": 110 + }, + "ep77": { + "frames_in": 319, + "frames_out": 93, + "ratio": 0.292, + "gripper_forced": 35, + "baseline_3x_frames": 107 + }, + "ep78": { + "frames_in": 349, + "frames_out": 93, + "ratio": 0.266, + "gripper_forced": 35, + "baseline_3x_frames": 117 + }, + "ep79": { + "frames_in": 331, + "frames_out": 96, + "ratio": 0.29, + "gripper_forced": 30, + "baseline_3x_frames": 111 + }, + "ep8": { + "frames_in": 318, + "frames_out": 89, + "ratio": 0.28, + "gripper_forced": 36, + "baseline_3x_frames": 107 + }, + "ep80": { + "frames_in": 319, + "frames_out": 97, + "ratio": 0.304, + "gripper_forced": 34, + "baseline_3x_frames": 107 + }, + "ep81": { + "frames_in": 307, + "frames_out": 101, + "ratio": 0.329, + "gripper_forced": 38, + "baseline_3x_frames": 103 + }, + "ep82": { + "frames_in": 302, + "frames_out": 88, + "ratio": 0.291, + "gripper_forced": 35, + "baseline_3x_frames": 102 + }, + "ep83": { + "frames_in": 328, + "frames_out": 85, + "ratio": 0.259, + "gripper_forced": 29, + "baseline_3x_frames": 110 + }, + "ep84": { + "frames_in": 304, + "frames_out": 84, + "ratio": 0.276, + "gripper_forced": 35, + "baseline_3x_frames": 102 + }, + "ep85": { + "frames_in": 299, + "frames_out": 103, + "ratio": 0.344, + "gripper_forced": 45, + "baseline_3x_frames": 101 + }, + "ep86": { + "frames_in": 261, + "frames_out": 103, + "ratio": 0.395, + "gripper_forced": 61, + "baseline_3x_frames": 88 + }, + "ep87": { + "frames_in": 258, + "frames_out": 90, + "ratio": 0.349, + "gripper_forced": 41, + "baseline_3x_frames": 87 + }, + "ep88": { + "frames_in": 283, + "frames_out": 80, + "ratio": 0.283, + "gripper_forced": 25, + "baseline_3x_frames": 95 + }, + "ep89": { + "frames_in": 307, + "frames_out": 87, + "ratio": 0.283, + "gripper_forced": 33, + "baseline_3x_frames": 103 + }, + "ep9": { + "frames_in": 263, + "frames_out": 100, + "ratio": 0.38, + "gripper_forced": 47, + "baseline_3x_frames": 89 + }, + "ep90": { + "frames_in": 327, + "frames_out": 98, + "ratio": 0.3, + "gripper_forced": 38, + "baseline_3x_frames": 110 + }, + "ep91": { + "frames_in": 302, + "frames_out": 95, + "ratio": 0.315, + "gripper_forced": 35, + "baseline_3x_frames": 102 + }, + "ep92": { + "frames_in": 279, + "frames_out": 89, + "ratio": 0.319, + "gripper_forced": 39, + "baseline_3x_frames": 94 + }, + "ep93": { + "frames_in": 278, + "frames_out": 91, + "ratio": 0.327, + "gripper_forced": 38, + "baseline_3x_frames": 94 + }, + "ep94": { + "frames_in": 308, + "frames_out": 89, + "ratio": 0.289, + "gripper_forced": 33, + "baseline_3x_frames": 104 + }, + "ep95": { + "frames_in": 295, + "frames_out": 89, + "ratio": 0.302, + "gripper_forced": 37, + "baseline_3x_frames": 99 + }, + "ep96": { + "frames_in": 328, + "frames_out": 93, + "ratio": 0.284, + "gripper_forced": 35, + "baseline_3x_frames": 110 + }, + "ep97": { + "frames_in": 293, + "frames_out": 100, + "ratio": 0.341, + "gripper_forced": 40, + "baseline_3x_frames": 99 + }, + "ep98": { + "frames_in": 258, + "frames_out": 87, + "ratio": 0.337, + "gripper_forced": 34, + "baseline_3x_frames": 87 + }, + "ep99": { + "frames_in": 275, + "frames_out": 94, + "ratio": 0.342, + "gripper_forced": 37, + "baseline_3x_frames": 93 + } + } +} \ No newline at end of file diff --git a/std_results/out/plots/compression.png b/std_results/out/plots/compression.png new file mode 100644 index 0000000000000000000000000000000000000000..554bd13097311dc9704cc18b8358711980ed4023 --- /dev/null +++ b/std_results/out/plots/compression.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7ab08c6225d9ec8aa829aa00a83f9d91730fdb469681c46f3cee11c4f346d92 +size 114089 diff --git a/std_results/out/plots/ep0_isr.png b/std_results/out/plots/ep0_isr.png new file mode 100644 index 0000000000000000000000000000000000000000..abf37d3ccc5cfdc479e3c950279b4f06398ecc69 --- /dev/null +++ b/std_results/out/plots/ep0_isr.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ae9b46ca86aa5b934ff8cdc07457d7a8f6fbbae463bfcc27b2c4acf769bced7 +size 269673 diff --git a/std_results/out/plots/ep10_isr.png b/std_results/out/plots/ep10_isr.png new file mode 100644 index 0000000000000000000000000000000000000000..f4f774d19fdb1279e6e529a5815b038cc7c49c19 --- /dev/null +++ b/std_results/out/plots/ep10_isr.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4015ebb4f5f36109bca22a42a86c277c53a05bc943c4dd10a07077aeddcb9317 +size 268623 diff --git a/std_results/out/plots/ep11_isr.png b/std_results/out/plots/ep11_isr.png new file mode 100644 index 0000000000000000000000000000000000000000..430273e6ea6f64d0d21e4cd01056b8ec53de3913 --- /dev/null +++ b/std_results/out/plots/ep11_isr.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fb9979389ec0398a834eef404d06c4189a977b84fc37558a0fe9b8e46af1a9a +size 273469 diff --git a/std_results/out/plots/ep12_isr.png b/std_results/out/plots/ep12_isr.png new file mode 100644 index 0000000000000000000000000000000000000000..96a336b0caa7ee15c42183fd5d73a99f2a43c530 --- /dev/null +++ b/std_results/out/plots/ep12_isr.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baef04133111c42dfce0ff0f6b24e2bc62d16d1d06b96c78138dc5e569f4d3c3 +size 280918 diff --git a/std_results/out/plots/ep13_isr.png b/std_results/out/plots/ep13_isr.png new file mode 100644 index 0000000000000000000000000000000000000000..e3a9563e0174eb240bc28c81e10ada91e8364f2e --- /dev/null +++ b/std_results/out/plots/ep13_isr.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9e1c903205fa2b36d6b63e8b35e76c686bc3b2c2efcf4731cb1edfc290535e8 +size 263342 diff --git a/std_results/out/plots/ep14_isr.png b/std_results/out/plots/ep14_isr.png new file mode 100644 index 0000000000000000000000000000000000000000..1484c332aafd43002eecbe8972885d41327764f9 --- /dev/null +++ b/std_results/out/plots/ep14_isr.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fa9da5ff9a68920fcfb4f25a8385a2b6e62239b1e6283c796eda6cc5dc7f37e +size 267506 diff --git a/std_results/out/plots/ep15_isr.png b/std_results/out/plots/ep15_isr.png new file mode 100644 index 0000000000000000000000000000000000000000..58a9a6fcf327569053850e047f93cac7ec8abf9c --- /dev/null +++ b/std_results/out/plots/ep15_isr.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f8e55de12571e77e9e1284582c2035332c71784550750ca725a1231cb8750dc +size 267008 diff --git a/std_results/out/plots/ep16_isr.png b/std_results/out/plots/ep16_isr.png new file mode 100644 index 0000000000000000000000000000000000000000..8780dbe665dd00c613f67cf9a330fb3449a1bc73 --- /dev/null +++ b/std_results/out/plots/ep16_isr.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a05001768823df4148574020112388c2c0ed44f5adecb7be07f6876f1812799 +size 272353 diff --git a/std_results/out/plots/ep17_isr.png b/std_results/out/plots/ep17_isr.png new file mode 100644 index 0000000000000000000000000000000000000000..e2bf95b6c394b0b95b42d7eb2bbb63957190d29a --- /dev/null +++ b/std_results/out/plots/ep17_isr.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b6bdfc4928bccfc610fd2b07a9161b881aaa1fb60b010927de90b2aa8fbe435 +size 274627 diff --git a/std_results/out/plots/ep18_isr.png b/std_results/out/plots/ep18_isr.png new file mode 100644 index 0000000000000000000000000000000000000000..16b4ed0682b289582a8d7f7e8113b80b1f1ef784 --- /dev/null +++ b/std_results/out/plots/ep18_isr.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa4963739c9a7c68bb5c30127947c5ef10930a43b3a438fc2a8a8abb09a8e546 +size 270165 diff --git a/std_results/out/plots/ep19_isr.png b/std_results/out/plots/ep19_isr.png new file mode 100644 index 0000000000000000000000000000000000000000..3e7fb86209b907b1897ef1b2083d55c610cc48e5 --- /dev/null +++ b/std_results/out/plots/ep19_isr.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12773107aa552d9b4c7539d93cb1c6f030fdaf89e9d5208fab33ee1f4ae6946a +size 266318 diff --git a/std_results/out/plots/ep1_isr.png b/std_results/out/plots/ep1_isr.png new file mode 100644 index 0000000000000000000000000000000000000000..56cb77892871d27cd43ae327702234edaea5528a --- /dev/null +++ b/std_results/out/plots/ep1_isr.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:104a7a5c09c1be720bd7736762f4f34aa02628d95dd4517b4c028d78833c4af4 +size 267325 diff --git a/std_results/out/plots/spacing.png b/std_results/out/plots/spacing.png new file mode 100644 index 0000000000000000000000000000000000000000..b922854c737288865205f5be09460612238fba69 --- /dev/null +++ b/std_results/out/plots/spacing.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f011044a6dc4a7fc8aa708d7d28edabce8c32f38b6ea9c036e52a1e7235ab1e0 +size 118007 diff --git a/std_results/out/plots/variance.png b/std_results/out/plots/variance.png new file mode 100644 index 0000000000000000000000000000000000000000..9138d511717be0836dbc68a0288a036f4355f054 --- /dev/null +++ b/std_results/out/plots/variance.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e8effd12281a7505485767e2f9f3977329338b53616952e5a1e32a4de276c61 +size 137509 diff --git a/std_results/out/report.json b/std_results/out/report.json new file mode 100644 index 0000000000000000000000000000000000000000..3749d4a6190d79855374e34e2b80650538fa2e23 --- /dev/null +++ b/std_results/out/report.json @@ -0,0 +1,1103 @@ +{ + "pipeline": "teleop_std_poc: ISR standardize -> ActionVariance score -> bucket", + "scores_input": "isr", + "mode": "percentile", + "thresholds": { + "train": 95.01138, + "quarantine": 106.064701 + }, + "dataset_action_variance": 94.331717, + "counts": { + "train": 50, + "review": 40, + "quarantine": 10 + }, + "episodes": { + "ep0": { + "bucket": "train", + "action_variance": 95.00202, + "reason": "score 95.00202 \u2264 train threshold 95.01138", + "frames_in": 270, + "frames_out": 90, + "ratio": 0.333, + "gripper_forced": 39, + "baseline_3x_frames": 91 + }, + "ep1": { + "bucket": "review", + "action_variance": 98.542921, + "reason": "score 98.542921 between thresholds", + "frames_in": 278, + "frames_out": 100, + "ratio": 0.36, + "gripper_forced": 39, + "baseline_3x_frames": 94 + }, + "ep10": { + "bucket": "train", + "action_variance": 86.822551, + "reason": "score 86.822551 \u2264 train threshold 95.01138", + "frames_in": 241, + "frames_out": 84, + "ratio": 0.349, + "gripper_forced": 37, + "baseline_3x_frames": 81 + }, + "ep11": { + "bucket": "quarantine", + "action_variance": 109.425817, + "reason": "score 109.425817 \u2265 quarantine threshold 106.064701", + "frames_in": 253, + "frames_out": 106, + "ratio": 0.419, + "gripper_forced": 66, + "baseline_3x_frames": 85 + }, + "ep12": { + "bucket": "train", + "action_variance": 74.25414, + "reason": "score 74.25414 \u2264 train threshold 95.01138", + "frames_in": 304, + "frames_out": 78, + "ratio": 0.257, + "gripper_forced": 24, + "baseline_3x_frames": 102 + }, + "ep13": { + "bucket": "review", + "action_variance": 96.884807, + "reason": "score 96.884807 between thresholds", + "frames_in": 282, + "frames_out": 88, + "ratio": 0.312, + "gripper_forced": 44, + "baseline_3x_frames": 95 + }, + "ep14": { + "bucket": "train", + "action_variance": 94.266214, + "reason": "score 94.266214 \u2264 train threshold 95.01138", + "frames_in": 272, + "frames_out": 94, + "ratio": 0.346, + "gripper_forced": 46, + "baseline_3x_frames": 92 + }, + "ep15": { + "bucket": "quarantine", + "action_variance": 107.531641, + "reason": "score 107.531641 \u2265 quarantine threshold 106.064701", + "frames_in": 257, + "frames_out": 90, + "ratio": 0.35, + "gripper_forced": 46, + "baseline_3x_frames": 87 + }, + "ep16": { + "bucket": "train", + "action_variance": 88.997119, + "reason": "score 88.997119 \u2264 train threshold 95.01138", + "frames_in": 255, + "frames_out": 94, + "ratio": 0.369, + "gripper_forced": 41, + "baseline_3x_frames": 86 + }, + "ep17": { + "bucket": "review", + "action_variance": 96.073974, + "reason": "score 96.073974 between thresholds", + "frames_in": 304, + "frames_out": 89, + "ratio": 0.293, + "gripper_forced": 34, + "baseline_3x_frames": 102 + }, + "ep18": { + "bucket": "train", + "action_variance": 85.056971, + "reason": "score 85.056971 \u2264 train threshold 95.01138", + "frames_in": 317, + "frames_out": 90, + "ratio": 0.284, + "gripper_forced": 29, + "baseline_3x_frames": 107 + }, + "ep19": { + "bucket": "train", + "action_variance": 76.398572, + "reason": "score 76.398572 \u2264 train threshold 95.01138", + "frames_in": 314, + "frames_out": 92, + "ratio": 0.293, + "gripper_forced": 39, + "baseline_3x_frames": 106 + }, + "ep2": { + "bucket": "review", + "action_variance": 97.759605, + "reason": "score 97.759605 between thresholds", + "frames_in": 300, + "frames_out": 102, + "ratio": 0.34, + "gripper_forced": 39, + "baseline_3x_frames": 101 + }, + "ep20": { + "bucket": "train", + "action_variance": 90.003539, + "reason": "score 90.003539 \u2264 train threshold 95.01138", + "frames_in": 297, + "frames_out": 87, + "ratio": 0.293, + "gripper_forced": 27, + "baseline_3x_frames": 100 + }, + "ep21": { + "bucket": "train", + "action_variance": 82.76177, + "reason": "score 82.76177 \u2264 train threshold 95.01138", + "frames_in": 281, + "frames_out": 95, + "ratio": 0.338, + "gripper_forced": 45, + "baseline_3x_frames": 95 + }, + "ep22": { + "bucket": "train", + "action_variance": 86.214835, + "reason": "score 86.214835 \u2264 train threshold 95.01138", + "frames_in": 255, + "frames_out": 95, + "ratio": 0.373, + "gripper_forced": 42, + "baseline_3x_frames": 86 + }, + "ep23": { + "bucket": "train", + "action_variance": 80.652655, + "reason": "score 80.652655 \u2264 train threshold 95.01138", + "frames_in": 278, + "frames_out": 101, + "ratio": 0.363, + "gripper_forced": 44, + "baseline_3x_frames": 94 + }, + "ep24": { + "bucket": "train", + "action_variance": 86.160269, + "reason": "score 86.160269 \u2264 train threshold 95.01138", + "frames_in": 251, + "frames_out": 93, + "ratio": 0.371, + "gripper_forced": 40, + "baseline_3x_frames": 85 + }, + "ep25": { + "bucket": "review", + "action_variance": 97.3509, + "reason": "score 97.3509 between thresholds", + "frames_in": 266, + "frames_out": 99, + "ratio": 0.372, + "gripper_forced": 48, + "baseline_3x_frames": 90 + }, + "ep26": { + "bucket": "review", + "action_variance": 98.255658, + "reason": "score 98.255658 between thresholds", + "frames_in": 238, + "frames_out": 105, + "ratio": 0.441, + "gripper_forced": 63, + "baseline_3x_frames": 80 + }, + "ep27": { + "bucket": "review", + "action_variance": 101.469679, + "reason": "score 101.469679 between thresholds", + "frames_in": 262, + "frames_out": 87, + "ratio": 0.332, + "gripper_forced": 36, + "baseline_3x_frames": 88 + }, + "ep28": { + "bucket": "train", + "action_variance": 90.517707, + "reason": "score 90.517707 \u2264 train threshold 95.01138", + "frames_in": 308, + "frames_out": 90, + "ratio": 0.292, + "gripper_forced": 37, + "baseline_3x_frames": 104 + }, + "ep29": { + "bucket": "train", + "action_variance": 90.704959, + "reason": "score 90.704959 \u2264 train threshold 95.01138", + "frames_in": 270, + "frames_out": 97, + "ratio": 0.359, + "gripper_forced": 40, + "baseline_3x_frames": 91 + }, + "ep3": { + "bucket": "review", + "action_variance": 95.036447, + "reason": "score 95.036447 between thresholds", + "frames_in": 291, + "frames_out": 88, + "ratio": 0.302, + "gripper_forced": 33, + "baseline_3x_frames": 98 + }, + "ep30": { + "bucket": "train", + "action_variance": 87.941692, + "reason": "score 87.941692 \u2264 train threshold 95.01138", + "frames_in": 275, + "frames_out": 96, + "ratio": 0.349, + "gripper_forced": 40, + "baseline_3x_frames": 93 + }, + "ep31": { + "bucket": "train", + "action_variance": 84.305406, + "reason": "score 84.305406 \u2264 train threshold 95.01138", + "frames_in": 278, + "frames_out": 87, + "ratio": 0.313, + "gripper_forced": 36, + "baseline_3x_frames": 94 + }, + "ep32": { + "bucket": "review", + "action_variance": 102.471456, + "reason": "score 102.471456 between thresholds", + "frames_in": 273, + "frames_out": 93, + "ratio": 0.341, + "gripper_forced": 42, + "baseline_3x_frames": 92 + }, + "ep33": { + "bucket": "review", + "action_variance": 100.84569, + "reason": "score 100.84569 between thresholds", + "frames_in": 291, + "frames_out": 109, + "ratio": 0.375, + "gripper_forced": 65, + "baseline_3x_frames": 98 + }, + "ep34": { + "bucket": "train", + "action_variance": 93.637763, + "reason": "score 93.637763 \u2264 train threshold 95.01138", + "frames_in": 266, + "frames_out": 103, + "ratio": 0.387, + "gripper_forced": 60, + "baseline_3x_frames": 90 + }, + "ep35": { + "bucket": "train", + "action_variance": 85.282699, + "reason": "score 85.282699 \u2264 train threshold 95.01138", + "frames_in": 290, + "frames_out": 87, + "ratio": 0.3, + "gripper_forced": 39, + "baseline_3x_frames": 98 + }, + "ep36": { + "bucket": "review", + "action_variance": 103.030825, + "reason": "score 103.030825 between thresholds", + "frames_in": 282, + "frames_out": 89, + "ratio": 0.316, + "gripper_forced": 42, + "baseline_3x_frames": 95 + }, + "ep37": { + "bucket": "review", + "action_variance": 102.886738, + "reason": "score 102.886738 between thresholds", + "frames_in": 283, + "frames_out": 82, + "ratio": 0.29, + "gripper_forced": 39, + "baseline_3x_frames": 95 + }, + "ep38": { + "bucket": "review", + "action_variance": 100.675921, + "reason": "score 100.675921 between thresholds", + "frames_in": 286, + "frames_out": 107, + "ratio": 0.374, + "gripper_forced": 68, + "baseline_3x_frames": 96 + }, + "ep39": { + "bucket": "review", + "action_variance": 95.803346, + "reason": "score 95.803346 between thresholds", + "frames_in": 276, + "frames_out": 94, + "ratio": 0.341, + "gripper_forced": 47, + "baseline_3x_frames": 93 + }, + "ep4": { + "bucket": "review", + "action_variance": 103.048067, + "reason": "score 103.048067 between thresholds", + "frames_in": 292, + "frames_out": 87, + "ratio": 0.298, + "gripper_forced": 35, + "baseline_3x_frames": 98 + }, + "ep40": { + "bucket": "train", + "action_variance": 94.477745, + "reason": "score 94.477745 \u2264 train threshold 95.01138", + "frames_in": 305, + "frames_out": 92, + "ratio": 0.302, + "gripper_forced": 45, + "baseline_3x_frames": 103 + }, + "ep41": { + "bucket": "train", + "action_variance": 87.429431, + "reason": "score 87.429431 \u2264 train threshold 95.01138", + "frames_in": 286, + "frames_out": 103, + "ratio": 0.36, + "gripper_forced": 62, + "baseline_3x_frames": 96 + }, + "ep42": { + "bucket": "quarantine", + "action_variance": 106.57331, + "reason": "score 106.57331 \u2265 quarantine threshold 106.064701", + "frames_in": 276, + "frames_out": 96, + "ratio": 0.348, + "gripper_forced": 49, + "baseline_3x_frames": 93 + }, + "ep43": { + "bucket": "review", + "action_variance": 96.033853, + "reason": "score 96.033853 between thresholds", + "frames_in": 270, + "frames_out": 95, + "ratio": 0.352, + "gripper_forced": 43, + "baseline_3x_frames": 91 + }, + "ep44": { + "bucket": "train", + "action_variance": 91.420635, + "reason": "score 91.420635 \u2264 train threshold 95.01138", + "frames_in": 268, + "frames_out": 88, + "ratio": 0.328, + "gripper_forced": 35, + "baseline_3x_frames": 90 + }, + "ep45": { + "bucket": "train", + "action_variance": 89.344375, + "reason": "score 89.344375 \u2264 train threshold 95.01138", + "frames_in": 274, + "frames_out": 96, + "ratio": 0.35, + "gripper_forced": 46, + "baseline_3x_frames": 92 + }, + "ep46": { + "bucket": "train", + "action_variance": 83.684195, + "reason": "score 83.684195 \u2264 train threshold 95.01138", + "frames_in": 264, + "frames_out": 86, + "ratio": 0.326, + "gripper_forced": 40, + "baseline_3x_frames": 89 + }, + "ep47": { + "bucket": "train", + "action_variance": 88.379073, + "reason": "score 88.379073 \u2264 train threshold 95.01138", + "frames_in": 260, + "frames_out": 87, + "ratio": 0.335, + "gripper_forced": 39, + "baseline_3x_frames": 88 + }, + "ep48": { + "bucket": "review", + "action_variance": 96.227835, + "reason": "score 96.227835 between thresholds", + "frames_in": 238, + "frames_out": 90, + "ratio": 0.378, + "gripper_forced": 53, + "baseline_3x_frames": 80 + }, + "ep49": { + "bucket": "train", + "action_variance": 86.935652, + "reason": "score 86.935652 \u2264 train threshold 95.01138", + "frames_in": 246, + "frames_out": 99, + "ratio": 0.402, + "gripper_forced": 46, + "baseline_3x_frames": 83 + }, + "ep5": { + "bucket": "train", + "action_variance": 84.137088, + "reason": "score 84.137088 \u2264 train threshold 95.01138", + "frames_in": 337, + "frames_out": 87, + "ratio": 0.258, + "gripper_forced": 37, + "baseline_3x_frames": 113 + }, + "ep50": { + "bucket": "train", + "action_variance": 70.985933, + "reason": "score 70.985933 \u2264 train threshold 95.01138", + "frames_in": 352, + "frames_out": 99, + "ratio": 0.281, + "gripper_forced": 40, + "baseline_3x_frames": 118 + }, + "ep51": { + "bucket": "train", + "action_variance": 87.512979, + "reason": "score 87.512979 \u2264 train threshold 95.01138", + "frames_in": 292, + "frames_out": 107, + "ratio": 0.366, + "gripper_forced": 51, + "baseline_3x_frames": 98 + }, + "ep52": { + "bucket": "train", + "action_variance": 89.514193, + "reason": "score 89.514193 \u2264 train threshold 95.01138", + "frames_in": 301, + "frames_out": 114, + "ratio": 0.379, + "gripper_forced": 62, + "baseline_3x_frames": 101 + }, + "ep53": { + "bucket": "review", + "action_variance": 101.537133, + "reason": "score 101.537133 between thresholds", + "frames_in": 284, + "frames_out": 99, + "ratio": 0.349, + "gripper_forced": 50, + "baseline_3x_frames": 96 + }, + "ep54": { + "bucket": "review", + "action_variance": 98.882785, + "reason": "score 98.882785 between thresholds", + "frames_in": 279, + "frames_out": 96, + "ratio": 0.344, + "gripper_forced": 43, + "baseline_3x_frames": 94 + }, + "ep55": { + "bucket": "train", + "action_variance": 83.593586, + "reason": "score 83.593586 \u2264 train threshold 95.01138", + "frames_in": 293, + "frames_out": 92, + "ratio": 0.314, + "gripper_forced": 36, + "baseline_3x_frames": 99 + }, + "ep56": { + "bucket": "review", + "action_variance": 102.347671, + "reason": "score 102.347671 between thresholds", + "frames_in": 288, + "frames_out": 99, + "ratio": 0.344, + "gripper_forced": 54, + "baseline_3x_frames": 97 + }, + "ep57": { + "bucket": "review", + "action_variance": 96.379595, + "reason": "score 96.379595 between thresholds", + "frames_in": 333, + "frames_out": 108, + "ratio": 0.324, + "gripper_forced": 46, + "baseline_3x_frames": 112 + }, + "ep58": { + "bucket": "train", + "action_variance": 87.259524, + "reason": "score 87.259524 \u2264 train threshold 95.01138", + "frames_in": 272, + "frames_out": 99, + "ratio": 0.364, + "gripper_forced": 46, + "baseline_3x_frames": 92 + }, + "ep59": { + "bucket": "review", + "action_variance": 98.66277, + "reason": "score 98.66277 between thresholds", + "frames_in": 289, + "frames_out": 96, + "ratio": 0.332, + "gripper_forced": 42, + "baseline_3x_frames": 97 + }, + "ep6": { + "bucket": "train", + "action_variance": 84.755776, + "reason": "score 84.755776 \u2264 train threshold 95.01138", + "frames_in": 254, + "frames_out": 93, + "ratio": 0.366, + "gripper_forced": 45, + "baseline_3x_frames": 86 + }, + "ep60": { + "bucket": "train", + "action_variance": 91.115015, + "reason": "score 91.115015 \u2264 train threshold 95.01138", + "frames_in": 303, + "frames_out": 97, + "ratio": 0.32, + "gripper_forced": 40, + "baseline_3x_frames": 102 + }, + "ep61": { + "bucket": "quarantine", + "action_variance": 109.233537, + "reason": "score 109.233537 \u2265 quarantine threshold 106.064701", + "frames_in": 275, + "frames_out": 92, + "ratio": 0.335, + "gripper_forced": 41, + "baseline_3x_frames": 93 + }, + "ep62": { + "bucket": "review", + "action_variance": 98.924431, + "reason": "score 98.924431 between thresholds", + "frames_in": 277, + "frames_out": 103, + "ratio": 0.372, + "gripper_forced": 51, + "baseline_3x_frames": 93 + }, + "ep63": { + "bucket": "review", + "action_variance": 95.020739, + "reason": "score 95.020739 between thresholds", + "frames_in": 278, + "frames_out": 114, + "ratio": 0.41, + "gripper_forced": 66, + "baseline_3x_frames": 94 + }, + "ep64": { + "bucket": "train", + "action_variance": 93.329454, + "reason": "score 93.329454 \u2264 train threshold 95.01138", + "frames_in": 305, + "frames_out": 107, + "ratio": 0.351, + "gripper_forced": 57, + "baseline_3x_frames": 103 + }, + "ep65": { + "bucket": "review", + "action_variance": 101.546281, + "reason": "score 101.546281 between thresholds", + "frames_in": 309, + "frames_out": 110, + "ratio": 0.356, + "gripper_forced": 53, + "baseline_3x_frames": 104 + }, + "ep66": { + "bucket": "review", + "action_variance": 102.983509, + "reason": "score 102.983509 between thresholds", + "frames_in": 292, + "frames_out": 98, + "ratio": 0.336, + "gripper_forced": 40, + "baseline_3x_frames": 98 + }, + "ep67": { + "bucket": "train", + "action_variance": 79.559885, + "reason": "score 79.559885 \u2264 train threshold 95.01138", + "frames_in": 285, + "frames_out": 117, + "ratio": 0.411, + "gripper_forced": 67, + "baseline_3x_frames": 96 + }, + "ep68": { + "bucket": "review", + "action_variance": 96.681559, + "reason": "score 96.681559 between thresholds", + "frames_in": 284, + "frames_out": 97, + "ratio": 0.342, + "gripper_forced": 43, + "baseline_3x_frames": 96 + }, + "ep69": { + "bucket": "review", + "action_variance": 98.446122, + "reason": "score 98.446122 between thresholds", + "frames_in": 255, + "frames_out": 102, + "ratio": 0.4, + "gripper_forced": 62, + "baseline_3x_frames": 86 + }, + "ep7": { + "bucket": "quarantine", + "action_variance": 107.264314, + "reason": "score 107.264314 \u2265 quarantine threshold 106.064701", + "frames_in": 284, + "frames_out": 88, + "ratio": 0.31, + "gripper_forced": 40, + "baseline_3x_frames": 96 + }, + "ep70": { + "bucket": "train", + "action_variance": 82.662634, + "reason": "score 82.662634 \u2264 train threshold 95.01138", + "frames_in": 285, + "frames_out": 91, + "ratio": 0.319, + "gripper_forced": 36, + "baseline_3x_frames": 96 + }, + "ep71": { + "bucket": "quarantine", + "action_variance": 112.835864, + "reason": "score 112.835864 \u2265 quarantine threshold 106.064701", + "frames_in": 327, + "frames_out": 93, + "ratio": 0.284, + "gripper_forced": 42, + "baseline_3x_frames": 110 + }, + "ep72": { + "bucket": "train", + "action_variance": 83.324836, + "reason": "score 83.324836 \u2264 train threshold 95.01138", + "frames_in": 338, + "frames_out": 91, + "ratio": 0.269, + "gripper_forced": 35, + "baseline_3x_frames": 114 + }, + "ep73": { + "bucket": "train", + "action_variance": 90.955617, + "reason": "score 90.955617 \u2264 train threshold 95.01138", + "frames_in": 346, + "frames_out": 93, + "ratio": 0.269, + "gripper_forced": 35, + "baseline_3x_frames": 116 + }, + "ep74": { + "bucket": "train", + "action_variance": 89.567266, + "reason": "score 89.567266 \u2264 train threshold 95.01138", + "frames_in": 363, + "frames_out": 91, + "ratio": 0.251, + "gripper_forced": 21, + "baseline_3x_frames": 122 + }, + "ep75": { + "bucket": "review", + "action_variance": 101.71279, + "reason": "score 101.71279 between thresholds", + "frames_in": 326, + "frames_out": 106, + "ratio": 0.325, + "gripper_forced": 47, + "baseline_3x_frames": 110 + }, + "ep76": { + "bucket": "train", + "action_variance": 93.253093, + "reason": "score 93.253093 \u2264 train threshold 95.01138", + "frames_in": 328, + "frames_out": 107, + "ratio": 0.326, + "gripper_forced": 40, + "baseline_3x_frames": 110 + }, + "ep77": { + "bucket": "train", + "action_variance": 83.533969, + "reason": "score 83.533969 \u2264 train threshold 95.01138", + "frames_in": 319, + "frames_out": 93, + "ratio": 0.292, + "gripper_forced": 35, + "baseline_3x_frames": 107 + }, + "ep78": { + "bucket": "train", + "action_variance": 81.473739, + "reason": "score 81.473739 \u2264 train threshold 95.01138", + "frames_in": 349, + "frames_out": 93, + "ratio": 0.266, + "gripper_forced": 35, + "baseline_3x_frames": 117 + }, + "ep79": { + "bucket": "train", + "action_variance": 84.682553, + "reason": "score 84.682553 \u2264 train threshold 95.01138", + "frames_in": 331, + "frames_out": 96, + "ratio": 0.29, + "gripper_forced": 30, + "baseline_3x_frames": 111 + }, + "ep8": { + "bucket": "review", + "action_variance": 101.788392, + "reason": "score 101.788392 between thresholds", + "frames_in": 318, + "frames_out": 89, + "ratio": 0.28, + "gripper_forced": 36, + "baseline_3x_frames": 107 + }, + "ep80": { + "bucket": "train", + "action_variance": 92.940747, + "reason": "score 92.940747 \u2264 train threshold 95.01138", + "frames_in": 319, + "frames_out": 97, + "ratio": 0.304, + "gripper_forced": 34, + "baseline_3x_frames": 107 + }, + "ep81": { + "bucket": "review", + "action_variance": 96.430211, + "reason": "score 96.430211 between thresholds", + "frames_in": 307, + "frames_out": 101, + "ratio": 0.329, + "gripper_forced": 38, + "baseline_3x_frames": 103 + }, + "ep82": { + "bucket": "review", + "action_variance": 99.165432, + "reason": "score 99.165432 between thresholds", + "frames_in": 302, + "frames_out": 88, + "ratio": 0.291, + "gripper_forced": 35, + "baseline_3x_frames": 102 + }, + "ep83": { + "bucket": "quarantine", + "action_variance": 115.130011, + "reason": "score 115.130011 \u2265 quarantine threshold 106.064701", + "frames_in": 328, + "frames_out": 85, + "ratio": 0.259, + "gripper_forced": 29, + "baseline_3x_frames": 110 + }, + "ep84": { + "bucket": "review", + "action_variance": 103.389355, + "reason": "score 103.389355 between thresholds", + "frames_in": 304, + "frames_out": 84, + "ratio": 0.276, + "gripper_forced": 35, + "baseline_3x_frames": 102 + }, + "ep85": { + "bucket": "train", + "action_variance": 92.724798, + "reason": "score 92.724798 \u2264 train threshold 95.01138", + "frames_in": 299, + "frames_out": 103, + "ratio": 0.344, + "gripper_forced": 45, + "baseline_3x_frames": 101 + }, + "ep86": { + "bucket": "quarantine", + "action_variance": 108.47794, + "reason": "score 108.47794 \u2265 quarantine threshold 106.064701", + "frames_in": 261, + "frames_out": 103, + "ratio": 0.395, + "gripper_forced": 61, + "baseline_3x_frames": 88 + }, + "ep87": { + "bucket": "quarantine", + "action_variance": 106.220467, + "reason": "score 106.220467 \u2265 quarantine threshold 106.064701", + "frames_in": 258, + "frames_out": 90, + "ratio": 0.349, + "gripper_forced": 41, + "baseline_3x_frames": 87 + }, + "ep88": { + "bucket": "train", + "action_variance": 90.151166, + "reason": "score 90.151166 \u2264 train threshold 95.01138", + "frames_in": 283, + "frames_out": 80, + "ratio": 0.283, + "gripper_forced": 25, + "baseline_3x_frames": 95 + }, + "ep89": { + "bucket": "train", + "action_variance": 94.817476, + "reason": "score 94.817476 \u2264 train threshold 95.01138", + "frames_in": 307, + "frames_out": 87, + "ratio": 0.283, + "gripper_forced": 33, + "baseline_3x_frames": 103 + }, + "ep9": { + "bucket": "train", + "action_variance": 90.439405, + "reason": "score 90.439405 \u2264 train threshold 95.01138", + "frames_in": 263, + "frames_out": 100, + "ratio": 0.38, + "gripper_forced": 47, + "baseline_3x_frames": 89 + }, + "ep90": { + "bucket": "review", + "action_variance": 102.974245, + "reason": "score 102.974245 between thresholds", + "frames_in": 327, + "frames_out": 98, + "ratio": 0.3, + "gripper_forced": 38, + "baseline_3x_frames": 110 + }, + "ep91": { + "bucket": "train", + "action_variance": 88.066799, + "reason": "score 88.066799 \u2264 train threshold 95.01138", + "frames_in": 302, + "frames_out": 95, + "ratio": 0.315, + "gripper_forced": 35, + "baseline_3x_frames": 102 + }, + "ep92": { + "bucket": "quarantine", + "action_variance": 109.730327, + "reason": "score 109.730327 \u2265 quarantine threshold 106.064701", + "frames_in": 279, + "frames_out": 89, + "ratio": 0.319, + "gripper_forced": 39, + "baseline_3x_frames": 94 + }, + "ep93": { + "bucket": "review", + "action_variance": 95.470476, + "reason": "score 95.470476 between thresholds", + "frames_in": 278, + "frames_out": 91, + "ratio": 0.327, + "gripper_forced": 38, + "baseline_3x_frames": 94 + }, + "ep94": { + "bucket": "review", + "action_variance": 106.047394, + "reason": "score 106.047394 between thresholds", + "frames_in": 308, + "frames_out": 89, + "ratio": 0.289, + "gripper_forced": 33, + "baseline_3x_frames": 104 + }, + "ep95": { + "bucket": "review", + "action_variance": 102.336455, + "reason": "score 102.336455 between thresholds", + "frames_in": 295, + "frames_out": 89, + "ratio": 0.302, + "gripper_forced": 37, + "baseline_3x_frames": 99 + }, + "ep96": { + "bucket": "review", + "action_variance": 95.454522, + "reason": "score 95.454522 between thresholds", + "frames_in": 328, + "frames_out": 93, + "ratio": 0.284, + "gripper_forced": 35, + "baseline_3x_frames": 110 + }, + "ep97": { + "bucket": "train", + "action_variance": 89.351045, + "reason": "score 89.351045 \u2264 train threshold 95.01138", + "frames_in": 293, + "frames_out": 100, + "ratio": 0.341, + "gripper_forced": 40, + "baseline_3x_frames": 99 + }, + "ep98": { + "bucket": "review", + "action_variance": 102.596286, + "reason": "score 102.596286 between thresholds", + "frames_in": 258, + "frames_out": 87, + "ratio": 0.337, + "gripper_forced": 34, + "baseline_3x_frames": 87 + }, + "ep99": { + "bucket": "review", + "action_variance": 96.958528, + "reason": "score 96.958528 between thresholds", + "frames_in": 275, + "frames_out": 94, + "ratio": 0.342, + "gripper_forced": 37, + "baseline_3x_frames": 93 + } + }, + "worst_clusters": [ + { + "anchor": 9473, + "size": 8, + "variance": 246.395488, + "episodes": [ + "ep31", + "ep99" + ] + }, + { + "anchor": 3611, + "size": 59, + "variance": 220.120033, + "episodes": [ + "ep15", + "ep3", + "ep43", + "ep44", + "ep56", + "ep57", + "ep59", + "ep76", + "ep81", + "ep84", + "ep9", + "ep97", + "ep98" + ] + }, + { + "anchor": 3143, + "size": 42, + "variance": 217.179093, + "episodes": [ + "ep11", + "ep25", + "ep29", + "ep30", + "ep33", + "ep34", + "ep36", + "ep39", + "ep42", + "ep47", + "ep58", + "ep61", + "ep62" + ] + }, + { + "anchor": 6855, + "size": 45, + "variance": 216.99244, + "episodes": [ + "ep0", + "ep26", + "ep58", + "ep62", + "ep64", + "ep69", + "ep73", + "ep74", + "ep75", + "ep78", + "ep79", + "ep82", + "ep86", + "ep91", + "ep93" + ] + }, + { + "anchor": 6166, + "size": 33, + "variance": 216.888923, + "episodes": [ + "ep37", + "ep56", + "ep59", + "ep60", + "ep67" + ] + } + ], + "note": "TEST-GRADE: implemented from paper Eq.9 (no official code exists); scores are relative within-dataset, not calibrated absolutes." +} \ No newline at end of file diff --git a/std_results/out/scores_isr.json b/std_results/out/scores_isr.json new file mode 100644 index 0000000000000000000000000000000000000000..5341a1dc7548441202699af67768ad57103e5a11 --- /dev/null +++ b/std_results/out/scores_isr.json @@ -0,0 +1,660 @@ +{ + "input": "isr", + "knobs": { + "eps": 0.5, + "min_cluster": 2 + }, + "note": "TEST-GRADE: implemented from paper Eq.9 (no official code exists); scores are relative within-dataset, not calibrated absolutes.", + "dataset_action_variance": 94.331717, + "per_episode": { + "ep0": { + "score": 95.00202, + "scored_points": 90, + "total_points": 90 + }, + "ep1": { + "score": 98.542921, + "scored_points": 100, + "total_points": 100 + }, + "ep10": { + "score": 86.822551, + "scored_points": 84, + "total_points": 84 + }, + "ep11": { + "score": 109.425817, + "scored_points": 106, + "total_points": 106 + }, + "ep12": { + "score": 74.25414, + "scored_points": 76, + "total_points": 78 + }, + "ep13": { + "score": 96.884807, + "scored_points": 88, + "total_points": 88 + }, + "ep14": { + "score": 94.266214, + "scored_points": 94, + "total_points": 94 + }, + "ep15": { + "score": 107.531641, + "scored_points": 90, + "total_points": 90 + }, + "ep16": { + "score": 88.997119, + "scored_points": 94, + "total_points": 94 + }, + "ep17": { + "score": 96.073974, + "scored_points": 89, + "total_points": 89 + }, + "ep18": { + "score": 85.056971, + "scored_points": 90, + "total_points": 90 + }, + "ep19": { + "score": 76.398572, + "scored_points": 91, + "total_points": 92 + }, + "ep2": { + "score": 97.759605, + "scored_points": 102, + "total_points": 102 + }, + "ep20": { + "score": 90.003539, + "scored_points": 87, + "total_points": 87 + }, + "ep21": { + "score": 82.76177, + "scored_points": 95, + "total_points": 95 + }, + "ep22": { + "score": 86.214835, + "scored_points": 95, + "total_points": 95 + }, + "ep23": { + "score": 80.652655, + "scored_points": 101, + "total_points": 101 + }, + "ep24": { + "score": 86.160269, + "scored_points": 93, + "total_points": 93 + }, + "ep25": { + "score": 97.3509, + "scored_points": 99, + "total_points": 99 + }, + "ep26": { + "score": 98.255658, + "scored_points": 105, + "total_points": 105 + }, + "ep27": { + "score": 101.469679, + "scored_points": 87, + "total_points": 87 + }, + "ep28": { + "score": 90.517707, + "scored_points": 88, + "total_points": 90 + }, + "ep29": { + "score": 90.704959, + "scored_points": 97, + "total_points": 97 + }, + "ep3": { + "score": 95.036447, + "scored_points": 88, + "total_points": 88 + }, + "ep30": { + "score": 87.941692, + "scored_points": 96, + "total_points": 96 + }, + "ep31": { + "score": 84.305406, + "scored_points": 87, + "total_points": 87 + }, + "ep32": { + "score": 102.471456, + "scored_points": 93, + "total_points": 93 + }, + "ep33": { + "score": 100.84569, + "scored_points": 107, + "total_points": 109 + }, + "ep34": { + "score": 93.637763, + "scored_points": 103, + "total_points": 103 + }, + "ep35": { + "score": 85.282699, + "scored_points": 87, + "total_points": 87 + }, + "ep36": { + "score": 103.030825, + "scored_points": 89, + "total_points": 89 + }, + "ep37": { + "score": 102.886738, + "scored_points": 82, + "total_points": 82 + }, + "ep38": { + "score": 100.675921, + "scored_points": 107, + "total_points": 107 + }, + "ep39": { + "score": 95.803346, + "scored_points": 94, + "total_points": 94 + }, + "ep4": { + "score": 103.048067, + "scored_points": 86, + "total_points": 87 + }, + "ep40": { + "score": 94.477745, + "scored_points": 92, + "total_points": 92 + }, + "ep41": { + "score": 87.429431, + "scored_points": 103, + "total_points": 103 + }, + "ep42": { + "score": 106.57331, + "scored_points": 96, + "total_points": 96 + }, + "ep43": { + "score": 96.033853, + "scored_points": 95, + "total_points": 95 + }, + "ep44": { + "score": 91.420635, + "scored_points": 88, + "total_points": 88 + }, + "ep45": { + "score": 89.344375, + "scored_points": 96, + "total_points": 96 + }, + "ep46": { + "score": 83.684195, + "scored_points": 86, + "total_points": 86 + }, + "ep47": { + "score": 88.379073, + "scored_points": 87, + "total_points": 87 + }, + "ep48": { + "score": 96.227835, + "scored_points": 90, + "total_points": 90 + }, + "ep49": { + "score": 86.935652, + "scored_points": 99, + "total_points": 99 + }, + "ep5": { + "score": 84.137088, + "scored_points": 86, + "total_points": 87 + }, + "ep50": { + "score": 70.985933, + "scored_points": 99, + "total_points": 99 + }, + "ep51": { + "score": 87.512979, + "scored_points": 105, + "total_points": 107 + }, + "ep52": { + "score": 89.514193, + "scored_points": 114, + "total_points": 114 + }, + "ep53": { + "score": 101.537133, + "scored_points": 99, + "total_points": 99 + }, + "ep54": { + "score": 98.882785, + "scored_points": 96, + "total_points": 96 + }, + "ep55": { + "score": 83.593586, + "scored_points": 91, + "total_points": 92 + }, + "ep56": { + "score": 102.347671, + "scored_points": 99, + "total_points": 99 + }, + "ep57": { + "score": 96.379595, + "scored_points": 108, + "total_points": 108 + }, + "ep58": { + "score": 87.259524, + "scored_points": 99, + "total_points": 99 + }, + "ep59": { + "score": 98.66277, + "scored_points": 96, + "total_points": 96 + }, + "ep6": { + "score": 84.755776, + "scored_points": 93, + "total_points": 93 + }, + "ep60": { + "score": 91.115015, + "scored_points": 97, + "total_points": 97 + }, + "ep61": { + "score": 109.233537, + "scored_points": 92, + "total_points": 92 + }, + "ep62": { + "score": 98.924431, + "scored_points": 103, + "total_points": 103 + }, + "ep63": { + "score": 95.020739, + "scored_points": 114, + "total_points": 114 + }, + "ep64": { + "score": 93.329454, + "scored_points": 107, + "total_points": 107 + }, + "ep65": { + "score": 101.546281, + "scored_points": 110, + "total_points": 110 + }, + "ep66": { + "score": 102.983509, + "scored_points": 98, + "total_points": 98 + }, + "ep67": { + "score": 79.559885, + "scored_points": 116, + "total_points": 117 + }, + "ep68": { + "score": 96.681559, + "scored_points": 97, + "total_points": 97 + }, + "ep69": { + "score": 98.446122, + "scored_points": 102, + "total_points": 102 + }, + "ep7": { + "score": 107.264314, + "scored_points": 88, + "total_points": 88 + }, + "ep70": { + "score": 82.662634, + "scored_points": 91, + "total_points": 91 + }, + "ep71": { + "score": 112.835864, + "scored_points": 93, + "total_points": 93 + }, + "ep72": { + "score": 83.324836, + "scored_points": 85, + "total_points": 91 + }, + "ep73": { + "score": 90.955617, + "scored_points": 92, + "total_points": 93 + }, + "ep74": { + "score": 89.567266, + "scored_points": 87, + "total_points": 91 + }, + "ep75": { + "score": 101.71279, + "scored_points": 106, + "total_points": 106 + }, + "ep76": { + "score": 93.253093, + "scored_points": 107, + "total_points": 107 + }, + "ep77": { + "score": 83.533969, + "scored_points": 93, + "total_points": 93 + }, + "ep78": { + "score": 81.473739, + "scored_points": 90, + "total_points": 93 + }, + "ep79": { + "score": 84.682553, + "scored_points": 95, + "total_points": 96 + }, + "ep8": { + "score": 101.788392, + "scored_points": 89, + "total_points": 89 + }, + "ep80": { + "score": 92.940747, + "scored_points": 97, + "total_points": 97 + }, + "ep81": { + "score": 96.430211, + "scored_points": 101, + "total_points": 101 + }, + "ep82": { + "score": 99.165432, + "scored_points": 86, + "total_points": 88 + }, + "ep83": { + "score": 115.130011, + "scored_points": 85, + "total_points": 85 + }, + "ep84": { + "score": 103.389355, + "scored_points": 84, + "total_points": 84 + }, + "ep85": { + "score": 92.724798, + "scored_points": 103, + "total_points": 103 + }, + "ep86": { + "score": 108.47794, + "scored_points": 103, + "total_points": 103 + }, + "ep87": { + "score": 106.220467, + "scored_points": 90, + "total_points": 90 + }, + "ep88": { + "score": 90.151166, + "scored_points": 79, + "total_points": 80 + }, + "ep89": { + "score": 94.817476, + "scored_points": 87, + "total_points": 87 + }, + "ep9": { + "score": 90.439405, + "scored_points": 100, + "total_points": 100 + }, + "ep90": { + "score": 102.974245, + "scored_points": 95, + "total_points": 98 + }, + "ep91": { + "score": 88.066799, + "scored_points": 95, + "total_points": 95 + }, + "ep92": { + "score": 109.730327, + "scored_points": 89, + "total_points": 89 + }, + "ep93": { + "score": 95.470476, + "scored_points": 91, + "total_points": 91 + }, + "ep94": { + "score": 106.047394, + "scored_points": 89, + "total_points": 89 + }, + "ep95": { + "score": 102.336455, + "scored_points": 88, + "total_points": 89 + }, + "ep96": { + "score": 95.454522, + "scored_points": 93, + "total_points": 93 + }, + "ep97": { + "score": 89.351045, + "scored_points": 100, + "total_points": 100 + }, + "ep98": { + "score": 102.596286, + "scored_points": 87, + "total_points": 87 + }, + "ep99": { + "score": 96.958528, + "scored_points": 94, + "total_points": 94 + } + }, + "worst_clusters": [ + { + "anchor": 9473, + "size": 8, + "variance": 246.395488, + "episodes": [ + "ep31", + "ep99" + ] + }, + { + "anchor": 3611, + "size": 59, + "variance": 220.120033, + "episodes": [ + "ep15", + "ep3", + "ep43", + "ep44", + "ep56", + "ep57", + "ep59", + "ep76", + "ep81", + "ep84", + "ep9", + "ep97", + "ep98" + ] + }, + { + "anchor": 3143, + "size": 42, + "variance": 217.179093, + "episodes": [ + "ep11", + "ep25", + "ep29", + "ep30", + "ep33", + "ep34", + "ep36", + "ep39", + "ep42", + "ep47", + "ep58", + "ep61", + "ep62" + ] + }, + { + "anchor": 6855, + "size": 45, + "variance": 216.99244, + "episodes": [ + "ep0", + "ep26", + "ep58", + "ep62", + "ep64", + "ep69", + "ep73", + "ep74", + "ep75", + "ep78", + "ep79", + "ep82", + "ep86", + "ep91", + "ep93" + ] + }, + { + "anchor": 6166, + "size": 33, + "variance": 216.888923, + "episodes": [ + "ep37", + "ep56", + "ep59", + "ep60", + "ep67" + ] + }, + { + "anchor": 7174, + "size": 6, + "variance": 215.234353, + "episodes": [ + "ep68", + "ep76" + ] + }, + { + "anchor": 7176, + "size": 7, + "variance": 214.096194, + "episodes": [ + "ep76", + "ep96" + ] + }, + { + "anchor": 6299, + "size": 34, + "variance": 213.455237, + "episodes": [ + "ep35", + "ep40", + "ep68", + "ep72", + "ep87", + "ep96" + ] + }, + { + "anchor": 3716, + "size": 62, + "variance": 212.550256, + "episodes": [ + "ep15", + "ep3", + "ep43", + "ep44", + "ep56", + "ep57", + "ep59", + "ep65", + "ep76", + "ep81", + "ep84", + "ep9", + "ep93", + "ep97", + "ep98" + ] + }, + { + "anchor": 2938, + "size": 8, + "variance": 211.061587, + "episodes": [ + "ep33", + "ep37", + "ep59", + "ep85" + ] + } + ] +} \ No newline at end of file diff --git a/std_results/out/scores_raw.json b/std_results/out/scores_raw.json new file mode 100644 index 0000000000000000000000000000000000000000..5fe807abfded3797ff0199e034fe03a743b58a98 --- /dev/null +++ b/std_results/out/scores_raw.json @@ -0,0 +1,664 @@ +{ + "input": "raw", + "knobs": { + "eps": 0.5, + "min_cluster": 2 + }, + "note": "TEST-GRADE: implemented from paper Eq.9 (no official code exists); scores are relative within-dataset, not calibrated absolutes.", + "dataset_action_variance": 89.807142, + "per_episode": { + "ep0": { + "score": 86.81147, + "scored_points": 270, + "total_points": 270 + }, + "ep1": { + "score": 85.446293, + "scored_points": 278, + "total_points": 278 + }, + "ep10": { + "score": 76.033035, + "scored_points": 241, + "total_points": 241 + }, + "ep11": { + "score": 94.371065, + "scored_points": 253, + "total_points": 253 + }, + "ep12": { + "score": 58.410363, + "scored_points": 304, + "total_points": 304 + }, + "ep13": { + "score": 84.338649, + "scored_points": 282, + "total_points": 282 + }, + "ep14": { + "score": 92.641715, + "scored_points": 272, + "total_points": 272 + }, + "ep15": { + "score": 98.101925, + "scored_points": 257, + "total_points": 257 + }, + "ep16": { + "score": 88.488101, + "scored_points": 255, + "total_points": 255 + }, + "ep17": { + "score": 88.48014, + "scored_points": 304, + "total_points": 304 + }, + "ep18": { + "score": 79.093761, + "scored_points": 317, + "total_points": 317 + }, + "ep19": { + "score": 72.769215, + "scored_points": 314, + "total_points": 314 + }, + "ep2": { + "score": 103.406071, + "scored_points": 300, + "total_points": 300 + }, + "ep20": { + "score": 79.103303, + "scored_points": 297, + "total_points": 297 + }, + "ep21": { + "score": 73.820294, + "scored_points": 281, + "total_points": 281 + }, + "ep22": { + "score": 81.775026, + "scored_points": 255, + "total_points": 255 + }, + "ep23": { + "score": 80.356488, + "scored_points": 278, + "total_points": 278 + }, + "ep24": { + "score": 83.348766, + "scored_points": 251, + "total_points": 251 + }, + "ep25": { + "score": 95.220908, + "scored_points": 266, + "total_points": 266 + }, + "ep26": { + "score": 96.067244, + "scored_points": 238, + "total_points": 238 + }, + "ep27": { + "score": 100.979283, + "scored_points": 262, + "total_points": 262 + }, + "ep28": { + "score": 89.230335, + "scored_points": 308, + "total_points": 308 + }, + "ep29": { + "score": 83.641057, + "scored_points": 270, + "total_points": 270 + }, + "ep3": { + "score": 91.383367, + "scored_points": 291, + "total_points": 291 + }, + "ep30": { + "score": 86.083411, + "scored_points": 275, + "total_points": 275 + }, + "ep31": { + "score": 84.795859, + "scored_points": 278, + "total_points": 278 + }, + "ep32": { + "score": 100.813031, + "scored_points": 273, + "total_points": 273 + }, + "ep33": { + "score": 85.617808, + "scored_points": 291, + "total_points": 291 + }, + "ep34": { + "score": 84.7752, + "scored_points": 266, + "total_points": 266 + }, + "ep35": { + "score": 86.533757, + "scored_points": 290, + "total_points": 290 + }, + "ep36": { + "score": 99.057732, + "scored_points": 282, + "total_points": 282 + }, + "ep37": { + "score": 84.864746, + "scored_points": 283, + "total_points": 283 + }, + "ep38": { + "score": 87.533476, + "scored_points": 286, + "total_points": 286 + }, + "ep39": { + "score": 86.861407, + "scored_points": 276, + "total_points": 276 + }, + "ep4": { + "score": 101.581291, + "scored_points": 292, + "total_points": 292 + }, + "ep40": { + "score": 82.75667, + "scored_points": 305, + "total_points": 305 + }, + "ep41": { + "score": 80.468435, + "scored_points": 286, + "total_points": 286 + }, + "ep42": { + "score": 100.257944, + "scored_points": 276, + "total_points": 276 + }, + "ep43": { + "score": 90.650397, + "scored_points": 270, + "total_points": 270 + }, + "ep44": { + "score": 82.375681, + "scored_points": 268, + "total_points": 268 + }, + "ep45": { + "score": 91.643396, + "scored_points": 274, + "total_points": 274 + }, + "ep46": { + "score": 74.41267, + "scored_points": 264, + "total_points": 264 + }, + "ep47": { + "score": 87.068898, + "scored_points": 260, + "total_points": 260 + }, + "ep48": { + "score": 83.635761, + "scored_points": 238, + "total_points": 238 + }, + "ep49": { + "score": 89.245707, + "scored_points": 246, + "total_points": 246 + }, + "ep5": { + "score": 84.583691, + "scored_points": 337, + "total_points": 337 + }, + "ep50": { + "score": 65.718189, + "scored_points": 352, + "total_points": 352 + }, + "ep51": { + "score": 84.047885, + "scored_points": 292, + "total_points": 292 + }, + "ep52": { + "score": 81.087957, + "scored_points": 301, + "total_points": 301 + }, + "ep53": { + "score": 104.002432, + "scored_points": 284, + "total_points": 284 + }, + "ep54": { + "score": 98.453033, + "scored_points": 279, + "total_points": 279 + }, + "ep55": { + "score": 76.302381, + "scored_points": 293, + "total_points": 293 + }, + "ep56": { + "score": 97.036988, + "scored_points": 288, + "total_points": 288 + }, + "ep57": { + "score": 83.140093, + "scored_points": 333, + "total_points": 333 + }, + "ep58": { + "score": 82.231979, + "scored_points": 272, + "total_points": 272 + }, + "ep59": { + "score": 100.386918, + "scored_points": 289, + "total_points": 289 + }, + "ep6": { + "score": 78.056289, + "scored_points": 254, + "total_points": 254 + }, + "ep60": { + "score": 78.676556, + "scored_points": 303, + "total_points": 303 + }, + "ep61": { + "score": 108.671679, + "scored_points": 275, + "total_points": 275 + }, + "ep62": { + "score": 93.260802, + "scored_points": 277, + "total_points": 277 + }, + "ep63": { + "score": 97.635294, + "scored_points": 278, + "total_points": 278 + }, + "ep64": { + "score": 93.758359, + "scored_points": 305, + "total_points": 305 + }, + "ep65": { + "score": 106.038346, + "scored_points": 309, + "total_points": 309 + }, + "ep66": { + "score": 98.792953, + "scored_points": 292, + "total_points": 292 + }, + "ep67": { + "score": 84.51903, + "scored_points": 285, + "total_points": 285 + }, + "ep68": { + "score": 93.874001, + "scored_points": 284, + "total_points": 284 + }, + "ep69": { + "score": 98.908828, + "scored_points": 255, + "total_points": 255 + }, + "ep7": { + "score": 89.834963, + "scored_points": 284, + "total_points": 284 + }, + "ep70": { + "score": 80.958281, + "scored_points": 285, + "total_points": 285 + }, + "ep71": { + "score": 106.877959, + "scored_points": 327, + "total_points": 327 + }, + "ep72": { + "score": 80.027406, + "scored_points": 338, + "total_points": 338 + }, + "ep73": { + "score": 94.253971, + "scored_points": 346, + "total_points": 346 + }, + "ep74": { + "score": 73.597519, + "scored_points": 363, + "total_points": 363 + }, + "ep75": { + "score": 106.982201, + "scored_points": 326, + "total_points": 326 + }, + "ep76": { + "score": 100.992822, + "scored_points": 328, + "total_points": 328 + }, + "ep77": { + "score": 87.040534, + "scored_points": 319, + "total_points": 319 + }, + "ep78": { + "score": 86.257002, + "scored_points": 349, + "total_points": 349 + }, + "ep79": { + "score": 80.210512, + "scored_points": 331, + "total_points": 331 + }, + "ep8": { + "score": 92.908468, + "scored_points": 318, + "total_points": 318 + }, + "ep80": { + "score": 94.248841, + "scored_points": 319, + "total_points": 319 + }, + "ep81": { + "score": 93.176061, + "scored_points": 307, + "total_points": 307 + }, + "ep82": { + "score": 97.04768, + "scored_points": 302, + "total_points": 302 + }, + "ep83": { + "score": 108.40709, + "scored_points": 328, + "total_points": 328 + }, + "ep84": { + "score": 90.165784, + "scored_points": 304, + "total_points": 304 + }, + "ep85": { + "score": 79.984541, + "scored_points": 299, + "total_points": 299 + }, + "ep86": { + "score": 103.039802, + "scored_points": 261, + "total_points": 261 + }, + "ep87": { + "score": 103.799795, + "scored_points": 258, + "total_points": 258 + }, + "ep88": { + "score": 87.321289, + "scored_points": 283, + "total_points": 283 + }, + "ep89": { + "score": 89.804597, + "scored_points": 307, + "total_points": 307 + }, + "ep9": { + "score": 91.266832, + "scored_points": 263, + "total_points": 263 + }, + "ep90": { + "score": 102.714733, + "scored_points": 327, + "total_points": 327 + }, + "ep91": { + "score": 83.262167, + "scored_points": 302, + "total_points": 302 + }, + "ep92": { + "score": 99.753066, + "scored_points": 279, + "total_points": 279 + }, + "ep93": { + "score": 91.043398, + "scored_points": 278, + "total_points": 278 + }, + "ep94": { + "score": 107.888382, + "scored_points": 308, + "total_points": 308 + }, + "ep95": { + "score": 93.411284, + "scored_points": 295, + "total_points": 295 + }, + "ep96": { + "score": 102.163276, + "scored_points": 328, + "total_points": 328 + }, + "ep97": { + "score": 90.055705, + "scored_points": 293, + "total_points": 293 + }, + "ep98": { + "score": 93.219958, + "scored_points": 258, + "total_points": 258 + }, + "ep99": { + "score": 100.646563, + "scored_points": 275, + "total_points": 275 + } + }, + "worst_clusters": [ + { + "anchor": 2581, + "size": 23, + "variance": 321.268309, + "episodes": [ + "ep17", + "ep47", + "ep6", + "ep65" + ] + }, + { + "anchor": 5584, + "size": 42, + "variance": 308.443823, + "episodes": [ + "ep14", + "ep17", + "ep22", + "ep24", + "ep25", + "ep27", + "ep32", + "ep91" + ] + }, + { + "anchor": 9342, + "size": 91, + "variance": 302.274277, + "episodes": [ + "ep11", + "ep29", + "ep30", + "ep34", + "ep35", + "ep36", + "ep39", + "ep4", + "ep47", + "ep58", + "ep61" + ] + }, + { + "anchor": 2582, + "size": 23, + "variance": 300.729663, + "episodes": [ + "ep17", + "ep47", + "ep6", + "ep65" + ] + }, + { + "anchor": 5586, + "size": 40, + "variance": 295.259832, + "episodes": [ + "ep14", + "ep17", + "ep22", + "ep27", + "ep32", + "ep91" + ] + }, + { + "anchor": 24766, + "size": 36, + "variance": 295.218185, + "episodes": [ + "ep0", + "ep22", + "ep36", + "ep39", + "ep58", + "ep86", + "ep93", + "ep98" + ] + }, + { + "anchor": 5585, + "size": 39, + "variance": 293.082484, + "episodes": [ + "ep14", + "ep17", + "ep22", + "ep24", + "ep27", + "ep32", + "ep91" + ] + }, + { + "anchor": 27312, + "size": 46, + "variance": 288.777087, + "episodes": [ + "ep50", + "ep64", + "ep94" + ] + }, + { + "anchor": 8215, + "size": 61, + "variance": 288.270954, + "episodes": [ + "ep29", + "ep3", + "ep30", + "ep34", + "ep35", + "ep36", + "ep39", + "ep40", + "ep58", + "ep61", + "ep73", + "ep86" + ] + }, + { + "anchor": 8210, + "size": 85, + "variance": 287.235612, + "episodes": [ + "ep13", + "ep26", + "ep33", + "ep35", + "ep37", + "ep38", + "ep39", + "ep40", + "ep43", + "ep46", + "ep48", + "ep53", + "ep57", + "ep61", + "ep74", + "ep85", + "ep86", + "ep9" + ] + } + ] +} \ No newline at end of file diff --git a/std_results/run.log b/std_results/run.log new file mode 100644 index 0000000000000000000000000000000000000000..130f017c27cc351b98580748c79d9905b807e056 --- /dev/null +++ b/std_results/run.log @@ -0,0 +1,431 @@ + +━━ ISR --d-target 12.0 --lambda-acc 0.002 --baseline 3 --gripper-threshold 2.0 ━━ + ep0: 270 -> 90 frames (33% kept, 39 gripper-forced) + ep1: 278 -> 100 frames (36% kept, 39 gripper-forced) + ep10: 241 -> 84 frames (35% kept, 37 gripper-forced) + ep11: 253 -> 106 frames (42% kept, 66 gripper-forced) + ep12: 304 -> 78 frames (26% kept, 24 gripper-forced) + ep13: 282 -> 88 frames (31% kept, 44 gripper-forced) + ep14: 272 -> 94 frames (35% kept, 46 gripper-forced) + ep15: 257 -> 90 frames (35% kept, 46 gripper-forced) + ep16: 255 -> 94 frames (37% kept, 41 gripper-forced) + ep17: 304 -> 89 frames (29% kept, 34 gripper-forced) + ep18: 317 -> 90 frames (28% kept, 29 gripper-forced) + ep19: 314 -> 92 frames (29% kept, 39 gripper-forced) + ep2: 300 -> 102 frames (34% kept, 39 gripper-forced) + ep20: 297 -> 87 frames (29% kept, 27 gripper-forced) + ep21: 281 -> 95 frames (34% kept, 45 gripper-forced) + ep22: 255 -> 95 frames (37% kept, 42 gripper-forced) + ep23: 278 -> 101 frames (36% kept, 44 gripper-forced) + ep24: 251 -> 93 frames (37% kept, 40 gripper-forced) + ep25: 266 -> 99 frames (37% kept, 48 gripper-forced) + ep26: 238 -> 105 frames (44% kept, 63 gripper-forced) + ep27: 262 -> 87 frames (33% kept, 36 gripper-forced) + ep28: 308 -> 90 frames (29% kept, 37 gripper-forced) + ep29: 270 -> 97 frames (36% kept, 40 gripper-forced) + ep3: 291 -> 88 frames (30% kept, 33 gripper-forced) + ep30: 275 -> 96 frames (35% kept, 40 gripper-forced) + ep31: 278 -> 87 frames (31% kept, 36 gripper-forced) + ep32: 273 -> 93 frames (34% kept, 42 gripper-forced) + ep33: 291 -> 109 frames (37% kept, 65 gripper-forced) + ep34: 266 -> 103 frames (39% kept, 60 gripper-forced) + ep35: 290 -> 87 frames (30% kept, 39 gripper-forced) + ep36: 282 -> 89 frames (32% kept, 42 gripper-forced) + ep37: 283 -> 82 frames (29% kept, 39 gripper-forced) + ep38: 286 -> 107 frames (37% kept, 68 gripper-forced) + ep39: 276 -> 94 frames (34% kept, 47 gripper-forced) + ep4: 292 -> 87 frames (30% kept, 35 gripper-forced) + ep40: 305 -> 92 frames (30% kept, 45 gripper-forced) + ep41: 286 -> 103 frames (36% kept, 62 gripper-forced) + ep42: 276 -> 96 frames (35% kept, 49 gripper-forced) + ep43: 270 -> 95 frames (35% kept, 43 gripper-forced) + ep44: 268 -> 88 frames (33% kept, 35 gripper-forced) + ep45: 274 -> 96 frames (35% kept, 46 gripper-forced) + ep46: 264 -> 86 frames (33% kept, 40 gripper-forced) + ep47: 260 -> 87 frames (33% kept, 39 gripper-forced) + ep48: 238 -> 90 frames (38% kept, 53 gripper-forced) + ep49: 246 -> 99 frames (40% kept, 46 gripper-forced) + ep5: 337 -> 87 frames (26% kept, 37 gripper-forced) + ep50: 352 -> 99 frames (28% kept, 40 gripper-forced) + ep51: 292 -> 107 frames (37% kept, 51 gripper-forced) + ep52: 301 -> 114 frames (38% kept, 62 gripper-forced) + ep53: 284 -> 99 frames (35% kept, 50 gripper-forced) + ep54: 279 -> 96 frames (34% kept, 43 gripper-forced) + ep55: 293 -> 92 frames (31% kept, 36 gripper-forced) + ep56: 288 -> 99 frames (34% kept, 54 gripper-forced) + ep57: 333 -> 108 frames (32% kept, 46 gripper-forced) + ep58: 272 -> 99 frames (36% kept, 46 gripper-forced) + ep59: 289 -> 96 frames (33% kept, 42 gripper-forced) + ep6: 254 -> 93 frames (37% kept, 45 gripper-forced) + ep60: 303 -> 97 frames (32% kept, 40 gripper-forced) + ep61: 275 -> 92 frames (33% kept, 41 gripper-forced) + ep62: 277 -> 103 frames (37% kept, 51 gripper-forced) + ep63: 278 -> 114 frames (41% kept, 66 gripper-forced) + ep64: 305 -> 107 frames (35% kept, 57 gripper-forced) + ep65: 309 -> 110 frames (36% kept, 53 gripper-forced) + ep66: 292 -> 98 frames (34% kept, 40 gripper-forced) + ep67: 285 -> 117 frames (41% kept, 67 gripper-forced) + ep68: 284 -> 97 frames (34% kept, 43 gripper-forced) + ep69: 255 -> 102 frames (40% kept, 62 gripper-forced) + ep7: 284 -> 88 frames (31% kept, 40 gripper-forced) + ep70: 285 -> 91 frames (32% kept, 36 gripper-forced) + ep71: 327 -> 93 frames (28% kept, 42 gripper-forced) + ep72: 338 -> 91 frames (27% kept, 35 gripper-forced) + ep73: 346 -> 93 frames (27% kept, 35 gripper-forced) + ep74: 363 -> 91 frames (25% kept, 21 gripper-forced) + ep75: 326 -> 106 frames (33% kept, 47 gripper-forced) + ep76: 328 -> 107 frames (33% kept, 40 gripper-forced) + ep77: 319 -> 93 frames (29% kept, 35 gripper-forced) + ep78: 349 -> 93 frames (27% kept, 35 gripper-forced) + ep79: 331 -> 96 frames (29% kept, 30 gripper-forced) + ep8: 318 -> 89 frames (28% kept, 36 gripper-forced) + ep80: 319 -> 97 frames (30% kept, 34 gripper-forced) + ep81: 307 -> 101 frames (33% kept, 38 gripper-forced) + ep82: 302 -> 88 frames (29% kept, 35 gripper-forced) + ep83: 328 -> 85 frames (26% kept, 29 gripper-forced) + ep84: 304 -> 84 frames (28% kept, 35 gripper-forced) + ep85: 299 -> 103 frames (34% kept, 45 gripper-forced) + ep86: 261 -> 103 frames (39% kept, 61 gripper-forced) + ep87: 258 -> 90 frames (35% kept, 41 gripper-forced) + ep88: 283 -> 80 frames (28% kept, 25 gripper-forced) + ep89: 307 -> 87 frames (28% kept, 33 gripper-forced) + ep9: 263 -> 100 frames (38% kept, 47 gripper-forced) + ep90: 327 -> 98 frames (30% kept, 38 gripper-forced) + ep91: 302 -> 95 frames (31% kept, 35 gripper-forced) + ep92: 279 -> 89 frames (32% kept, 39 gripper-forced) + ep93: 278 -> 91 frames (33% kept, 38 gripper-forced) + ep94: 308 -> 89 frames (29% kept, 33 gripper-forced) + ep95: 295 -> 89 frames (30% kept, 37 gripper-forced) + ep96: 328 -> 93 frames (28% kept, 35 gripper-forced) + ep97: 293 -> 100 frames (34% kept, 40 gripper-forced) + ep98: 258 -> 87 frames (34% kept, 34 gripper-forced) + ep99: 275 -> 94 frames (34% kept, 37 gripper-forced) +wrote /workspace/std_mm_teleop/out/isr/stats.json + +━━ score raw --input raw --eps 0.5 ━━ +input=raw eps=0.5 + ep0: score=86.81147 (270/270 points in clusters) + ep1: score=85.446293 (278/278 points in clusters) + ep10: score=76.033035 (241/241 points in clusters) + ep11: score=94.371065 (253/253 points in clusters) + ep12: score=58.410363 (304/304 points in clusters) + ep13: score=84.338649 (282/282 points in clusters) + ep14: score=92.641715 (272/272 points in clusters) + ep15: score=98.101925 (257/257 points in clusters) + ep16: score=88.488101 (255/255 points in clusters) + ep17: score=88.48014 (304/304 points in clusters) + ep18: score=79.093761 (317/317 points in clusters) + ep19: score=72.769215 (314/314 points in clusters) + ep2: score=103.406071 (300/300 points in clusters) + ep20: score=79.103303 (297/297 points in clusters) + ep21: score=73.820294 (281/281 points in clusters) + ep22: score=81.775026 (255/255 points in clusters) + ep23: score=80.356488 (278/278 points in clusters) + ep24: score=83.348766 (251/251 points in clusters) + ep25: score=95.220908 (266/266 points in clusters) + ep26: score=96.067244 (238/238 points in clusters) + ep27: score=100.979283 (262/262 points in clusters) + ep28: score=89.230335 (308/308 points in clusters) + ep29: score=83.641057 (270/270 points in clusters) + ep3: score=91.383367 (291/291 points in clusters) + ep30: score=86.083411 (275/275 points in clusters) + ep31: score=84.795859 (278/278 points in clusters) + ep32: score=100.813031 (273/273 points in clusters) + ep33: score=85.617808 (291/291 points in clusters) + ep34: score=84.7752 (266/266 points in clusters) + ep35: score=86.533757 (290/290 points in clusters) + ep36: score=99.057732 (282/282 points in clusters) + ep37: score=84.864746 (283/283 points in clusters) + ep38: score=87.533476 (286/286 points in clusters) + ep39: score=86.861407 (276/276 points in clusters) + ep4: score=101.581291 (292/292 points in clusters) + ep40: score=82.75667 (305/305 points in clusters) + ep41: score=80.468435 (286/286 points in clusters) + ep42: score=100.257944 (276/276 points in clusters) + ep43: score=90.650397 (270/270 points in clusters) + ep44: score=82.375681 (268/268 points in clusters) + ep45: score=91.643396 (274/274 points in clusters) + ep46: score=74.41267 (264/264 points in clusters) + ep47: score=87.068898 (260/260 points in clusters) + ep48: score=83.635761 (238/238 points in clusters) + ep49: score=89.245707 (246/246 points in clusters) + ep5: score=84.583691 (337/337 points in clusters) + ep50: score=65.718189 (352/352 points in clusters) + ep51: score=84.047885 (292/292 points in clusters) + ep52: score=81.087957 (301/301 points in clusters) + ep53: score=104.002432 (284/284 points in clusters) + ep54: score=98.453033 (279/279 points in clusters) + ep55: score=76.302381 (293/293 points in clusters) + ep56: score=97.036988 (288/288 points in clusters) + ep57: score=83.140093 (333/333 points in clusters) + ep58: score=82.231979 (272/272 points in clusters) + ep59: score=100.386918 (289/289 points in clusters) + ep6: score=78.056289 (254/254 points in clusters) + ep60: score=78.676556 (303/303 points in clusters) + ep61: score=108.671679 (275/275 points in clusters) + ep62: score=93.260802 (277/277 points in clusters) + ep63: score=97.635294 (278/278 points in clusters) + ep64: score=93.758359 (305/305 points in clusters) + ep65: score=106.038346 (309/309 points in clusters) + ep66: score=98.792953 (292/292 points in clusters) + ep67: score=84.51903 (285/285 points in clusters) + ep68: score=93.874001 (284/284 points in clusters) + ep69: score=98.908828 (255/255 points in clusters) + ep7: score=89.834963 (284/284 points in clusters) + ep70: score=80.958281 (285/285 points in clusters) + ep71: score=106.877959 (327/327 points in clusters) + ep72: score=80.027406 (338/338 points in clusters) + ep73: score=94.253971 (346/346 points in clusters) + ep74: score=73.597519 (363/363 points in clusters) + ep75: score=106.982201 (326/326 points in clusters) + ep76: score=100.992822 (328/328 points in clusters) + ep77: score=87.040534 (319/319 points in clusters) + ep78: score=86.257002 (349/349 points in clusters) + ep79: score=80.210512 (331/331 points in clusters) + ep8: score=92.908468 (318/318 points in clusters) + ep80: score=94.248841 (319/319 points in clusters) + ep81: score=93.176061 (307/307 points in clusters) + ep82: score=97.04768 (302/302 points in clusters) + ep83: score=108.40709 (328/328 points in clusters) + ep84: score=90.165784 (304/304 points in clusters) + ep85: score=79.984541 (299/299 points in clusters) + ep86: score=103.039802 (261/261 points in clusters) + ep87: score=103.799795 (258/258 points in clusters) + ep88: score=87.321289 (283/283 points in clusters) + ep89: score=89.804597 (307/307 points in clusters) + ep9: score=91.266832 (263/263 points in clusters) + ep90: score=102.714733 (327/327 points in clusters) + ep91: score=83.262167 (302/302 points in clusters) + ep92: score=99.753066 (279/279 points in clusters) + ep93: score=91.043398 (278/278 points in clusters) + ep94: score=107.888382 (308/308 points in clusters) + ep95: score=93.411284 (295/295 points in clusters) + ep96: score=102.163276 (328/328 points in clusters) + ep97: score=90.055705 (293/293 points in clusters) + ep98: score=93.219958 (258/258 points in clusters) + ep99: score=100.646563 (275/275 points in clusters) + dataset: 89.807142 +wrote /workspace/std_mm_teleop/out/scores_raw.json + +━━ score isr --input isr --eps 0.5 ━━ +input=isr eps=0.5 + ep0: score=95.00202 (90/90 points in clusters) + ep1: score=98.542921 (100/100 points in clusters) + ep10: score=86.822551 (84/84 points in clusters) + ep11: score=109.425817 (106/106 points in clusters) + ep12: score=74.25414 (76/78 points in clusters) + ep13: score=96.884807 (88/88 points in clusters) + ep14: score=94.266214 (94/94 points in clusters) + ep15: score=107.531641 (90/90 points in clusters) + ep16: score=88.997119 (94/94 points in clusters) + ep17: score=96.073974 (89/89 points in clusters) + ep18: score=85.056971 (90/90 points in clusters) + ep19: score=76.398572 (91/92 points in clusters) + ep2: score=97.759605 (102/102 points in clusters) + ep20: score=90.003539 (87/87 points in clusters) + ep21: score=82.76177 (95/95 points in clusters) + ep22: score=86.214835 (95/95 points in clusters) + ep23: score=80.652655 (101/101 points in clusters) + ep24: score=86.160269 (93/93 points in clusters) + ep25: score=97.3509 (99/99 points in clusters) + ep26: score=98.255658 (105/105 points in clusters) + ep27: score=101.469679 (87/87 points in clusters) + ep28: score=90.517707 (88/90 points in clusters) + ep29: score=90.704959 (97/97 points in clusters) + ep3: score=95.036447 (88/88 points in clusters) + ep30: score=87.941692 (96/96 points in clusters) + ep31: score=84.305406 (87/87 points in clusters) + ep32: score=102.471456 (93/93 points in clusters) + ep33: score=100.84569 (107/109 points in clusters) + ep34: score=93.637763 (103/103 points in clusters) + ep35: score=85.282699 (87/87 points in clusters) + ep36: score=103.030825 (89/89 points in clusters) + ep37: score=102.886738 (82/82 points in clusters) + ep38: score=100.675921 (107/107 points in clusters) + ep39: score=95.803346 (94/94 points in clusters) + ep4: score=103.048067 (86/87 points in clusters) + ep40: score=94.477745 (92/92 points in clusters) + ep41: score=87.429431 (103/103 points in clusters) + ep42: score=106.57331 (96/96 points in clusters) + ep43: score=96.033853 (95/95 points in clusters) + ep44: score=91.420635 (88/88 points in clusters) + ep45: score=89.344375 (96/96 points in clusters) + ep46: score=83.684195 (86/86 points in clusters) + ep47: score=88.379073 (87/87 points in clusters) + ep48: score=96.227835 (90/90 points in clusters) + ep49: score=86.935652 (99/99 points in clusters) + ep5: score=84.137088 (86/87 points in clusters) + ep50: score=70.985933 (99/99 points in clusters) + ep51: score=87.512979 (105/107 points in clusters) + ep52: score=89.514193 (114/114 points in clusters) + ep53: score=101.537133 (99/99 points in clusters) + ep54: score=98.882785 (96/96 points in clusters) + ep55: score=83.593586 (91/92 points in clusters) + ep56: score=102.347671 (99/99 points in clusters) + ep57: score=96.379595 (108/108 points in clusters) + ep58: score=87.259524 (99/99 points in clusters) + ep59: score=98.66277 (96/96 points in clusters) + ep6: score=84.755776 (93/93 points in clusters) + ep60: score=91.115015 (97/97 points in clusters) + ep61: score=109.233537 (92/92 points in clusters) + ep62: score=98.924431 (103/103 points in clusters) + ep63: score=95.020739 (114/114 points in clusters) + ep64: score=93.329454 (107/107 points in clusters) + ep65: score=101.546281 (110/110 points in clusters) + ep66: score=102.983509 (98/98 points in clusters) + ep67: score=79.559885 (116/117 points in clusters) + ep68: score=96.681559 (97/97 points in clusters) + ep69: score=98.446122 (102/102 points in clusters) + ep7: score=107.264314 (88/88 points in clusters) + ep70: score=82.662634 (91/91 points in clusters) + ep71: score=112.835864 (93/93 points in clusters) + ep72: score=83.324836 (85/91 points in clusters) + ep73: score=90.955617 (92/93 points in clusters) + ep74: score=89.567266 (87/91 points in clusters) + ep75: score=101.71279 (106/106 points in clusters) + ep76: score=93.253093 (107/107 points in clusters) + ep77: score=83.533969 (93/93 points in clusters) + ep78: score=81.473739 (90/93 points in clusters) + ep79: score=84.682553 (95/96 points in clusters) + ep8: score=101.788392 (89/89 points in clusters) + ep80: score=92.940747 (97/97 points in clusters) + ep81: score=96.430211 (101/101 points in clusters) + ep82: score=99.165432 (86/88 points in clusters) + ep83: score=115.130011 (85/85 points in clusters) + ep84: score=103.389355 (84/84 points in clusters) + ep85: score=92.724798 (103/103 points in clusters) + ep86: score=108.47794 (103/103 points in clusters) + ep87: score=106.220467 (90/90 points in clusters) + ep88: score=90.151166 (79/80 points in clusters) + ep89: score=94.817476 (87/87 points in clusters) + ep9: score=90.439405 (100/100 points in clusters) + ep90: score=102.974245 (95/98 points in clusters) + ep91: score=88.066799 (95/95 points in clusters) + ep92: score=109.730327 (89/89 points in clusters) + ep93: score=95.470476 (91/91 points in clusters) + ep94: score=106.047394 (89/89 points in clusters) + ep95: score=102.336455 (88/89 points in clusters) + ep96: score=95.454522 (93/93 points in clusters) + ep97: score=89.351045 (100/100 points in clusters) + ep98: score=102.596286 (87/87 points in clusters) + ep99: score=96.958528 (94/94 points in clusters) + dataset: 94.331717 +wrote /workspace/std_mm_teleop/out/scores_isr.json + +━━ bucket ━━ + ep0: TRAIN (score 95.00202 ≤ train threshold 95.01138) + ep1: REVIEW (score 98.542921 between thresholds) + ep10: TRAIN (score 86.822551 ≤ train threshold 95.01138) + ep11: QUARANTINE (score 109.425817 ≥ quarantine threshold 106.064701) + ep12: TRAIN (score 74.25414 ≤ train threshold 95.01138) + ep13: REVIEW (score 96.884807 between thresholds) + ep14: TRAIN (score 94.266214 ≤ train threshold 95.01138) + ep15: QUARANTINE (score 107.531641 ≥ quarantine threshold 106.064701) + ep16: TRAIN (score 88.997119 ≤ train threshold 95.01138) + ep17: REVIEW (score 96.073974 between thresholds) + ep18: TRAIN (score 85.056971 ≤ train threshold 95.01138) + ep19: TRAIN (score 76.398572 ≤ train threshold 95.01138) + ep2: REVIEW (score 97.759605 between thresholds) + ep20: TRAIN (score 90.003539 ≤ train threshold 95.01138) + ep21: TRAIN (score 82.76177 ≤ train threshold 95.01138) + ep22: TRAIN (score 86.214835 ≤ train threshold 95.01138) + ep23: TRAIN (score 80.652655 ≤ train threshold 95.01138) + ep24: TRAIN (score 86.160269 ≤ train threshold 95.01138) + ep25: REVIEW (score 97.3509 between thresholds) + ep26: REVIEW (score 98.255658 between thresholds) + ep27: REVIEW (score 101.469679 between thresholds) + ep28: TRAIN (score 90.517707 ≤ train threshold 95.01138) + ep29: TRAIN (score 90.704959 ≤ train threshold 95.01138) + ep3: REVIEW (score 95.036447 between thresholds) + ep30: TRAIN (score 87.941692 ≤ train threshold 95.01138) + ep31: TRAIN (score 84.305406 ≤ train threshold 95.01138) + ep32: REVIEW (score 102.471456 between thresholds) + ep33: REVIEW (score 100.84569 between thresholds) + ep34: TRAIN (score 93.637763 ≤ train threshold 95.01138) + ep35: TRAIN (score 85.282699 ≤ train threshold 95.01138) + ep36: REVIEW (score 103.030825 between thresholds) + ep37: REVIEW (score 102.886738 between thresholds) + ep38: REVIEW (score 100.675921 between thresholds) + ep39: REVIEW (score 95.803346 between thresholds) + ep4: REVIEW (score 103.048067 between thresholds) + ep40: TRAIN (score 94.477745 ≤ train threshold 95.01138) + ep41: TRAIN (score 87.429431 ≤ train threshold 95.01138) + ep42: QUARANTINE (score 106.57331 ≥ quarantine threshold 106.064701) + ep43: REVIEW (score 96.033853 between thresholds) + ep44: TRAIN (score 91.420635 ≤ train threshold 95.01138) + ep45: TRAIN (score 89.344375 ≤ train threshold 95.01138) + ep46: TRAIN (score 83.684195 ≤ train threshold 95.01138) + ep47: TRAIN (score 88.379073 ≤ train threshold 95.01138) + ep48: REVIEW (score 96.227835 between thresholds) + ep49: TRAIN (score 86.935652 ≤ train threshold 95.01138) + ep5: TRAIN (score 84.137088 ≤ train threshold 95.01138) + ep50: TRAIN (score 70.985933 ≤ train threshold 95.01138) + ep51: TRAIN (score 87.512979 ≤ train threshold 95.01138) + ep52: TRAIN (score 89.514193 ≤ train threshold 95.01138) + ep53: REVIEW (score 101.537133 between thresholds) + ep54: REVIEW (score 98.882785 between thresholds) + ep55: TRAIN (score 83.593586 ≤ train threshold 95.01138) + ep56: REVIEW (score 102.347671 between thresholds) + ep57: REVIEW (score 96.379595 between thresholds) + ep58: TRAIN (score 87.259524 ≤ train threshold 95.01138) + ep59: REVIEW (score 98.66277 between thresholds) + ep6: TRAIN (score 84.755776 ≤ train threshold 95.01138) + ep60: TRAIN (score 91.115015 ≤ train threshold 95.01138) + ep61: QUARANTINE (score 109.233537 ≥ quarantine threshold 106.064701) + ep62: REVIEW (score 98.924431 between thresholds) + ep63: REVIEW (score 95.020739 between thresholds) + ep64: TRAIN (score 93.329454 ≤ train threshold 95.01138) + ep65: REVIEW (score 101.546281 between thresholds) + ep66: REVIEW (score 102.983509 between thresholds) + ep67: TRAIN (score 79.559885 ≤ train threshold 95.01138) + ep68: REVIEW (score 96.681559 between thresholds) + ep69: REVIEW (score 98.446122 between thresholds) + ep7: QUARANTINE (score 107.264314 ≥ quarantine threshold 106.064701) + ep70: TRAIN (score 82.662634 ≤ train threshold 95.01138) + ep71: QUARANTINE (score 112.835864 ≥ quarantine threshold 106.064701) + ep72: TRAIN (score 83.324836 ≤ train threshold 95.01138) + ep73: TRAIN (score 90.955617 ≤ train threshold 95.01138) + ep74: TRAIN (score 89.567266 ≤ train threshold 95.01138) + ep75: REVIEW (score 101.71279 between thresholds) + ep76: TRAIN (score 93.253093 ≤ train threshold 95.01138) + ep77: TRAIN (score 83.533969 ≤ train threshold 95.01138) + ep78: TRAIN (score 81.473739 ≤ train threshold 95.01138) + ep79: TRAIN (score 84.682553 ≤ train threshold 95.01138) + ep8: REVIEW (score 101.788392 between thresholds) + ep80: TRAIN (score 92.940747 ≤ train threshold 95.01138) + ep81: REVIEW (score 96.430211 between thresholds) + ep82: REVIEW (score 99.165432 between thresholds) + ep83: QUARANTINE (score 115.130011 ≥ quarantine threshold 106.064701) + ep84: REVIEW (score 103.389355 between thresholds) + ep85: TRAIN (score 92.724798 ≤ train threshold 95.01138) + ep86: QUARANTINE (score 108.47794 ≥ quarantine threshold 106.064701) + ep87: QUARANTINE (score 106.220467 ≥ quarantine threshold 106.064701) + ep88: TRAIN (score 90.151166 ≤ train threshold 95.01138) + ep89: TRAIN (score 94.817476 ≤ train threshold 95.01138) + ep9: TRAIN (score 90.439405 ≤ train threshold 95.01138) + ep90: REVIEW (score 102.974245 between thresholds) + ep91: TRAIN (score 88.066799 ≤ train threshold 95.01138) + ep92: QUARANTINE (score 109.730327 ≥ quarantine threshold 106.064701) + ep93: REVIEW (score 95.470476 between thresholds) + ep94: REVIEW (score 106.047394 between thresholds) + ep95: REVIEW (score 102.336455 between thresholds) + ep96: REVIEW (score 95.454522 between thresholds) + ep97: TRAIN (score 89.351045 ≤ train threshold 95.01138) + ep98: REVIEW (score 102.596286 between thresholds) + ep99: REVIEW (score 96.958528 between thresholds) +counts: {'train': 50, 'review': 40, 'quarantine': 10} +wrote /workspace/std_mm_teleop/out/report.json + +━━ viz --max-episode-figs 12 ━━ +Traceback (most recent call last): + File "/workspace/teleop_std_poc/viz.py", line 243, in + ap = argparse.ArgumentParser(description="plots for the teleop standardization pipeline") +NameError: name 'argparse' is not defined +Traceback (most recent call last): + File "/workspace/teleop_std_poc/run_all.py", line 47, in + step("viz", ["viz.py", "--max-episode-figs", str(a.max_episode_figs)]) + File "/workspace/teleop_std_poc/run_all.py", line 21, in step + subprocess.run([sys.executable, str(HERE / args[0]), *args[1:]], check=True) + File "/usr/lib/python3.10/subprocess.py", line 526, in run + raise CalledProcessError(retcode, process.args, +subprocess.CalledProcessError: Command '['/workspace/.venv-tsp/bin/python', '/workspace/teleop_std_poc/viz.py', '--max-episode-figs', '12']' returned non-zero exit status 1. diff --git a/std_results/stats_compare.py b/std_results/stats_compare.py new file mode 100644 index 0000000000000000000000000000000000000000..ad04fc33bcbc62d55ad78b13fadc2d75b6430347 --- /dev/null +++ b/std_results/stats_compare.py @@ -0,0 +1,145 @@ +#!/usr/bin/env python3 +"""Dataset comparison card for two LeRobot v3.0 trees (the abc-teleop-style table). + +Every row is measured from the files, not read off a README: format/robot/rate/counts come from +meta, video shape+codec from ffprobe, and the action convention / gripper encoding rows are +computed from the parquet columns. + + python stats_compare.py --a NAME=/path/to/ds --b NAME=/path/to/ds [--json out.json] +""" +import argparse +import json +import subprocess +from pathlib import Path + +import numpy as np +import pyarrow.parquet as pq + + +def load_meta(root: Path) -> dict: + return json.loads((root / "meta" / "info.json").read_text()) + + +def read_frames(root: Path) -> dict: + files = sorted((root / "data").glob("*/*.parquet")) + tabs = [pq.read_table(f) for f in files] + cols = {} + for name in ("observation.state", "action", "episode_index", "timestamp", "task_index"): + vals = [t[name].to_pylist() for t in tabs if name in t.column_names] + flat = [x for v in vals for x in v] + arr = np.array([x[0] if isinstance(x, list) and len(x) == 1 and name != "observation.state" + and name != "action" else x for x in flat]) + cols[name] = arr + return cols + + +def ffprobe(path: Path) -> dict: + out = subprocess.run( + ["ffprobe", "-v", "error", "-select_streams", "v:0", "-show_entries", + "stream=codec_name,width,height,pix_fmt,avg_frame_rate,nb_frames", "-of", "json", str(path)], + capture_output=True, text=True).stdout + try: + return json.loads(out)["streams"][0] + except Exception: + return {} + + +def action_convention(state: np.ndarray, action: np.ndarray, ep: np.ndarray) -> dict: + """Is action[t] the next state (absolute target), the current state, or a lagging command?""" + res = {} + for lag in range(0, 7): + errs = [] + for e in np.unique(ep): + m = ep == e + s, a = state[m], action[m] + if len(s) <= lag + 1: + continue + errs.append(np.abs(a[: len(a) - lag] - s[lag:]).mean()) + res[lag] = float(np.mean(errs)) if errs else float("nan") + best = min(res, key=lambda k: res[k]) + return {"mae_vs_state_at_lag": {str(k): round(v, 4) for k, v in res.items()}, + "best_lag_frames": int(best), "best_lag_mae_deg": round(res[best], 4)} + + +def gripper_stats(state: np.ndarray, action: np.ndarray, names: list[str]) -> dict: + gi = [i for i, n in enumerate(names) if "gripper" in n] + if not gi: + return {} + g = state[:, gi[0]] + ga = action[:, gi[0]] + lo, hi = float(g.min()), float(g.max()) + span = hi - lo if hi > lo else 1.0 + norm = (g - lo) / span + return {"state_range": [round(lo, 3), round(hi, 3)], + "action_range": [round(float(ga.min()), 3), round(float(ga.max()), 3)], + "looks_normalized_01": bool(lo >= -0.01 and hi <= 1.01), + "mean": round(float(g.mean()), 3), + "mean_normalized": round(float(norm.mean()), 3), + "p05_p50_p95": [round(float(np.percentile(g, p)), 3) for p in (5, 50, 95)], + "pct_below_25pct_of_span": round(100 * float((norm < 0.25).mean()), 1), + "pct_above_75pct_of_span": round(100 * float((norm > 0.75).mean()), 1)} + + +def describe(name: str, root: Path) -> dict: + info = load_meta(root) + cols = read_frames(root) + state, action, ep = cols["observation.state"], cols["action"], cols["episode_index"] + state = np.array(state.tolist(), dtype=np.float64) + action = np.array(action.tolist(), dtype=np.float64) + cams = [k for k, v in info["features"].items() if v.get("dtype") == "video"] + vid = {} + for c in cams: + f = sorted((root / "videos" / c).glob("*/*.mp4")) + if f: + p = ffprobe(f[0]) + vid[c] = {"codec": p.get("codec_name"), "size": f"{p.get('width')}x{p.get('height')}", + "pix_fmt": p.get("pix_fmt"), "fps": p.get("avg_frame_rate"), + "n_files": len(f)} + lens = np.array([int((ep == e).sum()) for e in np.unique(ep)]) + fps = info["fps"] + names = info["features"]["action"].get("names") or [] + # the task string is stored as the pandas index, so the column is "task" or "__index_level_0__" + tt = pq.read_table(root / "meta" / "tasks.parquet").to_pydict() + tasks = {"task": next(v for k, v in tt.items() if k != "task_index")} + return { + "name": name, "root": str(root), + "format": f"LeRobot {info['codebase_version']}", + "robot_type": info.get("robot_type"), + "fps": fps, + "episodes": int(info["total_episodes"]), "frames": int(info["total_frames"]), + "tasks": int(info["total_tasks"]), + "task_examples": tasks["task"][:3], + "duration_s": round(int(info["total_frames"]) / fps, 1), + "duration_hms": f"{int(info['total_frames'])/fps/60:.1f} min", + "episode_len": {"mean": round(float(lens.mean()), 1), "min": int(lens.min()), + "max": int(lens.max()), "median": int(np.median(lens))}, + "camera_keys": cams, "video": vid, + "state_dtype": f"{info['features']['observation.state']['dtype']}" + f"[{info['features']['observation.state']['shape'][0]}]", + "action_dtype": f"{info['features']['action']['dtype']}[{info['features']['action']['shape'][0]}]", + "state_layout": names, + "state_range_deg": [[round(float(state[:, i].min()), 1), round(float(state[:, i].max()), 1)] + for i in range(state.shape[1])], + "action_convention": action_convention(state, action, ep), + "gripper": gripper_stats(state, action, names), + } + + +def main(): + ap = argparse.ArgumentParser() + ap.add_argument("--a", required=True, help="NAME=/path") + ap.add_argument("--b", required=True, help="NAME=/path") + ap.add_argument("--json", default=None) + args = ap.parse_args() + out = [] + for spec in (args.a, args.b): + n, p = spec.split("=", 1) + out.append(describe(n, Path(p))) + print(json.dumps(out, indent=2)) + if args.json: + Path(args.json).write_text(json.dumps(out, indent=2)) + print(f"\nwrote {args.json}") + + +if __name__ == "__main__": + main()