Skip to content
Snippets Groups Projects
Commit 38503b52 authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

quantile.py -> histogram.py

parent dd2a9792
No related branches found
No related tags found
No related merge requests found
......@@ -2,9 +2,9 @@ from .base import Metric, LeafMetric, RUNTIME, DISABLED, INHERIT, DEBUG, Embedde
from .cps import ClicksPerTimeUnitMetric
from .simple import IntegerMetric, FloatMetric
from .counter import CounterMetric
from .quantile import QuantileMetric
from .histogram import QuantileMetric, HistogramMetric
from .registry import register_metric, METRIC_NAMES_TO_CLASSES
__all__ = ['Metric', 'LeafMetric', 'EmbeddedSubmetrics', 'RUNTIME', 'DEBUG', 'INHERIT',
'DISABLED', 'ClicksPerTimeUnitMetric', 'IntegerMetric', 'FloatMetric',
'QuantileMetric', 'register_metric', 'METRIC_NAMES_TO_CLASSES']
'QuantileMetric', 'register_metric', 'METRIC_NAMES_TO_CLASSES', 'HistogramMetric']
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment