From 300747f9ddcc01021770eaa67a63f14f72f38894 Mon Sep 17 00:00:00 2001 From: Meterstick maintainers Date: Tue, 27 Jan 2026 11:25:08 -0800 Subject: [PATCH] No public description PiperOrigin-RevId: 861811420 --- operations.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/operations.py b/operations.py index 6283fcc..096d1e4 100644 --- a/operations.py +++ b/operations.py @@ -18,6 +18,7 @@ from __future__ import print_function import copy +import sys from typing import Any, Iterable, List, Optional, Sequence, Text, Tuple, Union import warnings @@ -2795,6 +2796,12 @@ def get_samples(self, df, split_by=None, return_cache_key=False): @staticmethod def get_stderrs(bucket_estimates): stderrs, dof = super(Jackknife, Jackknife).get_stderrs(bucket_estimates) + print('DEBUGGING SENTINEL!!!', file=sys.stderr) + print(f'{stderrs=}', file=sys.stderr) + print(f'{dof=}', file=sys.stderr) + print(f'{np.sqrt(dof + 1)=}', file=sys.stderr) + print(f'{stderrs * dof=}', file=sys.stderr) + print(f'{stderrs * dof / np.sqrt(dof + 1)=}', file=sys.stderr) return stderrs * dof / np.sqrt(dof + 1), dof def compute_children_sql(