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 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