Environment Setup
VIDEX Version: main [d7f16f9]
Observed vs Expected Behavior
In videx_histogram.py line 235:
scale_factor = self.buckets[-1].cum_freq / (1 - self.null_values)
If the goal is to scale cum_freq so that null_values + cum_freq_last = 1, shouldn't the formula be:
scale_factor = (1 - self.null_values) / self.buckets[-1].cum_freq
Environment Setup
VIDEX Version: main [d7f16f9]
Observed vs Expected Behavior
In videx_histogram.py line 235:
scale_factor = self.buckets[-1].cum_freq / (1 - self.null_values)If the goal is to scale cum_freq so that null_values + cum_freq_last = 1, shouldn't the formula be:
scale_factor = (1 - self.null_values) / self.buckets[-1].cum_freq