|
14 | 14 | from botocore.session import get_session
|
15 | 15 | from mlflow.entities.model_registry import ModelVersion
|
16 | 16 | from mlflow.exceptions import RestException
|
17 |
| -from numalogic.config import NumalogicConf, PostprocessFactory |
| 17 | +from numalogic.config import PostprocessFactory |
18 | 18 | from numalogic.models.threshold import SigmoidThreshold
|
19 | 19 | from numalogic.registry import MLflowRegistry, ArtifactData
|
20 |
| -from omegaconf import OmegaConf |
21 | 20 | from pynumaflow.function import Messages, Message
|
22 | 21 |
|
23 |
| -from numaprom import get_logger, MetricConf, ServiceConf, NumapromConf, UnifiedConf |
| 22 | +from numaprom import get_logger, MetricConf |
24 | 23 | from numaprom._constants import (
|
25 | 24 | DEFAULT_TRACKING_URI,
|
26 | 25 | DEFAULT_PROMETHEUS_SERVER,
|
27 |
| - CONFIG_DIR, |
28 |
| - DEFAULT_CONFIG_DIR, |
29 | 26 | )
|
30 | 27 | from numaprom.entities import TrainerPayload, StreamPayload
|
31 | 28 | from numaprom.clients.prometheus import Prometheus
|
@@ -155,69 +152,6 @@ def save_model(
|
155 | 152 | return version
|
156 | 153 |
|
157 | 154 |
|
158 |
| -def get_all_configs(): |
159 |
| - schema: NumapromConf = OmegaConf.structured(NumapromConf) |
160 |
| - |
161 |
| - conf = OmegaConf.load(os.path.join(CONFIG_DIR, "config.yaml")) |
162 |
| - given_configs = OmegaConf.merge(schema, conf).configs |
163 |
| - |
164 |
| - conf = OmegaConf.load(os.path.join(DEFAULT_CONFIG_DIR, "config.yaml")) |
165 |
| - default_configs = OmegaConf.merge(schema, conf).configs |
166 |
| - |
167 |
| - conf = OmegaConf.load(os.path.join(DEFAULT_CONFIG_DIR, "numalogic_config.yaml")) |
168 |
| - schema: NumalogicConf = OmegaConf.structured(NumalogicConf) |
169 |
| - default_numalogic = OmegaConf.merge(schema, conf) |
170 |
| - |
171 |
| - return given_configs, default_configs, default_numalogic |
172 |
| - |
173 |
| - |
174 |
| -def get_service_config(metric: str, namespace: str): |
175 |
| - given_configs, default_configs, default_numalogic = get_all_configs() |
176 |
| - |
177 |
| - # search and load from given configs |
178 |
| - service_config = list(filter(lambda conf: (conf.namespace == namespace), given_configs)) |
179 |
| - |
180 |
| - # if not search and load from default configs |
181 |
| - if not service_config: |
182 |
| - for _conf in default_configs: |
183 |
| - if metric in _conf.unified_configs[0].unified_metrics: |
184 |
| - service_config = [_conf] |
185 |
| - break |
186 |
| - |
187 |
| - # if not in default configs, initialize Namespace conf with default values |
188 |
| - if not service_config: |
189 |
| - service_config = OmegaConf.structured(ServiceConf) |
190 |
| - else: |
191 |
| - service_config = service_config[0] |
192 |
| - |
193 |
| - # loading and setting default numalogic config |
194 |
| - for metric_config in service_config.metric_configs: |
195 |
| - if OmegaConf.is_missing(metric_config, "numalogic_conf"): |
196 |
| - metric_config.numalogic_conf = default_numalogic |
197 |
| - |
198 |
| - return service_config |
199 |
| - |
200 |
| - |
201 |
| -def get_metric_config(metric: str, namespace: str) -> Optional[MetricConf]: |
202 |
| - service_config = get_service_config(metric, namespace) |
203 |
| - metric_config = list( |
204 |
| - filter(lambda conf: (conf.metric == metric), service_config.metric_configs) |
205 |
| - ) |
206 |
| - if not metric_config: |
207 |
| - return service_config.metric_configs[0] |
208 |
| - return metric_config[0] |
209 |
| - |
210 |
| - |
211 |
| -def get_unified_config(metric: str, namespace: str) -> Optional[UnifiedConf]: |
212 |
| - service_config = get_service_config(metric, namespace) |
213 |
| - unified_config = list( |
214 |
| - filter(lambda conf: (metric in conf.unified_metrics), service_config.unified_configs) |
215 |
| - ) |
216 |
| - if not unified_config: |
217 |
| - return None |
218 |
| - return unified_config[0] |
219 |
| - |
220 |
| - |
221 | 155 | def fetch_data(
|
222 | 156 | payload: TrainerPayload, metric_config: MetricConf, labels: dict, return_labels=None
|
223 | 157 | ) -> pd.DataFrame:
|
|
0 commit comments