orbit-eval 0.8.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- orbit_eval/__init__.py +37 -0
- orbit_eval/atlas.py +820 -0
- orbit_eval/audit.py +181 -0
- orbit_eval/cli.py +556 -0
- orbit_eval/gate/__init__.py +141 -0
- orbit_eval/gate/adapter.py +198 -0
- orbit_eval/gate/cli.py +1106 -0
- orbit_eval/gate/engine.py +1030 -0
- orbit_eval/gate/records.py +400 -0
- orbit_eval/gate/replay.py +1317 -0
- orbit_eval/gate/sequential.py +791 -0
- orbit_eval/gate/shadow.py +584 -0
- orbit_eval/io.py +240 -0
- orbit_eval/power.py +94 -0
- orbit_eval/route.py +791 -0
- orbit_eval/routed_policy.py +288 -0
- orbit_eval/selftest.py +187 -0
- orbit_eval/stats.py +463 -0
- orbit_eval-0.8.1.dist-info/METADATA +1224 -0
- orbit_eval-0.8.1.dist-info/RECORD +24 -0
- orbit_eval-0.8.1.dist-info/WHEEL +5 -0
- orbit_eval-0.8.1.dist-info/entry_points.txt +3 -0
- orbit_eval-0.8.1.dist-info/licenses/LICENSE +661 -0
- orbit_eval-0.8.1.dist-info/top_level.txt +1 -0
orbit_eval/__init__.py
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# orbit-eval — honest statistics for robot-policy evaluation.
|
|
2
|
+
# Copyright (C) 2026 ORBIT Research
|
|
3
|
+
#
|
|
4
|
+
# This program is free software: you can redistribute it and/or modify it under
|
|
5
|
+
# the terms of the GNU Affero General Public License, version 3, as published by
|
|
6
|
+
# the Free Software Foundation.
|
|
7
|
+
#
|
|
8
|
+
# This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
9
|
+
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
10
|
+
# PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
|
|
11
|
+
# You should have received a copy of the license along with this program. If not,
|
|
12
|
+
# see <https://www.gnu.org/licenses/>.
|
|
13
|
+
#
|
|
14
|
+
# A commercial license, exempting you from the AGPL's source-disclosure terms, is
|
|
15
|
+
# available from ORBIT Research.
|
|
16
|
+
|
|
17
|
+
"""orbit-eval — honest statistics for robot-policy evaluation.
|
|
18
|
+
|
|
19
|
+
A thin, pip-installable port of the validated statistics from the ORBIT
|
|
20
|
+
research program, shipping the measured noise atlas as data. It always
|
|
21
|
+
distinguishes:
|
|
22
|
+
|
|
23
|
+
(a) fixed-checkpoint / fixed-dataset comparisons under common random
|
|
24
|
+
numbers — cheap, powered at ~2 seeds against the sigma_0 harness
|
|
25
|
+
floor; from
|
|
26
|
+
(b) selection-method comparisons across independent retrains — dominated
|
|
27
|
+
by sigma_run and sigma_set, needing ~59 set draws per arm for a
|
|
28
|
+
10 pp effect in the LIBERO product regime.
|
|
29
|
+
|
|
30
|
+
CRN pairing cannot rescue (b): pairing cancels eval-draw noise only, while
|
|
31
|
+
sigma_run and sigma_set live in training.
|
|
32
|
+
"""
|
|
33
|
+
|
|
34
|
+
__version__ = "0.8.1"
|
|
35
|
+
|
|
36
|
+
from . import atlas, power, stats # noqa: F401
|
|
37
|
+
from .io import EvalRun, parse_file # noqa: F401
|