diff --git a/air-quality-forecast/model_development.py b/air-quality-forecast/model_development.py index 8873206f62ed833575b79489ca8a656ad2e2e4d7..1ff6bcfa196d323bb8adf7fdae161f417f43ba50 100644 --- a/air-quality-forecast/model_development.py +++ b/air-quality-forecast/model_development.py @@ -6,6 +6,7 @@ from sklearn.base import BaseEstimator from sklearn.metrics import mean_squared_error, root_mean_squared_error from sklearn.model_selection import TimeSeriesSplit from skopt import BayesSearchCV +from skopt.space import Real, Integer, Categorical from typing import Dict, Any import socket import pandas as pd @@ -133,7 +134,7 @@ class RegressorTrainer: mlflow.set_experiment(self._experiment_name) mlflow.set_tracking_uri("http://localhost:5000/") mlflow.enable_system_metrics_logging() - mlflow.autolog() + mlflow.autolog(silent=True) def _perform_search(self) -> None: """ @@ -169,8 +170,14 @@ class RegressorTrainer: mlflow.log_params(self._bayes_search.best_params_) - mlflow.log_metric("Correct Train MSE", -self._bayes_search.best_score_) - + + best_regressor = self._bayes_search.best_estimator_ + train_mse = mean_squared_error( + self._y_train, best_regressor.predict(self._x_train) + ) + + mlflow.log_metric("Correct Train MSE", train_mse) + def _evaluate_model(self) -> None: """ Evaluate the best model on the test data and log metrics. @@ -231,6 +238,37 @@ class RegressorTrainer: self._setup_mlflow() self._optimize_and_evaluate() +def convert_param_space(param_space: dict): + """ + Convert a parameter space dictionary to a format usable by skopt. + + This function takes a dictionary where the keys are parameter names and the + values are lists of two values that represent the range of possible values + for that parameter. The function then converts these ranges to skopt + parameter objects and returns a new dictionary where the parameter names + are the same but the values are now skopt parameter objects. + + Parameters: + param_space (dict): A dictionary with parameter names as keys and ranges + of possible values as values. + + Returns: + dict: A dictionary with parameter names as keys and skopt parameter + objects as values. + """ + converted_space = {} + for param, values in param_space.items(): + if isinstance(values[0], bool): + converted_space[param] = Categorical(values) + elif all(isinstance(v, int) for v in values): + converted_space[param] = Integer(values[0], values[1]) + elif all(isinstance(v, float) for v in values): + converted_space[param] = Real(values[0], values[1]) + elif all(isinstance(v, str) for v in values): + converted_space[param] = Categorical(values) + else: + raise ValueError(f"Unknown parameter type for {param}") + return converted_space def run_bayesian_optimization( x_train: np.ndarray, @@ -299,6 +337,11 @@ def train_all_models(): os.path.join(configs_data_path, "hyperparameter_search_spaces.yaml"), "r" ) as stream: param_space_config = yaml.safe_load(stream) + + param_space_config["decision_tree"] = convert_param_space(param_space_config["decision_tree"]) + print(param_space_config["decision_tree"]) + param_space_config["xgboost"] = convert_param_space(param_space_config["xgboost"]) + param_space_config["random_forest"] = convert_param_space(param_space_config["random_forest"]) run_bayesian_optimization( x_train, diff --git a/configs/hyperparameter_search_spaces.yaml b/configs/hyperparameter_search_spaces.yaml index 0040e346b890bdc5c8c43f4adcbb7b3ec4e53b4c..08ef6b439772f6cd8b95567cd82e3fbf08d941f4 100644 --- a/configs/hyperparameter_search_spaces.yaml +++ b/configs/hyperparameter_search_spaces.yaml @@ -1,8 +1,29 @@ decision_tree: - max_depth: [20, 50] + max_depth: [2, 100] + min_samples_split: [2, 20] + min_samples_leaf: [25, 35] + max_leaf_nodes: [20, 60] + ccp_alpha: [0.0, 0.1] + min_weight_fraction_leaf: [0.0, 0.5] + min_impurity_decrease: [0.0, 1.0] + max_features: ["sqrt", "log2", "auto"] random_forest: - max_depth: [20, 50] + max_depth: [1, 50] + ccp_alpha: [0.0, 0.1] + n_estimators: [5, 500] + max_leaf_nodes: [1, 50] + min_samples_split: [1, 25] + min_samples_leaf: [1, 20] + max_features: [0.1, 1.0] xgboost: - max_depth: [20, 50] \ No newline at end of file + eta: [0.001, 0.1] + n_estimators: [100, 1000] + max_depth: [1, 20] + subsample: [0.5, 1.0] + colsample_bytree: [0.5, 1.0] + reg_lambda: [0.0, 2.0] + min_child_weight: [1, 15] + reg_alpha: [0.0, 2.0] + eval_metric: ["rmse"] \ No newline at end of file diff --git a/mlartifacts/149819317988706962/135e604974134ca4877227251e765174/artifacts/model/MLmodel b/mlartifacts/149819317988706962/135e604974134ca4877227251e765174/artifacts/model/MLmodel deleted file mode 100644 index cd53b854b6cb1d7f518d7fbe198b4d7661bd7625..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/135e604974134ca4877227251e765174/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.sklearn - model_path: model.pkl - predict_fn: predict - python_version: 3.11.0 - sklearn: - code: null - pickled_model: model.pkl - serialization_format: cloudpickle - sklearn_version: 1.5.2 -mlflow_version: 2.16.2 -model_size_bytes: 34769333 -model_uuid: a4454c410eb04397aeb3487d1219327c -run_id: 135e604974134ca4877227251e765174 -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-29 22:07:51.285707' diff --git a/mlartifacts/149819317988706962/135e604974134ca4877227251e765174/artifacts/model/conda.yaml b/mlartifacts/149819317988706962/135e604974134ca4877227251e765174/artifacts/model/conda.yaml deleted file mode 100644 index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/135e604974134ca4877227251e765174/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - cloudpickle==3.0.0 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 -name: mlflow-env diff --git a/mlartifacts/149819317988706962/135e604974134ca4877227251e765174/artifacts/model/model.pkl b/mlartifacts/149819317988706962/135e604974134ca4877227251e765174/artifacts/model/model.pkl deleted file mode 100644 index 9610b87664909ae910c3e3725f7ccf0314160b5c..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/135e604974134ca4877227251e765174/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6b51c46f274e74ab79fd748cbe4fa01c5216d66f347bd96f71cfedf31015152f -size 34769333 diff --git a/mlartifacts/149819317988706962/135e604974134ca4877227251e765174/artifacts/model/python_env.yaml b/mlartifacts/149819317988706962/135e604974134ca4877227251e765174/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/135e604974134ca4877227251e765174/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlartifacts/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/artifacts/estimator.html b/mlartifacts/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/artifacts/estimator.html deleted file mode 100644 index 4382cb542c5a9e966109ce86a3b14c67175729fb..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
RandomForestRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/mlartifacts/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/artifacts/model/MLmodel b/mlartifacts/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/artifacts/model/MLmodel deleted file mode 100644 index ce824c90f8728bdf6fdd3c5f36b02f4247608b9a..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.sklearn - model_path: model.pkl - predict_fn: predict - python_version: 3.11.0 - sklearn: - code: null - pickled_model: model.pkl - serialization_format: cloudpickle - sklearn_version: 1.5.2 -mlflow_version: 2.16.2 -model_size_bytes: 34769333 -model_uuid: 1223b8cf87ee4fae9c34ac54eeef9eb4 -run_id: 39324cef8f2443b7b4b77eefe61ef6ca -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-30 16:26:16.224496' diff --git a/mlartifacts/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/artifacts/model/model.pkl b/mlartifacts/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/artifacts/model/model.pkl deleted file mode 100644 index 9610b87664909ae910c3e3725f7ccf0314160b5c..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6b51c46f274e74ab79fd748cbe4fa01c5216d66f347bd96f71cfedf31015152f -size 34769333 diff --git a/mlartifacts/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/artifacts/model/python_env.yaml b/mlartifacts/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlartifacts/149819317988706962/482f080397f8479f94024fbed2a3937a/artifacts/estimator.html b/mlartifacts/149819317988706962/482f080397f8479f94024fbed2a3937a/artifacts/estimator.html deleted file mode 100644 index 4382cb542c5a9e966109ce86a3b14c67175729fb..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/482f080397f8479f94024fbed2a3937a/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
RandomForestRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/mlartifacts/149819317988706962/482f080397f8479f94024fbed2a3937a/artifacts/model/MLmodel b/mlartifacts/149819317988706962/482f080397f8479f94024fbed2a3937a/artifacts/model/MLmodel deleted file mode 100644 index ecc8c46c3026a42e9a07e09f6c9c0f1e899ebc81..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/482f080397f8479f94024fbed2a3937a/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.sklearn - model_path: model.pkl - predict_fn: predict - python_version: 3.11.0 - sklearn: - code: null - pickled_model: model.pkl - serialization_format: cloudpickle - sklearn_version: 1.5.2 -mlflow_version: 2.16.2 -model_size_bytes: 34769333 -model_uuid: 8332f56e26444f36b4c0ca9a376792c0 -run_id: 482f080397f8479f94024fbed2a3937a -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-29 21:39:32.284449' diff --git a/mlartifacts/149819317988706962/482f080397f8479f94024fbed2a3937a/artifacts/model/model.pkl b/mlartifacts/149819317988706962/482f080397f8479f94024fbed2a3937a/artifacts/model/model.pkl deleted file mode 100644 index 9610b87664909ae910c3e3725f7ccf0314160b5c..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/482f080397f8479f94024fbed2a3937a/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6b51c46f274e74ab79fd748cbe4fa01c5216d66f347bd96f71cfedf31015152f -size 34769333 diff --git a/mlartifacts/149819317988706962/482f080397f8479f94024fbed2a3937a/artifacts/model/python_env.yaml b/mlartifacts/149819317988706962/482f080397f8479f94024fbed2a3937a/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/482f080397f8479f94024fbed2a3937a/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlartifacts/149819317988706962/482f080397f8479f94024fbed2a3937a/artifacts/model/requirements.txt b/mlartifacts/149819317988706962/482f080397f8479f94024fbed2a3937a/artifacts/model/requirements.txt deleted file mode 100644 index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/482f080397f8479f94024fbed2a3937a/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -cloudpickle==3.0.0 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file diff --git a/mlartifacts/149819317988706962/5479a322736e4663944d983720a6648e/artifacts/estimator.html b/mlartifacts/149819317988706962/5479a322736e4663944d983720a6648e/artifacts/estimator.html deleted file mode 100644 index 4382cb542c5a9e966109ce86a3b14c67175729fb..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/5479a322736e4663944d983720a6648e/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
RandomForestRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/mlartifacts/149819317988706962/5479a322736e4663944d983720a6648e/artifacts/model/MLmodel b/mlartifacts/149819317988706962/5479a322736e4663944d983720a6648e/artifacts/model/MLmodel deleted file mode 100644 index 729d976ab434d6e1519562a9d2a8b32208b7d7fa..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/5479a322736e4663944d983720a6648e/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.sklearn - model_path: model.pkl - predict_fn: predict - python_version: 3.11.0 - sklearn: - code: null - pickled_model: model.pkl - serialization_format: cloudpickle - sklearn_version: 1.5.2 -mlflow_version: 2.16.2 -model_size_bytes: 34743349 -model_uuid: 2ece0aa5720e4d60a908faa9d0e3d000 -run_id: 5479a322736e4663944d983720a6648e -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-29 20:35:11.167642' diff --git a/mlartifacts/149819317988706962/5479a322736e4663944d983720a6648e/artifacts/model/conda.yaml b/mlartifacts/149819317988706962/5479a322736e4663944d983720a6648e/artifacts/model/conda.yaml deleted file mode 100644 index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/5479a322736e4663944d983720a6648e/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - cloudpickle==3.0.0 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 -name: mlflow-env diff --git a/mlartifacts/149819317988706962/5479a322736e4663944d983720a6648e/artifacts/model/model.pkl b/mlartifacts/149819317988706962/5479a322736e4663944d983720a6648e/artifacts/model/model.pkl deleted file mode 100644 index 4a869ca17eb56b1cd1df017299f9d5ce11ffd59b..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/5479a322736e4663944d983720a6648e/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0bf0697af096e259e722ff4149548875d48514deded04ec7fac97f0eca1d5b20 -size 34743349 diff --git a/mlartifacts/149819317988706962/5479a322736e4663944d983720a6648e/artifacts/model/python_env.yaml b/mlartifacts/149819317988706962/5479a322736e4663944d983720a6648e/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/5479a322736e4663944d983720a6648e/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlartifacts/149819317988706962/5479a322736e4663944d983720a6648e/artifacts/model/requirements.txt b/mlartifacts/149819317988706962/5479a322736e4663944d983720a6648e/artifacts/model/requirements.txt deleted file mode 100644 index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/5479a322736e4663944d983720a6648e/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -cloudpickle==3.0.0 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file diff --git a/mlartifacts/149819317988706962/d256fba7a7fe43c39749afef37154210/artifacts/estimator.html b/mlartifacts/149819317988706962/d256fba7a7fe43c39749afef37154210/artifacts/estimator.html deleted file mode 100644 index 4382cb542c5a9e966109ce86a3b14c67175729fb..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/d256fba7a7fe43c39749afef37154210/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
RandomForestRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/mlartifacts/149819317988706962/d256fba7a7fe43c39749afef37154210/artifacts/model/MLmodel b/mlartifacts/149819317988706962/d256fba7a7fe43c39749afef37154210/artifacts/model/MLmodel deleted file mode 100644 index 4595745d47f1ac031cc56a30049ba4446da0e29e..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/d256fba7a7fe43c39749afef37154210/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.sklearn - model_path: model.pkl - predict_fn: predict - python_version: 3.11.0 - sklearn: - code: null - pickled_model: model.pkl - serialization_format: cloudpickle - sklearn_version: 1.5.2 -mlflow_version: 2.16.2 -model_size_bytes: 34762837 -model_uuid: d6a4b42658cb4824b3125c7ec63d1ed4 -run_id: d256fba7a7fe43c39749afef37154210 -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-29 20:41:11.947759' diff --git a/mlartifacts/149819317988706962/d256fba7a7fe43c39749afef37154210/artifacts/model/conda.yaml b/mlartifacts/149819317988706962/d256fba7a7fe43c39749afef37154210/artifacts/model/conda.yaml deleted file mode 100644 index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/d256fba7a7fe43c39749afef37154210/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - cloudpickle==3.0.0 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 -name: mlflow-env diff --git a/mlartifacts/149819317988706962/d256fba7a7fe43c39749afef37154210/artifacts/model/model.pkl b/mlartifacts/149819317988706962/d256fba7a7fe43c39749afef37154210/artifacts/model/model.pkl deleted file mode 100644 index a46480bc741a50e4da7115ca8d4d5f84ccd2741a..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/d256fba7a7fe43c39749afef37154210/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:72ba8a18da708a814986b0edbe6b5a4a7e931fea667acabeb4040aee0c038e02 -size 34762837 diff --git a/mlartifacts/149819317988706962/d256fba7a7fe43c39749afef37154210/artifacts/model/python_env.yaml b/mlartifacts/149819317988706962/d256fba7a7fe43c39749afef37154210/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/d256fba7a7fe43c39749afef37154210/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlartifacts/149819317988706962/d256fba7a7fe43c39749afef37154210/artifacts/model/requirements.txt b/mlartifacts/149819317988706962/d256fba7a7fe43c39749afef37154210/artifacts/model/requirements.txt deleted file mode 100644 index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/d256fba7a7fe43c39749afef37154210/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -cloudpickle==3.0.0 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file diff --git a/mlartifacts/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/artifacts/estimator.html b/mlartifacts/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/artifacts/estimator.html deleted file mode 100644 index 4382cb542c5a9e966109ce86a3b14c67175729fb..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
RandomForestRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/mlartifacts/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/artifacts/model/MLmodel b/mlartifacts/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/artifacts/model/MLmodel deleted file mode 100644 index 0865366fb34b16af97909fd15456170d3b1418c6..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.sklearn - model_path: model.pkl - predict_fn: predict - python_version: 3.11.0 - sklearn: - code: null - pickled_model: model.pkl - serialization_format: cloudpickle - sklearn_version: 1.5.2 -mlflow_version: 2.16.2 -model_size_bytes: 34769333 -model_uuid: 120c266f00cf4e34aca4337b65a1e372 -run_id: faa3ad4458c7419a8fc7c85d44b5c475 -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-30 11:43:18.288700' diff --git a/mlartifacts/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/artifacts/model/conda.yaml b/mlartifacts/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/artifacts/model/conda.yaml deleted file mode 100644 index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - cloudpickle==3.0.0 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 -name: mlflow-env diff --git a/mlartifacts/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/artifacts/model/model.pkl b/mlartifacts/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/artifacts/model/model.pkl deleted file mode 100644 index 9610b87664909ae910c3e3725f7ccf0314160b5c..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6b51c46f274e74ab79fd748cbe4fa01c5216d66f347bd96f71cfedf31015152f -size 34769333 diff --git a/mlartifacts/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/artifacts/model/python_env.yaml b/mlartifacts/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlartifacts/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/artifacts/model/requirements.txt b/mlartifacts/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/artifacts/model/requirements.txt deleted file mode 100644 index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -cloudpickle==3.0.0 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file diff --git a/mlartifacts/149819317988706962/ff9b209269104b37b82bb9564fe96907/artifacts/estimator.html b/mlartifacts/149819317988706962/ff9b209269104b37b82bb9564fe96907/artifacts/estimator.html deleted file mode 100644 index 4382cb542c5a9e966109ce86a3b14c67175729fb..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/ff9b209269104b37b82bb9564fe96907/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
RandomForestRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/mlartifacts/149819317988706962/ff9b209269104b37b82bb9564fe96907/artifacts/model/MLmodel b/mlartifacts/149819317988706962/ff9b209269104b37b82bb9564fe96907/artifacts/model/MLmodel deleted file mode 100644 index 95a68947dd7c07d3e10dee5560cb1de22b4c7bf1..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/ff9b209269104b37b82bb9564fe96907/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.sklearn - model_path: model.pkl - predict_fn: predict - python_version: 3.11.0 - sklearn: - code: null - pickled_model: model.pkl - serialization_format: cloudpickle - sklearn_version: 1.5.2 -mlflow_version: 2.16.2 -model_size_bytes: 34769333 -model_uuid: 6d6ca6151f804bf69e8c2ad9a6f0deb8 -run_id: ff9b209269104b37b82bb9564fe96907 -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-30 12:24:07.662782' diff --git a/mlartifacts/149819317988706962/ff9b209269104b37b82bb9564fe96907/artifacts/model/conda.yaml b/mlartifacts/149819317988706962/ff9b209269104b37b82bb9564fe96907/artifacts/model/conda.yaml deleted file mode 100644 index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/ff9b209269104b37b82bb9564fe96907/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - cloudpickle==3.0.0 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 -name: mlflow-env diff --git a/mlartifacts/149819317988706962/ff9b209269104b37b82bb9564fe96907/artifacts/model/model.pkl b/mlartifacts/149819317988706962/ff9b209269104b37b82bb9564fe96907/artifacts/model/model.pkl deleted file mode 100644 index 9610b87664909ae910c3e3725f7ccf0314160b5c..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/ff9b209269104b37b82bb9564fe96907/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6b51c46f274e74ab79fd748cbe4fa01c5216d66f347bd96f71cfedf31015152f -size 34769333 diff --git a/mlartifacts/149819317988706962/ff9b209269104b37b82bb9564fe96907/artifacts/model/python_env.yaml b/mlartifacts/149819317988706962/ff9b209269104b37b82bb9564fe96907/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/ff9b209269104b37b82bb9564fe96907/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlartifacts/149819317988706962/ff9b209269104b37b82bb9564fe96907/artifacts/model/requirements.txt b/mlartifacts/149819317988706962/ff9b209269104b37b82bb9564fe96907/artifacts/model/requirements.txt deleted file mode 100644 index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..0000000000000000000000000000000000000000 --- a/mlartifacts/149819317988706962/ff9b209269104b37b82bb9564fe96907/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -cloudpickle==3.0.0 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file diff --git a/mlartifacts/674375719018272828/2ad059c5d4704ed088a288d572818bcf/artifacts/feature_importance_weight.json b/mlartifacts/674375719018272828/2ad059c5d4704ed088a288d572818bcf/artifacts/feature_importance_weight.json deleted file mode 100644 index c93f392734f5dd8aabf786297d1772f7e21315e4..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/2ad059c5d4704ed088a288d572818bcf/artifacts/feature_importance_weight.json +++ /dev/null @@ -1 +0,0 @@ -{"f0": 30335.0, "f1": 12283.0, "f2": 8903.0, "f3": 6526.0, "f4": 8117.0, "f5": 7541.0, "f6": 6146.0, "f7": 6050.0, "f8": 3123.0, "f9": 3844.0, "f10": 6510.0, "f11": 4622.0, "f12": 3717.0, "f13": 3799.0, "f14": 2906.0, "f15": 3587.0, "f16": 3904.0, "f17": 4225.0, "f18": 3999.0, "f19": 2503.0, "f20": 2764.0, "f21": 4179.0, "f22": 4006.0, "f23": 3549.0, "f24": 3621.0, "f25": 2669.0, "f26": 2954.0, "f27": 3504.0, "f28": 3645.0, "f29": 3696.0, "f30": 2283.0, "f31": 2338.0, "f32": 3725.0} \ No newline at end of file diff --git a/mlartifacts/674375719018272828/2ad059c5d4704ed088a288d572818bcf/artifacts/feature_importance_weight.png b/mlartifacts/674375719018272828/2ad059c5d4704ed088a288d572818bcf/artifacts/feature_importance_weight.png deleted file mode 100644 index 9901a03765bd0ba73ff8b0721fb2ff8a614e8f01..0000000000000000000000000000000000000000 Binary files a/mlartifacts/674375719018272828/2ad059c5d4704ed088a288d572818bcf/artifacts/feature_importance_weight.png and /dev/null differ diff --git a/mlartifacts/674375719018272828/2ad059c5d4704ed088a288d572818bcf/artifacts/model/MLmodel b/mlartifacts/674375719018272828/2ad059c5d4704ed088a288d572818bcf/artifacts/model/MLmodel deleted file mode 100644 index b45b931f89a5adc78aacd57205363c3e5796c32f..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/2ad059c5d4704ed088a288d572818bcf/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - data: model.xgb - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.xgboost - python_version: 3.11.0 - xgboost: - code: null - data: model.xgb - model_class: xgboost.sklearn.XGBRegressor - model_format: xgb - xgb_version: 2.1.1 -mlflow_version: 2.16.2 -model_size_bytes: 12354728 -model_uuid: ae7825e16b794647905010b3fabdf5ee -run_id: 2ad059c5d4704ed088a288d572818bcf -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float32", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-29 20:34:46.696536' diff --git a/mlartifacts/674375719018272828/2ad059c5d4704ed088a288d572818bcf/artifacts/model/conda.yaml b/mlartifacts/674375719018272828/2ad059c5d4704ed088a288d572818bcf/artifacts/model/conda.yaml deleted file mode 100644 index e6b4b66656c7d8c82ff1035e8527aaa5131aed50..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/2ad059c5d4704ed088a288d572818bcf/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 - - xgboost==2.1.1 -name: mlflow-env diff --git a/mlartifacts/674375719018272828/2ad059c5d4704ed088a288d572818bcf/artifacts/model/model.xgb b/mlartifacts/674375719018272828/2ad059c5d4704ed088a288d572818bcf/artifacts/model/model.xgb deleted file mode 100644 index 79a2cdde147f29f1270c73f3146f7f011f39c6ba..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/2ad059c5d4704ed088a288d572818bcf/artifacts/model/model.xgb +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c823873e6e051da216bde5618c3db8390d1cdc8e1edd143c59272d69548fc05f -size 12354728 diff --git a/mlartifacts/674375719018272828/2ad059c5d4704ed088a288d572818bcf/artifacts/model/python_env.yaml b/mlartifacts/674375719018272828/2ad059c5d4704ed088a288d572818bcf/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/2ad059c5d4704ed088a288d572818bcf/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlartifacts/674375719018272828/2ad059c5d4704ed088a288d572818bcf/artifacts/model/requirements.txt b/mlartifacts/674375719018272828/2ad059c5d4704ed088a288d572818bcf/artifacts/model/requirements.txt deleted file mode 100644 index 6198c1c092c7fa46d9d9a627509faebf0eeecc89..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/2ad059c5d4704ed088a288d572818bcf/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 -xgboost==2.1.1 \ No newline at end of file diff --git a/mlartifacts/674375719018272828/32599368741e4784aaa387a8ec350b73/artifacts/feature_importance_weight.json b/mlartifacts/674375719018272828/32599368741e4784aaa387a8ec350b73/artifacts/feature_importance_weight.json deleted file mode 100644 index c93f392734f5dd8aabf786297d1772f7e21315e4..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/32599368741e4784aaa387a8ec350b73/artifacts/feature_importance_weight.json +++ /dev/null @@ -1 +0,0 @@ -{"f0": 30335.0, "f1": 12283.0, "f2": 8903.0, "f3": 6526.0, "f4": 8117.0, "f5": 7541.0, "f6": 6146.0, "f7": 6050.0, "f8": 3123.0, "f9": 3844.0, "f10": 6510.0, "f11": 4622.0, "f12": 3717.0, "f13": 3799.0, "f14": 2906.0, "f15": 3587.0, "f16": 3904.0, "f17": 4225.0, "f18": 3999.0, "f19": 2503.0, "f20": 2764.0, "f21": 4179.0, "f22": 4006.0, "f23": 3549.0, "f24": 3621.0, "f25": 2669.0, "f26": 2954.0, "f27": 3504.0, "f28": 3645.0, "f29": 3696.0, "f30": 2283.0, "f31": 2338.0, "f32": 3725.0} \ No newline at end of file diff --git a/mlartifacts/674375719018272828/32599368741e4784aaa387a8ec350b73/artifacts/feature_importance_weight.png b/mlartifacts/674375719018272828/32599368741e4784aaa387a8ec350b73/artifacts/feature_importance_weight.png deleted file mode 100644 index 9901a03765bd0ba73ff8b0721fb2ff8a614e8f01..0000000000000000000000000000000000000000 Binary files a/mlartifacts/674375719018272828/32599368741e4784aaa387a8ec350b73/artifacts/feature_importance_weight.png and /dev/null differ diff --git a/mlartifacts/674375719018272828/32599368741e4784aaa387a8ec350b73/artifacts/model/MLmodel b/mlartifacts/674375719018272828/32599368741e4784aaa387a8ec350b73/artifacts/model/MLmodel deleted file mode 100644 index 449e90ee22c962116c98f77fcf0feaf7c1fff4bb..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/32599368741e4784aaa387a8ec350b73/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - data: model.xgb - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.xgboost - python_version: 3.11.0 - xgboost: - code: null - data: model.xgb - model_class: xgboost.sklearn.XGBRegressor - model_format: xgb - xgb_version: 2.1.1 -mlflow_version: 2.16.2 -model_size_bytes: 12354728 -model_uuid: 4edaf6d4ff8a40fc9b0964a865424d34 -run_id: 32599368741e4784aaa387a8ec350b73 -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float32", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-29 21:39:08.545139' diff --git a/mlartifacts/674375719018272828/32599368741e4784aaa387a8ec350b73/artifacts/model/conda.yaml b/mlartifacts/674375719018272828/32599368741e4784aaa387a8ec350b73/artifacts/model/conda.yaml deleted file mode 100644 index e6b4b66656c7d8c82ff1035e8527aaa5131aed50..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/32599368741e4784aaa387a8ec350b73/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 - - xgboost==2.1.1 -name: mlflow-env diff --git a/mlartifacts/674375719018272828/32599368741e4784aaa387a8ec350b73/artifacts/model/model.xgb b/mlartifacts/674375719018272828/32599368741e4784aaa387a8ec350b73/artifacts/model/model.xgb deleted file mode 100644 index 79a2cdde147f29f1270c73f3146f7f011f39c6ba..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/32599368741e4784aaa387a8ec350b73/artifacts/model/model.xgb +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c823873e6e051da216bde5618c3db8390d1cdc8e1edd143c59272d69548fc05f -size 12354728 diff --git a/mlartifacts/674375719018272828/32599368741e4784aaa387a8ec350b73/artifacts/model/python_env.yaml b/mlartifacts/674375719018272828/32599368741e4784aaa387a8ec350b73/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/32599368741e4784aaa387a8ec350b73/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlartifacts/674375719018272828/32599368741e4784aaa387a8ec350b73/artifacts/model/requirements.txt b/mlartifacts/674375719018272828/32599368741e4784aaa387a8ec350b73/artifacts/model/requirements.txt deleted file mode 100644 index 6198c1c092c7fa46d9d9a627509faebf0eeecc89..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/32599368741e4784aaa387a8ec350b73/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 -xgboost==2.1.1 \ No newline at end of file diff --git a/mlartifacts/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/artifacts/feature_importance_weight.json b/mlartifacts/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/artifacts/feature_importance_weight.json deleted file mode 100644 index c93f392734f5dd8aabf786297d1772f7e21315e4..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/artifacts/feature_importance_weight.json +++ /dev/null @@ -1 +0,0 @@ -{"f0": 30335.0, "f1": 12283.0, "f2": 8903.0, "f3": 6526.0, "f4": 8117.0, "f5": 7541.0, "f6": 6146.0, "f7": 6050.0, "f8": 3123.0, "f9": 3844.0, "f10": 6510.0, "f11": 4622.0, "f12": 3717.0, "f13": 3799.0, "f14": 2906.0, "f15": 3587.0, "f16": 3904.0, "f17": 4225.0, "f18": 3999.0, "f19": 2503.0, "f20": 2764.0, "f21": 4179.0, "f22": 4006.0, "f23": 3549.0, "f24": 3621.0, "f25": 2669.0, "f26": 2954.0, "f27": 3504.0, "f28": 3645.0, "f29": 3696.0, "f30": 2283.0, "f31": 2338.0, "f32": 3725.0} \ No newline at end of file diff --git a/mlartifacts/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/artifacts/feature_importance_weight.png b/mlartifacts/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/artifacts/feature_importance_weight.png deleted file mode 100644 index 9901a03765bd0ba73ff8b0721fb2ff8a614e8f01..0000000000000000000000000000000000000000 Binary files a/mlartifacts/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/artifacts/feature_importance_weight.png and /dev/null differ diff --git a/mlartifacts/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/artifacts/model/MLmodel b/mlartifacts/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/artifacts/model/MLmodel deleted file mode 100644 index 80df8f1f78691cd386deb2960c9c2f0dfde80780..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - data: model.xgb - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.xgboost - python_version: 3.11.0 - xgboost: - code: null - data: model.xgb - model_class: xgboost.sklearn.XGBRegressor - model_format: xgb - xgb_version: 2.1.1 -mlflow_version: 2.16.2 -model_size_bytes: 12354728 -model_uuid: ccfb5bbaecb042b38a2b828e2165d60f -run_id: 5da5a79d58cf46bb8d6496df6c8bc067 -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float32", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-30 12:22:48.833671' diff --git a/mlartifacts/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/artifacts/model/conda.yaml b/mlartifacts/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/artifacts/model/conda.yaml deleted file mode 100644 index e6b4b66656c7d8c82ff1035e8527aaa5131aed50..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 - - xgboost==2.1.1 -name: mlflow-env diff --git a/mlartifacts/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/artifacts/model/model.xgb b/mlartifacts/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/artifacts/model/model.xgb deleted file mode 100644 index 79a2cdde147f29f1270c73f3146f7f011f39c6ba..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/artifacts/model/model.xgb +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c823873e6e051da216bde5618c3db8390d1cdc8e1edd143c59272d69548fc05f -size 12354728 diff --git a/mlartifacts/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/artifacts/model/python_env.yaml b/mlartifacts/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlartifacts/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/artifacts/model/requirements.txt b/mlartifacts/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/artifacts/model/requirements.txt deleted file mode 100644 index 6198c1c092c7fa46d9d9a627509faebf0eeecc89..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 -xgboost==2.1.1 \ No newline at end of file diff --git a/mlartifacts/674375719018272828/613e592c317949abb0b86f18100a354c/artifacts/feature_importance_weight.json b/mlartifacts/674375719018272828/613e592c317949abb0b86f18100a354c/artifacts/feature_importance_weight.json deleted file mode 100644 index c93f392734f5dd8aabf786297d1772f7e21315e4..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/613e592c317949abb0b86f18100a354c/artifacts/feature_importance_weight.json +++ /dev/null @@ -1 +0,0 @@ -{"f0": 30335.0, "f1": 12283.0, "f2": 8903.0, "f3": 6526.0, "f4": 8117.0, "f5": 7541.0, "f6": 6146.0, "f7": 6050.0, "f8": 3123.0, "f9": 3844.0, "f10": 6510.0, "f11": 4622.0, "f12": 3717.0, "f13": 3799.0, "f14": 2906.0, "f15": 3587.0, "f16": 3904.0, "f17": 4225.0, "f18": 3999.0, "f19": 2503.0, "f20": 2764.0, "f21": 4179.0, "f22": 4006.0, "f23": 3549.0, "f24": 3621.0, "f25": 2669.0, "f26": 2954.0, "f27": 3504.0, "f28": 3645.0, "f29": 3696.0, "f30": 2283.0, "f31": 2338.0, "f32": 3725.0} \ No newline at end of file diff --git a/mlartifacts/674375719018272828/613e592c317949abb0b86f18100a354c/artifacts/feature_importance_weight.png b/mlartifacts/674375719018272828/613e592c317949abb0b86f18100a354c/artifacts/feature_importance_weight.png deleted file mode 100644 index 9901a03765bd0ba73ff8b0721fb2ff8a614e8f01..0000000000000000000000000000000000000000 Binary files a/mlartifacts/674375719018272828/613e592c317949abb0b86f18100a354c/artifacts/feature_importance_weight.png and /dev/null differ diff --git a/mlartifacts/674375719018272828/613e592c317949abb0b86f18100a354c/artifacts/model/MLmodel b/mlartifacts/674375719018272828/613e592c317949abb0b86f18100a354c/artifacts/model/MLmodel deleted file mode 100644 index 3f63784ff4eea12559ea0e800605029436054ced..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/613e592c317949abb0b86f18100a354c/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - data: model.xgb - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.xgboost - python_version: 3.11.0 - xgboost: - code: null - data: model.xgb - model_class: xgboost.sklearn.XGBRegressor - model_format: xgb - xgb_version: 2.1.1 -mlflow_version: 2.16.2 -model_size_bytes: 12354728 -model_uuid: fa950ae2169a47128401ab637dab6f5c -run_id: 613e592c317949abb0b86f18100a354c -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float32", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-29 20:40:34.164593' diff --git a/mlartifacts/674375719018272828/613e592c317949abb0b86f18100a354c/artifacts/model/conda.yaml b/mlartifacts/674375719018272828/613e592c317949abb0b86f18100a354c/artifacts/model/conda.yaml deleted file mode 100644 index e6b4b66656c7d8c82ff1035e8527aaa5131aed50..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/613e592c317949abb0b86f18100a354c/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 - - xgboost==2.1.1 -name: mlflow-env diff --git a/mlartifacts/674375719018272828/613e592c317949abb0b86f18100a354c/artifacts/model/model.xgb b/mlartifacts/674375719018272828/613e592c317949abb0b86f18100a354c/artifacts/model/model.xgb deleted file mode 100644 index 79a2cdde147f29f1270c73f3146f7f011f39c6ba..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/613e592c317949abb0b86f18100a354c/artifacts/model/model.xgb +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c823873e6e051da216bde5618c3db8390d1cdc8e1edd143c59272d69548fc05f -size 12354728 diff --git a/mlartifacts/674375719018272828/613e592c317949abb0b86f18100a354c/artifacts/model/python_env.yaml b/mlartifacts/674375719018272828/613e592c317949abb0b86f18100a354c/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/613e592c317949abb0b86f18100a354c/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlartifacts/674375719018272828/613e592c317949abb0b86f18100a354c/artifacts/model/requirements.txt b/mlartifacts/674375719018272828/613e592c317949abb0b86f18100a354c/artifacts/model/requirements.txt deleted file mode 100644 index 6198c1c092c7fa46d9d9a627509faebf0eeecc89..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/613e592c317949abb0b86f18100a354c/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 -xgboost==2.1.1 \ No newline at end of file diff --git a/mlartifacts/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/artifacts/feature_importance_weight.json b/mlartifacts/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/artifacts/feature_importance_weight.json deleted file mode 100644 index c93f392734f5dd8aabf786297d1772f7e21315e4..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/artifacts/feature_importance_weight.json +++ /dev/null @@ -1 +0,0 @@ -{"f0": 30335.0, "f1": 12283.0, "f2": 8903.0, "f3": 6526.0, "f4": 8117.0, "f5": 7541.0, "f6": 6146.0, "f7": 6050.0, "f8": 3123.0, "f9": 3844.0, "f10": 6510.0, "f11": 4622.0, "f12": 3717.0, "f13": 3799.0, "f14": 2906.0, "f15": 3587.0, "f16": 3904.0, "f17": 4225.0, "f18": 3999.0, "f19": 2503.0, "f20": 2764.0, "f21": 4179.0, "f22": 4006.0, "f23": 3549.0, "f24": 3621.0, "f25": 2669.0, "f26": 2954.0, "f27": 3504.0, "f28": 3645.0, "f29": 3696.0, "f30": 2283.0, "f31": 2338.0, "f32": 3725.0} \ No newline at end of file diff --git a/mlartifacts/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/artifacts/feature_importance_weight.png b/mlartifacts/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/artifacts/feature_importance_weight.png deleted file mode 100644 index 9901a03765bd0ba73ff8b0721fb2ff8a614e8f01..0000000000000000000000000000000000000000 Binary files a/mlartifacts/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/artifacts/feature_importance_weight.png and /dev/null differ diff --git a/mlartifacts/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/artifacts/model/MLmodel b/mlartifacts/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/artifacts/model/MLmodel deleted file mode 100644 index 55c985728cd3389a05b08df2a20f976373788eca..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - data: model.xgb - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.xgboost - python_version: 3.11.0 - xgboost: - code: null - data: model.xgb - model_class: xgboost.sklearn.XGBRegressor - model_format: xgb - xgb_version: 2.1.1 -mlflow_version: 2.16.2 -model_size_bytes: 12354728 -model_uuid: 95d8f73e972b41e49e2291370f132bd9 -run_id: 976bcbfebc774af6b12bc6785df91a9c -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float32", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-30 16:25:07.964079' diff --git a/mlartifacts/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/artifacts/model/conda.yaml b/mlartifacts/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/artifacts/model/conda.yaml deleted file mode 100644 index e6b4b66656c7d8c82ff1035e8527aaa5131aed50..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 - - xgboost==2.1.1 -name: mlflow-env diff --git a/mlartifacts/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/artifacts/model/model.xgb b/mlartifacts/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/artifacts/model/model.xgb deleted file mode 100644 index 79a2cdde147f29f1270c73f3146f7f011f39c6ba..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/artifacts/model/model.xgb +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c823873e6e051da216bde5618c3db8390d1cdc8e1edd143c59272d69548fc05f -size 12354728 diff --git a/mlartifacts/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/artifacts/model/python_env.yaml b/mlartifacts/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlartifacts/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/artifacts/model/requirements.txt b/mlartifacts/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/artifacts/model/requirements.txt deleted file mode 100644 index 6198c1c092c7fa46d9d9a627509faebf0eeecc89..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 -xgboost==2.1.1 \ No newline at end of file diff --git a/mlartifacts/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/artifacts/feature_importance_weight.json b/mlartifacts/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/artifacts/feature_importance_weight.json deleted file mode 100644 index c93f392734f5dd8aabf786297d1772f7e21315e4..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/artifacts/feature_importance_weight.json +++ /dev/null @@ -1 +0,0 @@ -{"f0": 30335.0, "f1": 12283.0, "f2": 8903.0, "f3": 6526.0, "f4": 8117.0, "f5": 7541.0, "f6": 6146.0, "f7": 6050.0, "f8": 3123.0, "f9": 3844.0, "f10": 6510.0, "f11": 4622.0, "f12": 3717.0, "f13": 3799.0, "f14": 2906.0, "f15": 3587.0, "f16": 3904.0, "f17": 4225.0, "f18": 3999.0, "f19": 2503.0, "f20": 2764.0, "f21": 4179.0, "f22": 4006.0, "f23": 3549.0, "f24": 3621.0, "f25": 2669.0, "f26": 2954.0, "f27": 3504.0, "f28": 3645.0, "f29": 3696.0, "f30": 2283.0, "f31": 2338.0, "f32": 3725.0} \ No newline at end of file diff --git a/mlartifacts/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/artifacts/feature_importance_weight.png b/mlartifacts/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/artifacts/feature_importance_weight.png deleted file mode 100644 index 9901a03765bd0ba73ff8b0721fb2ff8a614e8f01..0000000000000000000000000000000000000000 Binary files a/mlartifacts/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/artifacts/feature_importance_weight.png and /dev/null differ diff --git a/mlartifacts/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/artifacts/model/MLmodel b/mlartifacts/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/artifacts/model/MLmodel deleted file mode 100644 index 9eb6b89502151980f262979ea82b4503cbf73930..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - data: model.xgb - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.xgboost - python_version: 3.11.0 - xgboost: - code: null - data: model.xgb - model_class: xgboost.sklearn.XGBRegressor - model_format: xgb - xgb_version: 2.1.1 -mlflow_version: 2.16.2 -model_size_bytes: 12354728 -model_uuid: e6fbedea3ece4da9ad5612e8efaf58b3 -run_id: accdc880bb474188a8274ccfb0cf0d66 -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float32", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-30 11:42:28.142214' diff --git a/mlartifacts/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/artifacts/model/conda.yaml b/mlartifacts/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/artifacts/model/conda.yaml deleted file mode 100644 index e6b4b66656c7d8c82ff1035e8527aaa5131aed50..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 - - xgboost==2.1.1 -name: mlflow-env diff --git a/mlartifacts/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/artifacts/model/model.xgb b/mlartifacts/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/artifacts/model/model.xgb deleted file mode 100644 index 79a2cdde147f29f1270c73f3146f7f011f39c6ba..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/artifacts/model/model.xgb +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c823873e6e051da216bde5618c3db8390d1cdc8e1edd143c59272d69548fc05f -size 12354728 diff --git a/mlartifacts/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/artifacts/model/python_env.yaml b/mlartifacts/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlartifacts/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/artifacts/model/requirements.txt b/mlartifacts/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/artifacts/model/requirements.txt deleted file mode 100644 index 6198c1c092c7fa46d9d9a627509faebf0eeecc89..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 -xgboost==2.1.1 \ No newline at end of file diff --git a/mlartifacts/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/artifacts/feature_importance_weight.json b/mlartifacts/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/artifacts/feature_importance_weight.json deleted file mode 100644 index c93f392734f5dd8aabf786297d1772f7e21315e4..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/artifacts/feature_importance_weight.json +++ /dev/null @@ -1 +0,0 @@ -{"f0": 30335.0, "f1": 12283.0, "f2": 8903.0, "f3": 6526.0, "f4": 8117.0, "f5": 7541.0, "f6": 6146.0, "f7": 6050.0, "f8": 3123.0, "f9": 3844.0, "f10": 6510.0, "f11": 4622.0, "f12": 3717.0, "f13": 3799.0, "f14": 2906.0, "f15": 3587.0, "f16": 3904.0, "f17": 4225.0, "f18": 3999.0, "f19": 2503.0, "f20": 2764.0, "f21": 4179.0, "f22": 4006.0, "f23": 3549.0, "f24": 3621.0, "f25": 2669.0, "f26": 2954.0, "f27": 3504.0, "f28": 3645.0, "f29": 3696.0, "f30": 2283.0, "f31": 2338.0, "f32": 3725.0} \ No newline at end of file diff --git a/mlartifacts/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/artifacts/feature_importance_weight.png b/mlartifacts/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/artifacts/feature_importance_weight.png deleted file mode 100644 index 9901a03765bd0ba73ff8b0721fb2ff8a614e8f01..0000000000000000000000000000000000000000 Binary files a/mlartifacts/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/artifacts/feature_importance_weight.png and /dev/null differ diff --git a/mlartifacts/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/artifacts/model/MLmodel b/mlartifacts/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/artifacts/model/MLmodel deleted file mode 100644 index 6be8fb6d16aee261edc7e0c2f44a9741a5c258ee..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - data: model.xgb - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.xgboost - python_version: 3.11.0 - xgboost: - code: null - data: model.xgb - model_class: xgboost.sklearn.XGBRegressor - model_format: xgb - xgb_version: 2.1.1 -mlflow_version: 2.16.2 -model_size_bytes: 12354728 -model_uuid: 396887145670421a8e9de946e780f70c -run_id: cd9988d7e06c48de83346b5b74c4bb2b -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float32", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-29 22:07:19.914112' diff --git a/mlartifacts/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/artifacts/model/conda.yaml b/mlartifacts/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/artifacts/model/conda.yaml deleted file mode 100644 index e6b4b66656c7d8c82ff1035e8527aaa5131aed50..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 - - xgboost==2.1.1 -name: mlflow-env diff --git a/mlartifacts/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/artifacts/model/model.xgb b/mlartifacts/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/artifacts/model/model.xgb deleted file mode 100644 index 79a2cdde147f29f1270c73f3146f7f011f39c6ba..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/artifacts/model/model.xgb +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c823873e6e051da216bde5618c3db8390d1cdc8e1edd143c59272d69548fc05f -size 12354728 diff --git a/mlartifacts/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/artifacts/model/python_env.yaml b/mlartifacts/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlartifacts/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/artifacts/model/requirements.txt b/mlartifacts/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/artifacts/model/requirements.txt deleted file mode 100644 index 6198c1c092c7fa46d9d9a627509faebf0eeecc89..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 -xgboost==2.1.1 \ No newline at end of file diff --git a/mlartifacts/674375719018272828/f431bc7dfc364411bfea5e73327458d1/artifacts/feature_importance_weight.json b/mlartifacts/674375719018272828/f431bc7dfc364411bfea5e73327458d1/artifacts/feature_importance_weight.json deleted file mode 100644 index c93f392734f5dd8aabf786297d1772f7e21315e4..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/f431bc7dfc364411bfea5e73327458d1/artifacts/feature_importance_weight.json +++ /dev/null @@ -1 +0,0 @@ -{"f0": 30335.0, "f1": 12283.0, "f2": 8903.0, "f3": 6526.0, "f4": 8117.0, "f5": 7541.0, "f6": 6146.0, "f7": 6050.0, "f8": 3123.0, "f9": 3844.0, "f10": 6510.0, "f11": 4622.0, "f12": 3717.0, "f13": 3799.0, "f14": 2906.0, "f15": 3587.0, "f16": 3904.0, "f17": 4225.0, "f18": 3999.0, "f19": 2503.0, "f20": 2764.0, "f21": 4179.0, "f22": 4006.0, "f23": 3549.0, "f24": 3621.0, "f25": 2669.0, "f26": 2954.0, "f27": 3504.0, "f28": 3645.0, "f29": 3696.0, "f30": 2283.0, "f31": 2338.0, "f32": 3725.0} \ No newline at end of file diff --git a/mlartifacts/674375719018272828/f431bc7dfc364411bfea5e73327458d1/artifacts/feature_importance_weight.png b/mlartifacts/674375719018272828/f431bc7dfc364411bfea5e73327458d1/artifacts/feature_importance_weight.png deleted file mode 100644 index 9901a03765bd0ba73ff8b0721fb2ff8a614e8f01..0000000000000000000000000000000000000000 Binary files a/mlartifacts/674375719018272828/f431bc7dfc364411bfea5e73327458d1/artifacts/feature_importance_weight.png and /dev/null differ diff --git a/mlartifacts/674375719018272828/f431bc7dfc364411bfea5e73327458d1/artifacts/model/MLmodel b/mlartifacts/674375719018272828/f431bc7dfc364411bfea5e73327458d1/artifacts/model/MLmodel deleted file mode 100644 index ac5c80e9a8ddc07a6c1f984b15703fdff08148a8..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/f431bc7dfc364411bfea5e73327458d1/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - data: model.xgb - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.xgboost - python_version: 3.11.0 - xgboost: - code: null - data: model.xgb - model_class: xgboost.sklearn.XGBRegressor - model_format: xgb - xgb_version: 2.1.1 -mlflow_version: 2.16.2 -model_size_bytes: 12354728 -model_uuid: e6dbc474179049ceaf181dcb2d2477ba -run_id: f431bc7dfc364411bfea5e73327458d1 -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float32", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-30 13:22:22.959048' diff --git a/mlartifacts/674375719018272828/f431bc7dfc364411bfea5e73327458d1/artifacts/model/conda.yaml b/mlartifacts/674375719018272828/f431bc7dfc364411bfea5e73327458d1/artifacts/model/conda.yaml deleted file mode 100644 index e6b4b66656c7d8c82ff1035e8527aaa5131aed50..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/f431bc7dfc364411bfea5e73327458d1/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 - - xgboost==2.1.1 -name: mlflow-env diff --git a/mlartifacts/674375719018272828/f431bc7dfc364411bfea5e73327458d1/artifacts/model/model.xgb b/mlartifacts/674375719018272828/f431bc7dfc364411bfea5e73327458d1/artifacts/model/model.xgb deleted file mode 100644 index 79a2cdde147f29f1270c73f3146f7f011f39c6ba..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/f431bc7dfc364411bfea5e73327458d1/artifacts/model/model.xgb +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c823873e6e051da216bde5618c3db8390d1cdc8e1edd143c59272d69548fc05f -size 12354728 diff --git a/mlartifacts/674375719018272828/f431bc7dfc364411bfea5e73327458d1/artifacts/model/python_env.yaml b/mlartifacts/674375719018272828/f431bc7dfc364411bfea5e73327458d1/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/f431bc7dfc364411bfea5e73327458d1/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlartifacts/674375719018272828/f431bc7dfc364411bfea5e73327458d1/artifacts/model/requirements.txt b/mlartifacts/674375719018272828/f431bc7dfc364411bfea5e73327458d1/artifacts/model/requirements.txt deleted file mode 100644 index 6198c1c092c7fa46d9d9a627509faebf0eeecc89..0000000000000000000000000000000000000000 --- a/mlartifacts/674375719018272828/f431bc7dfc364411bfea5e73327458d1/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 -xgboost==2.1.1 \ No newline at end of file diff --git a/mlruns/0/meta.yaml b/mlruns/0/meta.yaml index 09b4a6d0b2cbbd3b8947d4ffa407e2f1d5f63679..1c5997aaf44cf520773380faefc47499f324037e 100644 --- a/mlruns/0/meta.yaml +++ b/mlruns/0/meta.yaml @@ -1,6 +1,6 @@ -artifact_location: file:///C:/Users/User/ML4I/air-quality-forecast/mlruns/0 -creation_time: 1727640956735 +artifact_location: mlflow-artifacts:/0 +creation_time: 1727957563013 experiment_id: '0' -last_update_time: 1727640956735 +last_update_time: 1727957563013 lifecycle_stage: active name: Default diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/inputs/dd0e35259bcd70279473e4da28a45714/meta.yaml b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/inputs/2e8bc7c9de284038984f2458994db6fe/meta.yaml similarity index 100% rename from mlruns/149819317988706962/135e604974134ca4877227251e765174/inputs/dd0e35259bcd70279473e4da28a45714/meta.yaml rename to mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/inputs/2e8bc7c9de284038984f2458994db6fe/meta.yaml diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/meta.yaml b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/meta.yaml new file mode 100644 index 0000000000000000000000000000000000000000..9570463112feb90e9eb21f6ee45530a61af2dcbf --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/meta.yaml @@ -0,0 +1,15 @@ +artifact_uri: mlflow-artifacts:/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/artifacts +end_time: 1727958633753 +entry_point_name: '' +experiment_id: '146369756112246655' +lifecycle_stage: active +run_id: d55b4821b4974c04aeb9bb278c16e511 +run_name: awesome-elk-633 +run_uuid: d55b4821b4974c04aeb9bb278c16e511 +source_name: '' +source_type: 4 +source_version: '' +start_time: 1727957567720 +status: 3 +tags: [] +user_id: s5100534 diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/Correct Test MSE b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/Correct Test MSE new file mode 100644 index 0000000000000000000000000000000000000000..4e8c5acd0fc91375b9077bb6b87bbebf75c62395 --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/Correct Test MSE @@ -0,0 +1 @@ +1727958633692 36.68623149090272 0 diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/Correct Test RMSE b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/Correct Test RMSE new file mode 100644 index 0000000000000000000000000000000000000000..7feef73e69bdedc8435f5a3c0d14e1b2c624ca7b --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/Correct Test RMSE @@ -0,0 +1 @@ +1727958633729 5.762961721489746 0 diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/Correct Train MSE b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/Correct Train MSE new file mode 100644 index 0000000000000000000000000000000000000000..a846a6067658ae2efd6fb0fc6dd2d84b228d5076 --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/Correct Train MSE @@ -0,0 +1 @@ +1727958633682 43.834883898141506 0 diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/system/cpu_utilization_percentage b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/system/cpu_utilization_percentage new file mode 100644 index 0000000000000000000000000000000000000000..e70d63afc7b2fccdc8bd57f6a86dcd7a360bd49d --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/system/cpu_utilization_percentage @@ -0,0 +1,106 @@ +1727957577873 0.8 0 +1727957588032 2.5 1 +1727957598077 4.7 2 +1727957608115 4.7 3 +1727957618152 4.7 4 +1727957628190 4.6 5 +1727957638245 5.1 6 +1727957648290 4.7 7 +1727957658348 5.0 8 +1727957668390 5.4 9 +1727957678428 5.4 10 +1727957688466 5.1 11 +1727957698609 4.8 12 +1727957708648 3.5 13 +1727957718698 4.1 14 +1727957728746 5.5 15 +1727957738785 4.1 16 +1727957748824 4.5 17 +1727957758862 3.7 18 +1727957768902 5.0 19 +1727957779101 6.6 20 +1727957789166 7.6 21 +1727957799204 7.4 22 +1727957809242 6.4 23 +1727957819283 4.5 24 +1727957829323 4.6 25 +1727957839362 6.5 26 +1727957849417 6.3 27 +1727957859478 7.0 28 +1727957869521 6.2 29 +1727957879561 6.0 30 +1727957889602 3.3 31 +1727957899672 6.5 32 +1727957909748 6.8 33 +1727957919802 6.0 34 +1727957929844 6.5 35 +1727957939886 5.8 36 +1727957949927 5.0 37 +1727957959967 6.8 38 +1727957970009 7.4 39 +1727957980050 8.4 40 +1727957990092 7.6 41 +1727958000133 5.9 42 +1727958010174 5.6 43 +1727958020228 5.2 44 +1727958030273 7.2 45 +1727958040313 7.2 46 +1727958050354 6.8 47 +1727958060393 6.4 48 +1727958070524 5.7 49 +1727958080607 6.5 50 +1727958090650 8.1 51 +1727958100697 7.4 52 +1727958110743 7.5 53 +1727958120786 7.0 54 +1727958130828 3.1 55 +1727958140880 5.6 56 +1727958150939 6.1 57 +1727958160989 7.6 58 +1727958171032 7.3 59 +1727958181075 6.7 60 +1727958191116 2.8 61 +1727958201158 2.8 62 +1727958211207 7.0 63 +1727958221286 7.3 64 +1727958231340 5.8 65 +1727958241383 7.2 66 +1727958251424 4.7 67 +1727958261467 5.4 68 +1727958271510 7.1 69 +1727958281553 8.0 70 +1727958291597 6.5 71 +1727958301677 8.1 72 +1727958311724 7.1 73 +1727958321774 7.9 74 +1727958331824 5.2 75 +1727958341869 8.0 76 +1727958351910 8.2 77 +1727958361952 9.3 78 +1727958372002 8.9 79 +1727958382056 14.7 80 +1727958392100 13.5 81 +1727958402155 17.6 82 +1727958412199 17.7 83 +1727958422242 19.0 84 +1727958432284 17.7 85 +1727958442327 15.4 86 +1727958452444 15.4 87 +1727958462497 17.7 88 +1727958472541 15.8 89 +1727958482604 17.4 90 +1727958492666 16.2 91 +1727958502712 12.8 92 +1727958512756 14.1 93 +1727958522799 15.7 94 +1727958532843 17.2 95 +1727958542887 16.2 96 +1727958552933 18.0 97 +1727958562977 13.7 98 +1727958573023 16.7 99 +1727958583078 14.1 100 +1727958593126 11.4 101 +1727958603173 11.1 102 +1727958613219 13.7 103 +1727958623263 9.1 104 +1727958633313 8.7 105 diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/system/disk_available_megabytes b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/system/disk_available_megabytes new file mode 100644 index 0000000000000000000000000000000000000000..32ea2e70764360a40968e7acaa48c68f386ebeee --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/system/disk_available_megabytes @@ -0,0 +1,106 @@ +1727957577873 213537.3 0 +1727957588032 213537.3 1 +1727957598077 213537.3 2 +1727957608115 213537.3 3 +1727957618152 213537.3 4 +1727957628190 213537.3 5 +1727957638245 213537.3 6 +1727957648290 213537.3 7 +1727957658348 213537.3 8 +1727957668390 213537.3 9 +1727957678428 213537.3 10 +1727957688466 213537.3 11 +1727957698609 213537.3 12 +1727957708648 213537.3 13 +1727957718698 213537.3 14 +1727957728746 213537.3 15 +1727957738785 213537.3 16 +1727957748824 213537.3 17 +1727957758862 213537.3 18 +1727957768902 213537.3 19 +1727957779101 213537.3 20 +1727957789166 213537.3 21 +1727957799204 213537.3 22 +1727957809242 213537.3 23 +1727957819283 213537.3 24 +1727957829323 213537.3 25 +1727957839362 213537.3 26 +1727957849417 213537.3 27 +1727957859478 213537.3 28 +1727957869521 213537.3 29 +1727957879561 213537.3 30 +1727957889602 213537.3 31 +1727957899672 213537.3 32 +1727957909748 213537.3 33 +1727957919802 213537.3 34 +1727957929844 213537.3 35 +1727957939886 213537.3 36 +1727957949927 213537.3 37 +1727957959967 213537.3 38 +1727957970009 213537.3 39 +1727957980050 213537.3 40 +1727957990092 213537.3 41 +1727958000133 213537.3 42 +1727958010174 213537.3 43 +1727958020228 213537.3 44 +1727958030273 213537.3 45 +1727958040313 213537.3 46 +1727958050354 213537.3 47 +1727958060393 213537.3 48 +1727958070524 213537.3 49 +1727958080607 213537.3 50 +1727958090650 213537.3 51 +1727958100697 213537.3 52 +1727958110743 213537.3 53 +1727958120786 213537.3 54 +1727958130828 213537.3 55 +1727958140880 213537.3 56 +1727958150939 213537.3 57 +1727958160989 213537.3 58 +1727958171032 213537.3 59 +1727958181075 213537.3 60 +1727958191116 213537.3 61 +1727958201158 213537.3 62 +1727958211207 213537.3 63 +1727958221286 213537.3 64 +1727958231340 213537.3 65 +1727958241383 213537.3 66 +1727958251424 213537.3 67 +1727958261467 213537.3 68 +1727958271510 213537.3 69 +1727958281553 213537.3 70 +1727958291597 213537.3 71 +1727958301677 213537.3 72 +1727958311724 213537.3 73 +1727958321774 213537.3 74 +1727958331824 213537.3 75 +1727958341869 213537.3 76 +1727958351910 213536.1 77 +1727958361952 213535.4 78 +1727958372002 213535.4 79 +1727958382056 213535.5 80 +1727958392100 213536.0 81 +1727958402155 213536.0 82 +1727958412199 213536.0 83 +1727958422242 213536.0 84 +1727958432284 213536.0 85 +1727958442327 213536.0 86 +1727958452444 213536.0 87 +1727958462497 213536.0 88 +1727958472541 213536.0 89 +1727958482604 213536.0 90 +1727958492666 213536.0 91 +1727958502712 213536.0 92 +1727958512756 213536.0 93 +1727958522799 213536.0 94 +1727958532843 213536.0 95 +1727958542887 213536.0 96 +1727958552933 213536.0 97 +1727958562977 213536.0 98 +1727958573023 213536.0 99 +1727958583078 213536.0 100 +1727958593126 213536.0 101 +1727958603173 213535.5 102 +1727958613219 213482.8 103 +1727958623263 213483.1 104 +1727958633313 213483.1 105 diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/system/disk_usage_megabytes b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/system/disk_usage_megabytes new file mode 100644 index 0000000000000000000000000000000000000000..53bf3025e61c59ffa4626dbdb54d8ad997f2cd9f --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/system/disk_usage_megabytes @@ -0,0 +1,106 @@ +1727957577873 25282.2 0 +1727957588032 25282.2 1 +1727957598077 25282.2 2 +1727957608115 25282.2 3 +1727957618152 25282.2 4 +1727957628190 25282.2 5 +1727957638245 25282.2 6 +1727957648290 25282.2 7 +1727957658348 25282.2 8 +1727957668390 25282.2 9 +1727957678428 25282.2 10 +1727957688466 25282.2 11 +1727957698609 25282.2 12 +1727957708648 25282.2 13 +1727957718698 25282.2 14 +1727957728746 25282.2 15 +1727957738785 25282.2 16 +1727957748824 25282.2 17 +1727957758862 25282.2 18 +1727957768902 25282.2 19 +1727957779101 25282.2 20 +1727957789166 25282.2 21 +1727957799204 25282.2 22 +1727957809242 25282.2 23 +1727957819283 25282.2 24 +1727957829323 25282.2 25 +1727957839362 25282.2 26 +1727957849417 25282.2 27 +1727957859478 25282.2 28 +1727957869521 25282.2 29 +1727957879561 25282.2 30 +1727957889602 25282.2 31 +1727957899672 25282.2 32 +1727957909748 25282.2 33 +1727957919802 25282.2 34 +1727957929844 25282.2 35 +1727957939886 25282.2 36 +1727957949927 25282.2 37 +1727957959967 25282.2 38 +1727957970009 25282.2 39 +1727957980050 25282.2 40 +1727957990092 25282.2 41 +1727958000133 25282.2 42 +1727958010174 25282.2 43 +1727958020228 25282.2 44 +1727958030273 25282.2 45 +1727958040313 25282.2 46 +1727958050354 25282.2 47 +1727958060393 25282.2 48 +1727958070524 25282.2 49 +1727958080607 25282.2 50 +1727958090650 25282.2 51 +1727958100697 25282.2 52 +1727958110743 25282.2 53 +1727958120786 25282.2 54 +1727958130828 25282.2 55 +1727958140880 25282.2 56 +1727958150939 25282.2 57 +1727958160989 25282.2 58 +1727958171032 25282.2 59 +1727958181075 25282.2 60 +1727958191116 25282.2 61 +1727958201158 25282.2 62 +1727958211207 25282.2 63 +1727958221286 25282.2 64 +1727958231340 25282.2 65 +1727958241383 25282.2 66 +1727958251424 25282.2 67 +1727958261467 25282.2 68 +1727958271510 25282.2 69 +1727958281553 25282.2 70 +1727958291597 25282.2 71 +1727958301677 25282.2 72 +1727958311724 25282.2 73 +1727958321774 25282.2 74 +1727958331824 25282.2 75 +1727958341869 25282.2 76 +1727958351910 25283.3 77 +1727958361952 25284.0 78 +1727958372002 25284.0 79 +1727958382056 25284.0 80 +1727958392100 25283.5 81 +1727958402155 25283.5 82 +1727958412199 25283.5 83 +1727958422242 25283.5 84 +1727958432284 25283.5 85 +1727958442327 25283.5 86 +1727958452444 25283.5 87 +1727958462497 25283.5 88 +1727958472541 25283.5 89 +1727958482604 25283.5 90 +1727958492666 25283.5 91 +1727958502712 25283.5 92 +1727958512756 25283.5 93 +1727958522799 25283.5 94 +1727958532843 25283.5 95 +1727958542887 25283.5 96 +1727958552933 25283.5 97 +1727958562977 25283.5 98 +1727958573023 25283.5 99 +1727958583078 25283.5 100 +1727958593126 25283.5 101 +1727958603173 25284.0 102 +1727958613219 25336.7 103 +1727958623263 25336.3 104 +1727958633313 25336.4 105 diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/system/disk_usage_percentage b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/system/disk_usage_percentage new file mode 100644 index 0000000000000000000000000000000000000000..912972c960d2aa1fdda7a784d0c530ae525c6dc1 --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/system/disk_usage_percentage @@ -0,0 +1,106 @@ +1727957577873 10.6 0 +1727957588032 10.6 1 +1727957598077 10.6 2 +1727957608115 10.6 3 +1727957618152 10.6 4 +1727957628190 10.6 5 +1727957638245 10.6 6 +1727957648290 10.6 7 +1727957658348 10.6 8 +1727957668390 10.6 9 +1727957678428 10.6 10 +1727957688466 10.6 11 +1727957698609 10.6 12 +1727957708648 10.6 13 +1727957718698 10.6 14 +1727957728746 10.6 15 +1727957738785 10.6 16 +1727957748824 10.6 17 +1727957758862 10.6 18 +1727957768902 10.6 19 +1727957779101 10.6 20 +1727957789166 10.6 21 +1727957799204 10.6 22 +1727957809242 10.6 23 +1727957819283 10.6 24 +1727957829323 10.6 25 +1727957839362 10.6 26 +1727957849417 10.6 27 +1727957859478 10.6 28 +1727957869521 10.6 29 +1727957879561 10.6 30 +1727957889602 10.6 31 +1727957899672 10.6 32 +1727957909748 10.6 33 +1727957919802 10.6 34 +1727957929844 10.6 35 +1727957939886 10.6 36 +1727957949927 10.6 37 +1727957959967 10.6 38 +1727957970009 10.6 39 +1727957980050 10.6 40 +1727957990092 10.6 41 +1727958000133 10.6 42 +1727958010174 10.6 43 +1727958020228 10.6 44 +1727958030273 10.6 45 +1727958040313 10.6 46 +1727958050354 10.6 47 +1727958060393 10.6 48 +1727958070524 10.6 49 +1727958080607 10.6 50 +1727958090650 10.6 51 +1727958100697 10.6 52 +1727958110743 10.6 53 +1727958120786 10.6 54 +1727958130828 10.6 55 +1727958140880 10.6 56 +1727958150939 10.6 57 +1727958160989 10.6 58 +1727958171032 10.6 59 +1727958181075 10.6 60 +1727958191116 10.6 61 +1727958201158 10.6 62 +1727958211207 10.6 63 +1727958221286 10.6 64 +1727958231340 10.6 65 +1727958241383 10.6 66 +1727958251424 10.6 67 +1727958261467 10.6 68 +1727958271510 10.6 69 +1727958281553 10.6 70 +1727958291597 10.6 71 +1727958301677 10.6 72 +1727958311724 10.6 73 +1727958321774 10.6 74 +1727958331824 10.6 75 +1727958341869 10.6 76 +1727958351910 10.6 77 +1727958361952 10.6 78 +1727958372002 10.6 79 +1727958382056 10.6 80 +1727958392100 10.6 81 +1727958402155 10.6 82 +1727958412199 10.6 83 +1727958422242 10.6 84 +1727958432284 10.6 85 +1727958442327 10.6 86 +1727958452444 10.6 87 +1727958462497 10.6 88 +1727958472541 10.6 89 +1727958482604 10.6 90 +1727958492666 10.6 91 +1727958502712 10.6 92 +1727958512756 10.6 93 +1727958522799 10.6 94 +1727958532843 10.6 95 +1727958542887 10.6 96 +1727958552933 10.6 97 +1727958562977 10.6 98 +1727958573023 10.6 99 +1727958583078 10.6 100 +1727958593126 10.6 101 +1727958603173 10.6 102 +1727958613219 10.6 103 +1727958623263 10.6 104 +1727958633313 10.6 105 diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/system/network_receive_megabytes b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/system/network_receive_megabytes new file mode 100644 index 0000000000000000000000000000000000000000..3e663260246778ec8ab901672920c5b93dd40e5f --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/system/network_receive_megabytes @@ -0,0 +1,106 @@ +1727957577873 0.0034620165824890137 0 +1727957588032 3.632502019405365 1 +1727957598077 4.967747002840042 2 +1727957608115 6.335117012262344 3 +1727957618152 7.731622010469437 4 +1727957628190 9.178969025611877 5 +1727957638245 10.742134004831314 6 +1727957648290 12.12694200873375 7 +1727957658348 13.496025025844574 8 +1727957668390 14.936485022306442 9 +1727957678428 16.386095017194748 10 +1727957688466 17.945590019226074 11 +1727957698609 19.378534018993378 12 +1727957708648 20.620715022087097 13 +1727957718698 21.746834009885788 14 +1727957728746 23.18246501684189 15 +1727957738785 24.392355024814606 16 +1727957748824 25.77562102675438 17 +1727957758862 27.160198003053665 18 +1727957768902 28.493696004152298 19 +1727957779101 29.98649302124977 20 +1727957789166 31.38188600540161 21 +1727957799204 32.67900800704956 22 +1727957809242 33.91488102078438 23 +1727957819283 34.973798006772995 24 +1727957829323 36.039433002471924 25 +1727957839362 37.241624027490616 26 +1727957849417 38.435243010520935 27 +1727957859478 39.726849019527435 28 +1727957869521 41.04778000712395 29 +1727957879561 42.26393300294876 30 +1727957889602 43.114922016859055 31 +1727957899672 44.36539000272751 32 +1727957909748 45.711659014225006 33 +1727957919802 46.80529001355171 34 +1727957929844 48.03257501125336 35 +1727957939886 49.35298401117325 36 +1727957949927 50.569680005311966 37 +1727957959967 51.85735401511192 38 +1727957970009 53.20216402411461 39 +1727957980050 54.61690402030945 40 +1727957990092 56.01087599992752 41 +1727958000133 57.22992300987244 42 +1727958010174 58.509902000427246 43 +1727958020228 59.564056009054184 44 +1727958030273 60.826287001371384 45 +1727958040313 62.08689400553703 46 +1727958050354 63.392611026763916 47 +1727958060393 64.70412001013756 48 +1727958070524 65.91942700743675 49 +1727958080607 67.31965002417564 50 +1727958090650 68.6210940182209 51 +1727958100697 70.06536102294922 52 +1727958110743 71.3958860039711 53 +1727958120786 72.75726202130318 54 +1727958130828 73.56991901993752 55 +1727958140880 74.84965699911118 56 +1727958150939 76.02309900522232 57 +1727958160989 77.296816021204 58 +1727958171032 78.65248602628708 59 +1727958181075 79.96713501214981 60 +1727958191116 80.76649102568626 61 +1727958201158 81.59785401821136 62 +1727958211207 82.98701500892639 63 +1727958221286 84.42623701691628 64 +1727958231340 85.59492599964142 65 +1727958241383 86.81768000125885 66 +1727958251424 87.94193202257156 67 +1727958261467 89.17335802316666 68 +1727958271510 90.56172600388527 69 +1727958281553 91.93739801645279 70 +1727958291597 93.16804501414299 71 +1727958301677 94.54619601368904 72 +1727958311724 95.93062302470207 73 +1727958321774 97.44497501850128 74 +1727958331824 98.6670450270176 75 +1727958341869 100.16827702522278 76 +1727958351910 102.99598002433777 77 +1727958361952 412.4830760061741 78 +1727958372002 766.462613016367 79 +1727958382056 767.6442780196667 80 +1727958392100 7331.544391006231 81 +1727958402155 10018.675987005234 82 +1727958412199 12149.178030014038 83 +1727958422242 14623.190233021975 84 +1727958432284 16434.86609402299 85 +1727958442327 18720.052568018436 86 +1727958452444 20920.70256102085 87 +1727958462497 22901.66968500614 88 +1727958472541 25152.997867017984 89 +1727958482604 27201.573152005672 90 +1727958492666 29313.361711025238 91 +1727958502712 31145.703360021114 92 +1727958512756 33346.037932008505 93 +1727958522799 35870.76386600733 94 +1727958532843 37310.07655900717 95 +1727958542887 39469.441756010056 96 +1727958552933 40925.989822000265 97 +1727958562977 42552.470638006926 98 +1727958573023 44010.535888016224 99 +1727958583078 44925.32901400328 100 +1727958593126 46059.63663101196 101 +1727958603173 46972.820451021194 102 +1727958613219 47700.56650400162 103 +1727958623263 48256.12301802635 104 +1727958633313 48882.335067003965 105 diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/system/network_transmit_megabytes b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/system/network_transmit_megabytes new file mode 100644 index 0000000000000000000000000000000000000000..86f983cc3f22935b60bf29945d2ffa056972c9b7 --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/system/network_transmit_megabytes @@ -0,0 +1,106 @@ +1727957577873 0.005066007375717163 0 +1727957588032 3.607303023338318 1 +1727957598077 5.14799901843071 2 +1727957608115 6.813135027885437 3 +1727957618152 8.521618008613586 4 +1727957628190 10.078588008880615 5 +1727957638245 11.780218005180359 6 +1727957648290 13.309787005186081 7 +1727957658348 14.87441200017929 8 +1727957668390 16.528963029384613 9 +1727957678428 18.242820024490356 10 +1727957688466 19.972608000040054 11 +1727957698609 21.541192024946213 12 +1727957708648 22.96238201856613 13 +1727957718698 24.238918006420135 14 +1727957728746 25.91780400276184 15 +1727957738785 27.37746900320053 16 +1727957748824 28.96371802687645 17 +1727957758862 30.523827999830246 18 +1727957768902 31.985609024763107 19 +1727957779101 33.74685600399971 20 +1727957789166 35.401682019233704 21 +1727957799204 36.99202302098274 22 +1727957809242 38.46610102057457 23 +1727957819283 39.612726002931595 24 +1727957829323 40.85307502746582 25 +1727957839362 42.30889701843262 26 +1727957849417 43.764562010765076 27 +1727957859478 45.29593700170517 28 +1727957869521 46.873845010995865 29 +1727957879561 48.33922001719475 30 +1727957889602 49.24301600456238 31 +1727957899672 50.77061602473259 32 +1727957909748 52.562091022729874 33 +1727957919802 53.98584300279617 34 +1727957929844 55.41302600502968 35 +1727957939886 57.01673102378845 36 +1727957949927 58.33880001306534 37 +1727957959967 59.925482004880905 38 +1727957970009 61.596336007118225 39 +1727957980050 63.41482001543045 40 +1727957990092 65.12088602781296 41 +1727958000133 66.49336901307106 42 +1727958010174 68.07285302877426 43 +1727958020228 69.40479302406311 44 +1727958030273 70.8963230252266 45 +1727958040313 72.55017602443695 46 +1727958050354 74.21938502788544 47 +1727958060393 75.75582301616669 48 +1727958070524 77.2450960278511 49 +1727958080607 78.98986402153969 50 +1727958090650 80.66708600521088 51 +1727958100697 82.39183700084686 52 +1727958110743 84.09792500734329 53 +1727958120786 85.83257901668549 54 +1727958130828 86.78672602772713 55 +1727958140880 88.25675401091576 56 +1727958150939 89.82671102881432 57 +1727958160989 91.40477401018143 58 +1727958171032 93.17100602388382 59 +1727958181075 94.90637201070786 60 +1727958191116 95.70712000131607 61 +1727958201158 96.85274600982666 62 +1727958211207 98.79867801070213 63 +1727958221286 100.71441802382469 64 +1727958231340 102.12002900242805 65 +1727958241383 103.77700001001358 66 +1727958251424 105.12140801548958 67 +1727958261467 106.72526600956917 68 +1727958271510 108.38610500097275 69 +1727958281553 110.26772701740265 70 +1727958291597 111.9261420071125 71 +1727958301677 113.77846702933311 72 +1727958311724 115.41900500655174 73 +1727958321774 117.39623901247978 74 +1727958331824 118.84608700871468 75 +1727958341869 120.87833100557327 76 +1727958351910 124.21609702706337 77 +1727958361952 128.59036400914192 78 +1727958372002 132.06163600087166 79 +1727958382056 133.5205950140953 80 +1727958392100 147.8076820075512 81 +1727958402155 155.01904702186584 82 +1727958412199 161.02218702435493 83 +1727958422242 167.5355540215969 84 +1727958432284 172.72657802700996 85 +1727958442327 178.73761200904846 86 +1727958452444 184.7298850119114 87 +1727958462497 190.45264300704002 88 +1727958472541 196.40961900353432 89 +1727958482604 202.41558700799942 90 +1727958492666 208.19755101203918 91 +1727958502712 212.53033700585365 92 +1727958512756 218.440083026886 93 +1727958522799 225.02980202436447 94 +1727958532843 229.65908801555634 95 +1727958542887 235.4465630054474 96 +1727958552933 240.27964800596237 97 +1727958562977 244.8463940024376 98 +1727958573023 249.32474201917648 99 +1727958583078 252.59557902812958 100 +1727958593126 257.3148100078106 101 +1727958603173 259.93323400616646 102 +1727958613219 262.2287900149822 103 +1727958623263 263.80598801374435 104 +1727958633313 265.0984350144863 105 diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/system/system_memory_usage_megabytes b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/system/system_memory_usage_megabytes new file mode 100644 index 0000000000000000000000000000000000000000..759d81dd3a9695d16dbd0e75a4a01983100c7e79 --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/system/system_memory_usage_megabytes @@ -0,0 +1,106 @@ +1727957577873 11475.7 0 +1727957588032 14612.4 1 +1727957598077 14411.7 2 +1727957608115 14533.6 3 +1727957618152 14440.4 4 +1727957628190 14531.2 5 +1727957638245 14489.2 6 +1727957648290 14419.6 7 +1727957658348 14520.0 8 +1727957668390 14510.7 9 +1727957678428 14482.2 10 +1727957688466 14450.9 11 +1727957698609 14512.1 12 +1727957708648 14436.0 13 +1727957718698 14438.9 14 +1727957728746 14429.4 15 +1727957738785 14503.8 16 +1727957748824 14542.6 17 +1727957758862 14438.3 18 +1727957768902 14533.0 19 +1727957779101 14510.8 20 +1727957789166 14428.0 21 +1727957799204 14548.4 22 +1727957809242 14494.7 23 +1727957819283 14490.5 24 +1727957829323 14497.7 25 +1727957839362 14504.9 26 +1727957849417 14419.5 27 +1727957859478 14314.7 28 +1727957869521 14293.6 29 +1727957879561 14310.3 30 +1727957889602 14406.9 31 +1727957899672 14414.9 32 +1727957909748 14318.6 33 +1727957919802 14296.9 34 +1727957929844 14419.8 35 +1727957939886 14315.2 36 +1727957949927 14415.3 37 +1727957959967 14418.8 38 +1727957970009 14171.4 39 +1727957980050 14188.1 40 +1727957990092 14154.1 41 +1727958000133 14130.7 42 +1727958010174 14147.7 43 +1727958020228 14210.2 44 +1727958030273 14128.2 45 +1727958040313 13774.9 46 +1727958050354 13771.7 47 +1727958060393 13690.6 48 +1727958070524 13769.1 49 +1727958080607 13659.3 50 +1727958090650 13679.2 51 +1727958100697 13551.7 52 +1727958110743 13492.2 53 +1727958120786 13521.2 54 +1727958130828 13601.2 55 +1727958140880 13356.9 56 +1727958150939 13358.3 57 +1727958160989 13326.2 58 +1727958171032 13438.2 59 +1727958181075 13310.9 60 +1727958191116 13365.3 61 +1727958201158 13397.1 62 +1727958211207 13342.8 63 +1727958221286 13302.5 64 +1727958231340 13289.5 65 +1727958241383 13413.5 66 +1727958251424 13272.1 67 +1727958261467 13260.5 68 +1727958271510 13163.9 69 +1727958281553 13170.5 70 +1727958291597 13163.3 71 +1727958301677 13163.4 72 +1727958311724 13204.9 73 +1727958321774 13200.9 74 +1727958331824 13110.5 75 +1727958341869 13217.7 76 +1727958351910 13359.2 77 +1727958361952 13345.4 78 +1727958372002 22049.2 79 +1727958382056 54830.0 80 +1727958392100 50761.6 81 +1727958402155 51786.1 82 +1727958412199 52055.7 83 +1727958422242 52223.1 84 +1727958432284 52348.5 85 +1727958442327 52563.3 86 +1727958452444 52763.0 87 +1727958462497 52853.6 88 +1727958472541 53146.1 89 +1727958482604 53275.2 90 +1727958492666 53365.1 91 +1727958502712 53500.9 92 +1727958512756 53779.0 93 +1727958522799 53867.8 94 +1727958532843 54040.1 95 +1727958542887 54277.9 96 +1727958552933 54571.4 97 +1727958562977 55090.7 98 +1727958573023 55814.7 99 +1727958583078 55469.9 100 +1727958593126 53709.5 101 +1727958603173 51732.4 102 +1727958613219 50512.8 103 +1727958623263 50467.0 104 +1727958633313 47684.3 105 diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/system/system_memory_usage_percentage b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/system/system_memory_usage_percentage new file mode 100644 index 0000000000000000000000000000000000000000..f6145699050b6cbd4634351f97a198073ea0f58b --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/system/system_memory_usage_percentage @@ -0,0 +1,106 @@ +1727957577873 2.1 0 +1727957588032 2.7 1 +1727957598077 2.7 2 +1727957608115 2.7 3 +1727957618152 2.7 4 +1727957628190 2.7 5 +1727957638245 2.7 6 +1727957648290 2.7 7 +1727957658348 2.7 8 +1727957668390 2.7 9 +1727957678428 2.7 10 +1727957688466 2.7 11 +1727957698609 2.7 12 +1727957708648 2.7 13 +1727957718698 2.7 14 +1727957728746 2.7 15 +1727957738785 2.7 16 +1727957748824 2.7 17 +1727957758862 2.7 18 +1727957768902 2.7 19 +1727957779101 2.7 20 +1727957789166 2.7 21 +1727957799204 2.7 22 +1727957809242 2.7 23 +1727957819283 2.7 24 +1727957829323 2.7 25 +1727957839362 2.7 26 +1727957849417 2.7 27 +1727957859478 2.7 28 +1727957869521 2.6 29 +1727957879561 2.6 30 +1727957889602 2.7 31 +1727957899672 2.7 32 +1727957909748 2.7 33 +1727957919802 2.6 34 +1727957929844 2.7 35 +1727957939886 2.7 36 +1727957949927 2.7 37 +1727957959967 2.7 38 +1727957970009 2.6 39 +1727957980050 2.6 40 +1727957990092 2.6 41 +1727958000133 2.6 42 +1727958010174 2.6 43 +1727958020228 2.6 44 +1727958030273 2.6 45 +1727958040313 2.6 46 +1727958050354 2.6 47 +1727958060393 2.5 48 +1727958070524 2.5 49 +1727958080607 2.5 50 +1727958090650 2.5 51 +1727958100697 2.5 52 +1727958110743 2.5 53 +1727958120786 2.5 54 +1727958130828 2.5 55 +1727958140880 2.5 56 +1727958150939 2.5 57 +1727958160989 2.5 58 +1727958171032 2.5 59 +1727958181075 2.5 60 +1727958191116 2.5 61 +1727958201158 2.5 62 +1727958211207 2.5 63 +1727958221286 2.5 64 +1727958231340 2.5 65 +1727958241383 2.5 66 +1727958251424 2.5 67 +1727958261467 2.5 68 +1727958271510 2.4 69 +1727958281553 2.4 70 +1727958291597 2.4 71 +1727958301677 2.4 72 +1727958311724 2.4 73 +1727958321774 2.4 74 +1727958331824 2.4 75 +1727958341869 2.4 76 +1727958351910 2.5 77 +1727958361952 2.5 78 +1727958372002 4.1 79 +1727958382056 10.2 80 +1727958392100 9.4 81 +1727958402155 9.6 82 +1727958412199 9.6 83 +1727958422242 9.7 84 +1727958432284 9.7 85 +1727958442327 9.7 86 +1727958452444 9.8 87 +1727958462497 9.8 88 +1727958472541 9.8 89 +1727958482604 9.9 90 +1727958492666 9.9 91 +1727958502712 9.9 92 +1727958512756 10.0 93 +1727958522799 10.0 94 +1727958532843 10.0 95 +1727958542887 10.1 96 +1727958552933 10.1 97 +1727958562977 10.2 98 +1727958573023 10.3 99 +1727958583078 10.3 100 +1727958593126 9.9 101 +1727958603173 9.6 102 +1727958613219 9.4 103 +1727958623263 9.3 104 +1727958633313 8.8 105 diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/training_mean_absolute_error b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/training_mean_absolute_error new file mode 100644 index 0000000000000000000000000000000000000000..e9c6fec3709a5138ce166bf20c98d5590d5e51d3 --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/training_mean_absolute_error @@ -0,0 +1 @@ +1727958573327 4.241137709448957 0 diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/training_mean_squared_error b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/training_mean_squared_error new file mode 100644 index 0000000000000000000000000000000000000000..3ee4f8f30a4cfc7644415eb6029de981ee37bb6f --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/training_mean_squared_error @@ -0,0 +1 @@ +1727958573327 35.31755387306156 0 diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/training_r2_score b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/training_r2_score new file mode 100644 index 0000000000000000000000000000000000000000..77f46dc6ee0cf38f2a3cb58658d1809b1a04509f --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/training_r2_score @@ -0,0 +1 @@ +1727958573327 0.48594704671944733 0 diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/training_root_mean_squared_error b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/training_root_mean_squared_error new file mode 100644 index 0000000000000000000000000000000000000000..3125901d75ce41e37e92566bf7e9158d4a2a82a7 --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/training_root_mean_squared_error @@ -0,0 +1 @@ +1727958573327 5.942857382864035 0 diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/training_score b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/training_score new file mode 100644 index 0000000000000000000000000000000000000000..23a83194c1ad0661af7b5f7f2203f52233331382 --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/metrics/training_score @@ -0,0 +1 @@ +1727958573329 0.48594704671944733 0 diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/alpha b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/alpha new file mode 100644 index 0000000000000000000000000000000000000000..7364623c0ea9c45183fdc110f9810a8fd45ed2be --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/alpha @@ -0,0 +1 @@ +1e-10 \ No newline at end of file diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/ccp_alpha b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/ccp_alpha new file mode 100644 index 0000000000000000000000000000000000000000..ceab6e11ece0bcec917c12e11d350946f085d549 --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/ccp_alpha @@ -0,0 +1 @@ +0.1 \ No newline at end of file diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/bootstrap b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/copy_X_train similarity index 100% rename from mlruns/149819317988706962/135e604974134ca4877227251e765174/params/bootstrap rename to mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/copy_X_train diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/criterion b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/criterion similarity index 100% rename from mlruns/149819317988706962/135e604974134ca4877227251e765174/params/criterion rename to mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/criterion diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/kernel b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/kernel new file mode 100644 index 0000000000000000000000000000000000000000..092327021a8a3c33b65192397187731fa790cafe --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/kernel @@ -0,0 +1 @@ +1**2 * Matern(length_scale=[1, 1, 1, 1, 1, 1, 1], nu=2.5) + WhiteKernel(noise_level=1) \ No newline at end of file diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/kernel__k1 b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/kernel__k1 new file mode 100644 index 0000000000000000000000000000000000000000..4d6168bdb98e9f4d30e8d1cd3cdbb08802e9fc42 --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/kernel__k1 @@ -0,0 +1 @@ +1**2 * Matern(length_scale=[1, 1, 1, 1, 1, 1, 1], nu=2.5) \ No newline at end of file diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/kernel__k1__k1 b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/kernel__k1__k1 new file mode 100644 index 0000000000000000000000000000000000000000..071bc7cd77bac70119d5a9ed9006362c8588ac57 --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/kernel__k1__k1 @@ -0,0 +1 @@ +1**2 \ No newline at end of file diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/max_features b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/kernel__k1__k1__constant_value similarity index 100% rename from mlruns/149819317988706962/135e604974134ca4877227251e765174/params/max_features rename to mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/kernel__k1__k1__constant_value diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/kernel__k1__k1__constant_value_bounds b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/kernel__k1__k1__constant_value_bounds new file mode 100644 index 0000000000000000000000000000000000000000..b0b5ef311ba6dfd75c1aa12ae19f63e23aa19ed9 --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/kernel__k1__k1__constant_value_bounds @@ -0,0 +1 @@ +(0.01, 1000.0) \ No newline at end of file diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/kernel__k1__k2 b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/kernel__k1__k2 new file mode 100644 index 0000000000000000000000000000000000000000..0c7b10615898a3d56ba85ea82665803407b79f8e --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/kernel__k1__k2 @@ -0,0 +1 @@ +Matern(length_scale=[1, 1, 1, 1, 1, 1, 1], nu=2.5) \ No newline at end of file diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/kernel__k1__k2__length_scale b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/kernel__k1__k2__length_scale new file mode 100644 index 0000000000000000000000000000000000000000..ac580e2d9caffb5a3981f7fc44a1f31f9897282d --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/kernel__k1__k2__length_scale @@ -0,0 +1 @@ +[1. 1. 1. 1. 1. 1. 1.] \ No newline at end of file diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/kernel__k1__k2__length_scale_bounds b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/kernel__k1__k2__length_scale_bounds new file mode 100644 index 0000000000000000000000000000000000000000..f91c03a37f2027e7208796865de7955f6ce40812 --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/kernel__k1__k2__length_scale_bounds @@ -0,0 +1 @@ +[(0.01, 100), (0.01, 100), (0.01, 100), (0.01, 100), (0.01, 100), (0.01, 100), (0.01, 100)] \ No newline at end of file diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/kernel__k1__k2__nu b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/kernel__k1__k2__nu new file mode 100644 index 0000000000000000000000000000000000000000..68151b2e100d81a8e6521a3c29d354e582323ad7 --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/kernel__k1__k2__nu @@ -0,0 +1 @@ +2.5 \ No newline at end of file diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/kernel__k2 b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/kernel__k2 new file mode 100644 index 0000000000000000000000000000000000000000..b61e7057f35ffcdd3c66009c0b167f64ce7d6f93 --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/kernel__k2 @@ -0,0 +1 @@ +WhiteKernel(noise_level=1) \ No newline at end of file diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/max_features b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/kernel__k2__noise_level similarity index 100% rename from mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/max_features rename to mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/kernel__k2__noise_level diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/kernel__k2__noise_level_bounds b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/kernel__k2__noise_level_bounds new file mode 100644 index 0000000000000000000000000000000000000000..3d706fcdd07334e4fc20a564b0d0edff7706d66e --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/kernel__k2__noise_level_bounds @@ -0,0 +1 @@ +(1e-05, 100000.0) \ No newline at end of file diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/max_depth b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/max_depth new file mode 100644 index 0000000000000000000000000000000000000000..4701cc793111aafe3a1e6f48d82e5b8c8a38943e --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/max_depth @@ -0,0 +1 @@ +150 \ No newline at end of file diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/max_leaf_nodes b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/max_features similarity index 100% rename from mlruns/149819317988706962/135e604974134ca4877227251e765174/params/max_leaf_nodes rename to mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/max_features diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/max_leaf_nodes b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/max_leaf_nodes new file mode 100644 index 0000000000000000000000000000000000000000..2b82dfea308730c4f925388dbb683e6eae360640 --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/max_leaf_nodes @@ -0,0 +1 @@ +60 \ No newline at end of file diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/min_impurity_decrease b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/min_impurity_decrease new file mode 100644 index 0000000000000000000000000000000000000000..782245c140f2ef720a0e309879c56cfcd92e70c9 --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/min_impurity_decrease @@ -0,0 +1 @@ +0.17054007296857474 \ No newline at end of file diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/min_samples_leaf b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/min_samples_leaf new file mode 100644 index 0000000000000000000000000000000000000000..8580e7b684b14da5d9f84ab4eaf2f5139d508cbe --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/min_samples_leaf @@ -0,0 +1 @@ +30 \ No newline at end of file diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/min_samples_split b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/min_samples_split similarity index 100% rename from mlruns/149819317988706962/135e604974134ca4877227251e765174/params/min_samples_split rename to mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/min_samples_split diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/min_weight_fraction_leaf b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/min_weight_fraction_leaf new file mode 100644 index 0000000000000000000000000000000000000000..3770e6533ab0d778ec504dd2d32ae1cf57cfb5be --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/min_weight_fraction_leaf @@ -0,0 +1 @@ +0.0058938409500217115 \ No newline at end of file diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/monotonic_cst b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/monotonic_cst similarity index 100% rename from mlruns/149819317988706962/135e604974134ca4877227251e765174/params/monotonic_cst rename to mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/monotonic_cst diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/min_samples_split b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/n_restarts_optimizer similarity index 100% rename from mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/min_samples_split rename to mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/n_restarts_optimizer diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/noise b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/noise new file mode 100644 index 0000000000000000000000000000000000000000..4e6612ca4f4289e26b9258c13cea60275992e64b --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/noise @@ -0,0 +1 @@ +gaussian \ No newline at end of file diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/bootstrap b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/normalize_y similarity index 100% rename from mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/bootstrap rename to mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/normalize_y diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/optimizer b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/optimizer new file mode 100644 index 0000000000000000000000000000000000000000..524b16cff8744b16e3166dc5e2c3669cf3968caf --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/optimizer @@ -0,0 +1 @@ +fmin_l_bfgs_b \ No newline at end of file diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/random_state b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/random_state new file mode 100644 index 0000000000000000000000000000000000000000..873974b23645dbcbcc7a73242fc4f389043cfa1c --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/params/random_state @@ -0,0 +1 @@ +1395647406 \ No newline at end of file diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/tags/estimator_class b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/tags/estimator_class new file mode 100644 index 0000000000000000000000000000000000000000..a5cc85fcf5a9ceccd7f462b8358de777861297aa --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/tags/estimator_class @@ -0,0 +1 @@ +skopt.learning.gaussian_process.gpr.GaussianProcessRegressor \ No newline at end of file diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/tags/estimator_name b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/tags/estimator_name new file mode 100644 index 0000000000000000000000000000000000000000..dec5fdf8d27b03c4be20ba0b6ff2e95f780a5e32 --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/tags/estimator_name @@ -0,0 +1 @@ +GaussianProcessRegressor \ No newline at end of file diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/tags/mlflow.log-model.history b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/tags/mlflow.log-model.history new file mode 100644 index 0000000000000000000000000000000000000000..8b41941dab687bd30579f95a46b36030d6254c96 --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/tags/mlflow.log-model.history @@ -0,0 +1 @@ +[{"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:12:57.207679", "model_uuid": "289c4d6298214a4683a974b849bcaefb", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:13:00.438251", "model_uuid": "8b68ee18efc5482790e0112703678a44", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:13:03.241974", "model_uuid": "2bfa0de2b1f244a9a5cbf0e11437879f", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:13:05.728169", "model_uuid": "9c374daaf5f64c6baa283dbe4cf093ec", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:13:08.222241", "model_uuid": "67290d8c88fb460abafa6afed5ddc021", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:13:10.873188", "model_uuid": "c446e3e645d140f5bf72794b76e18fe5", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:13:13.485567", "model_uuid": "e07848f26deb48a4b9438eea26d9cc31", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:13:16.019419", "model_uuid": "3685915496f94a90b6418d654ed52242", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:13:18.724179", "model_uuid": "4bbf2c901a9449dda979e51230315dd6", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:13:22.138037", "model_uuid": "40b51b8b02d54a06af119dcce8a9e2ab", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:13:24.907546", "model_uuid": "99895d88da7a44888a99509b1be5157b", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:13:27.615854", "model_uuid": "15212296c511414ca75b7c2ac89f3533", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:13:30.285959", "model_uuid": "6bafac8451dc431e8a06e83e5b862cb5", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:13:32.985534", "model_uuid": "3785289aaaca43e38bd6fce76ac06f0a", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:13:36.151251", "model_uuid": "c11982dc690d48879296f18f56bffe77", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:13:39.155221", "model_uuid": "a8808f6fbb4d4c049a307e4ff950f55c", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:13:41.741892", "model_uuid": "1ca9ccde3cfd44abaf672b9bffd9b61c", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:13:44.561821", "model_uuid": "e16c006022ee4439931e876d2c52227c", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:13:47.412537", "model_uuid": "ea6e180ba15d456fae2f0625b1de2342", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:13:49.847451", "model_uuid": "f843574b52d846ee86d00cb7a948db57", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:13:52.479616", "model_uuid": "b29ff8db598c4f908c58cdfbd08f0a4a", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:13:55.301281", "model_uuid": "ea4eef233aec42d6bc5850b8c544bd98", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:13:58.576498", "model_uuid": "85931fc94d6d4d4c9322ae605f498ed9", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:14:01.572314", "model_uuid": "cbb3b8f84c304fbd9e5ef441d620f29d", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:14:04.184902", "model_uuid": "ebbb3b6918174f04944fae742156c804", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:14:06.720742", "model_uuid": "567ebac1c698405a9cfd9de9ddf231e0", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:14:09.520065", "model_uuid": "15be9c2dff6240b8a9eff947fc63f0c9", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:14:11.789686", "model_uuid": "00963bc6808b4123a2b3a179a97b9d4c", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:14:14.178816", "model_uuid": "3805f468becc4bd4be93951bba5d0095", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:14:16.953764", "model_uuid": "58bdebce5a664f00861a1e3b75e22cad", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:14:19.702107", "model_uuid": "dcfacc5c994c4bffb3a5105fce33b8ae", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:14:22.377335", "model_uuid": "83928e7267264fe38774e4321255b474", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:14:24.899167", "model_uuid": "48b6c8316aae4b09a61975fc5424963e", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:14:27.524725", "model_uuid": "ae5395195dd64524ab8871d7ff548528", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:14:29.964959", "model_uuid": "b18c5b2cd2f34f2b85b6e77f4da4c71d", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:14:32.712454", "model_uuid": "9dca8d248d45407ab9c6cfdf0796c1f6", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:14:35.226521", "model_uuid": "403d3b0d57dc43f18225d420e1a8cde0", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:14:38.046586", "model_uuid": "428cbb9e3f6f4ec78b918b801e6de794", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:14:41.016052", "model_uuid": "7053435a5a0345589182eec5a2fcf62d", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:14:44.454962", "model_uuid": "1e0b0835fcc04d6facc06d440444162a", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:14:47.418894", "model_uuid": "7cdc7adc1a214e799aa5a00ef4346af0", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:14:50.553882", "model_uuid": "d7476cb38d264a72875b5e7a849f2f40", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:14:54.976345", "model_uuid": "5d16a61d5d4349d194de27388c1308d7", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:14:58.357787", "model_uuid": "034bf400eb47478d9cb0da4db04dddbe", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:15:02.311692", "model_uuid": "8722aa2354ac400f929360efcdc9f195", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:15:05.514640", "model_uuid": "041a006a26fd409985089922689e68b2", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:15:08.357870", "model_uuid": "c00f3b848f9947649c51194c5b5c495b", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:15:10.956991", "model_uuid": "de0b2d07e2f24223838e69e1db2562d6", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:15:13.374584", "model_uuid": "bcfc36d1c38148b198cdc761a7bfcb74", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:15:15.998559", "model_uuid": "9d94816eff194cd894cb3e0cdd4a467d", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:15:18.739643", "model_uuid": "bc0d965b32a240e8933cd9705e535d6c", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:15:21.757006", "model_uuid": "4d63a3381a9c433b96f78a46fc84220c", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:15:24.856842", "model_uuid": "7656796731d2495891daeac680b4b633", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:15:27.798961", "model_uuid": "796ac645a42c46ce87d4993352ad315d", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:15:30.066119", "model_uuid": "bba0624dd5a242f99aff2f34e91a7b2a", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:15:33.780346", "model_uuid": "898c06d83d524db99a32d9c751d71776", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:15:36.705217", "model_uuid": "e8a974b411a44a5f80c7ffda1046ffa9", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:15:39.704227", "model_uuid": "a5a2a5a6a4a04fa49a32f8cc4dc6dc9d", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:15:44.089892", "model_uuid": "c7e12b4dbf7c4093beddb7d099c97c94", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:15:48.545018", "model_uuid": "31db5a33165b4dc69bd1c89d9bba11b6", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:15:51.263555", "model_uuid": "0e71816e6e6c4fe0832e5d7f53382c73", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:15:54.964730", "model_uuid": "190878cbe5284a0ab34617f48808271c", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:15:57.478354", "model_uuid": "6a36457eb57f4ec889533b852f5ecb92", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:16:00.137819", "model_uuid": "e6750deaf4dd467cbdc89af5e1ec0978", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:16:02.584260", "model_uuid": "555d1f5ef8e94260b3ea1bf81692a8d4", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:16:05.332090", "model_uuid": "b6bedb84ffd3418bbd4570a0bac17bde", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:16:08.044152", "model_uuid": "008add95e59f4e66bb2fe98f3e557fa1", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:16:10.969094", "model_uuid": "ed4f7254eceb44bbac24ca7d5ddfe844", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:16:13.828285", "model_uuid": "926dff3d9c7f460bb5b175236b210b7d", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:16:16.489475", "model_uuid": "f8769fc2e02849ed8d2109c11f17f66d", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:16:19.113997", "model_uuid": "7eed4af1806b4585b2ea7d4568465b2d", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:16:21.510452", "model_uuid": "9574224f91834359a4725f20c462001f", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:16:24.261320", "model_uuid": "327e4d515f2540a8b9df55dd50291113", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:16:27.268769", "model_uuid": "6a2dc3f7d8b2476ea6dabed76f738ba0", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:16:30.351128", "model_uuid": "1c199cb78b4d4c86aceb160e08347ddc", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:16:33.494067", "model_uuid": "27e9fc263e40404aaed660f76c855f9d", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:16:37.100654", "model_uuid": "10bd99cd72a74b25a23a63d2d454d52c", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:16:41.359750", "model_uuid": "368fe5b04fd34514a6daad96ce347e1e", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:16:46.179297", "model_uuid": "744a2addfc9048ee86c32bea0390cc4c", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:16:52.578571", "model_uuid": "160303da999040d8973cd777a2517f7b", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:16:57.665091", "model_uuid": "25afb955d33448e18345f58aa19e5804", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:17:00.773042", "model_uuid": "6d8cccdd2f114c4c8fcd3b630b3cf07e", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:17:04.422847", "model_uuid": "53a31fc0f6414589913d94c11fb4e9b7", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:17:07.526755", "model_uuid": "3aa033ea12f645699c4fbcba52f36abc", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:17:10.529747", "model_uuid": "cc447faa68a34288aeedc22d1bf154a0", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:17:13.787725", "model_uuid": "376d0a7626814d74a7e70d09a2785846", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:17:16.978729", "model_uuid": "bd55b8ca53f14f7c943f5ba1ee2ace38", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:17:20.284655", "model_uuid": "5af0ccf6977c4d9a9b0d5e260e17e7d2", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:17:23.526051", "model_uuid": "7e5f9020bc2c4182ab866b38ad21a868", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:17:26.573427", "model_uuid": "606c8a2b4b87467492b5a56c982e809a", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:17:29.746515", "model_uuid": "6316a3b7e80f40b7988eb9f23aa9234d", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:17:33.260948", "model_uuid": "3b117ab30bce438c8a08988062f8e5bd", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:17:36.813041", "model_uuid": "543eab5b9bf247379b204e3e332bfbd1", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:17:39.999365", "model_uuid": "bf10e5c1b2c34ecbbf7167ba18a9a370", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:17:44.436443", "model_uuid": "fead8d15b0db40759ea5f8c4595131d5", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:17:49.238810", "model_uuid": "f96e990c71bb4fe4a791ea66c3b840e4", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:17:55.670113", "model_uuid": "f5695a18e960428db46bae7409a392bf", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:18:01.149934", "model_uuid": "9ebadefba8d1484c908a944f51a4ceb6", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:18:04.279757", "model_uuid": "0b0fdae2993c4dc99c2c623864364dbc", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:18:07.514424", "model_uuid": "e6671778d6824976a93ef07d498cd09e", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:18:10.667989", "model_uuid": "dadda5c0613b405a96905a2f79e8833d", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:18:13.659324", "model_uuid": "6d8f9812286743bf969066a8a779b36d", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:18:16.716801", "model_uuid": "a0dafe8dc6b04d3a972800b0ffa45171", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:18:20.103460", "model_uuid": "a02734e3eda64c789f9fa35f0da23c5c", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:18:23.871448", "model_uuid": "85deb59139de4293851b0d0a1f2ec55a", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:18:26.891405", "model_uuid": "a0087de4873a4c9981987e4e93493f1d", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:18:30.481764", "model_uuid": "a8d7ed476e3a4a40964f94ed924b74a5", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:18:33.646627", "model_uuid": "65be9baf172c476ebc0ccea7b97577e2", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:18:37.183550", "model_uuid": "8962a87b910c462eaeb076aa25562364", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:18:40.725154", "model_uuid": "58ea86255acc43a28b5cf0a807c38902", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:18:45.480208", "model_uuid": "2c949f4d22e5414c807ca00f87056d2b", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:18:49.527569", "model_uuid": "c0c0f5c612ef4691a613aa2632955e75", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:18:52.561488", "model_uuid": "ed481d06550b478e9670a5f02c0f900b", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:18:57.037436", "model_uuid": "b3b0d3ae7e404e6781e2b10b5b7602e1", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:19:01.531323", "model_uuid": "95dd93f7fcbc4d90aac6bf466186353c", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:19:04.896871", "model_uuid": "b40d6f2fad4846b7a28b39473b688a98", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:19:08.136437", "model_uuid": "04442d2fcfaf47c594d9513ba8b96980", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:19:11.023491", "model_uuid": "872e195c76d14ee78dbda555a80919ff", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:19:14.107440", "model_uuid": "bbf8fa55ad8244e895fa3289dafeca9e", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:19:16.934760", "model_uuid": "91d249b55cf64fd78b29abce2f2c8259", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:19:20.340329", "model_uuid": "193bb7e2de744cab869de3052e0c608f", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:19:23.907319", "model_uuid": "a278269670b046029d63805d665a8dcc", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:19:26.973078", "model_uuid": "3991b929db7941349e044042ae89f55f", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:19:29.640809", "model_uuid": "1e0e3c4c95b2428fbe19b2260a29e58d", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:19:33.063627", "model_uuid": "f23f736e75694397b7d0f9e4dadef81a", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:19:36.337993", "model_uuid": "f7c0b198a4a74ce5871203034189c478", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:19:39.645751", "model_uuid": "de8d0de7d9024524ab0e149bcb164301", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:19:43.013055", "model_uuid": "b9860abe5f834fce9161a3e031970e35", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:19:47.033616", "model_uuid": "351bb14cb3e246ec83e81d256a4c98ab", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:19:50.381164", "model_uuid": "ab9657ad4a2c45fc8da86ed182d1ba06", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:19:53.383801", "model_uuid": "f29435f71ef145d48133d1b36a087fda", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:19:59.765631", "model_uuid": "16452352847c45988826d9e8566d04c8", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:20:05.439504", "model_uuid": "18848e1c43f544a1aede29f58b6f4f78", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:20:09.117760", "model_uuid": "2ba5f552fcde45afb30d56e1360af2d9", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:20:12.085600", "model_uuid": "c52dc3330c2143abb48f7c84473c5921", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:20:15.343916", "model_uuid": "86afeb0f599d4ffbb1b297563f5e75af", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:20:18.738559", "model_uuid": "8893702ae2994bdea4909fc6a3bc2f8b", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:20:22.035145", "model_uuid": "c366b2aaad4a4c59bd99f33abd5e3413", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:20:25.338727", "model_uuid": "12ee7ad6f51c4ebe8ab1710118c75071", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:20:28.580651", "model_uuid": "34b3e701fc714c5081d142e3252a6fa0", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:20:31.615213", "model_uuid": "c0d0b0a45bb24f1cac2f2ef507cb8433", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:20:35.058159", "model_uuid": "032504d68c6f4f1ca89a50f6358aaa9f", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:20:38.632263", "model_uuid": "f9f1a4be91654eefb4b0d2b2f7031631", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:20:41.690886", "model_uuid": "7e6cf58d2b15466a911125639fdd685c", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:20:44.784344", "model_uuid": "0f0fe334f5ee4a469505897d3c992c96", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:20:49.307413", "model_uuid": "ce425ecf8e72492e946bc6fdd47980c8", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:20:53.940624", "model_uuid": "ed31a99c02894d009a73f52334d5822d", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:20:58.396911", "model_uuid": "88d503e4d54e4c5d9c266f9775347701", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:21:01.941181", "model_uuid": "fabbe9566ab84a00a45880a4aacdd1d2", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:21:07.299866", "model_uuid": "5e8f914d2c8643178b88fd8e897baf5a", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:21:10.785633", "model_uuid": "5ed31ea0914946dc82b4081c7a3734a4", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:21:14.018998", "model_uuid": "dfc00f11c7684ce6ad720fd6f493255c", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:21:17.193875", "model_uuid": "3a1f63d2021e42da9311764e41a260ac", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:21:20.177790", "model_uuid": "033979e8a69b49a8af6f16fc058e4f15", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:21:23.425319", "model_uuid": "06114bd9d034402c9e2bf9787b60aa27", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:21:26.561409", "model_uuid": "94e84963bda34191af226cc995aada9b", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:21:29.529129", "model_uuid": "9c29c63ed6194844abcb45968be000cc", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:21:32.645357", "model_uuid": "1c0e2f1d5aa041d5b1e482babc270bd5", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:21:35.587697", "model_uuid": "e3103ad0007b461aaac57756eb3fd67b", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:21:38.624701", "model_uuid": "e2d95fb508e546549d4993761961afe7", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:21:41.581062", "model_uuid": "7a3a4435e6a0436199f18f2dcfa7aaf9", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:21:44.797935", "model_uuid": "13ca5bf69a544e9faec1341a42274b1e", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:21:48.160374", "model_uuid": "8f3962d0c9924035a5b6cc2c0216d8a1", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:21:55.543814", "model_uuid": "05c2b929a0e5424cb83fbe350e67b32c", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:22:01.723865", "model_uuid": "427ee6e6996f43dba416e223e7aea729", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:22:08.025123", "model_uuid": "4020b0a258624dd1afefe82bbd6aa487", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:22:11.154265", "model_uuid": "2b4c548a14bd4ca0b72688bf16c2df3f", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:22:14.816841", "model_uuid": "ddbb1934c74647f3b9c8e4373e774331", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:22:18.029780", "model_uuid": "d832e81ef514454f97f95bd7facf7164", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:22:21.684666", "model_uuid": "a5ac6bf6a97b49eaa37eb4b58e6d3c74", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:22:24.963797", "model_uuid": "d2c0a5d582b5444298d5c635485369a2", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:22:28.433729", "model_uuid": "b659d96c91c2495f8ae054747f5d524e", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:22:31.891769", "model_uuid": "fadc7b706b1446e081c6cd7e3dbd8869", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:22:35.430988", "model_uuid": "ec2247f07a524d03841aa4d2180c5529", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:22:38.660531", "model_uuid": "7624000fe3504b9aa8ace1ca87940f50", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:22:42.261203", "model_uuid": "2527529393b34ec785a248999a70192b", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:22:45.999770", "model_uuid": "e17102398aa94ad8ac17367ebc613c7d", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:22:49.475769", "model_uuid": "94cbb69d2f8b4dc8bbe59a29ee0aae1c", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:22:57.217005", "model_uuid": "7652b2c9237d43968c666d2f72cf2926", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:23:04.191488", "model_uuid": "d46195ec53d1442e95be030b8509e3be", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:23:13.594805", "model_uuid": "138567e62706418885f02645f9ebfbeb", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:23:16.992370", "model_uuid": "c586d3c4c80e45d897622fef5f21c9c0", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:23:20.437461", "model_uuid": "0d7e5ee421434379b5bd7092bfff94e3", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:23:23.885775", "model_uuid": "23c02c697a4148b6985af915ca963a7c", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:23:27.261560", "model_uuid": "3242e8bfbb7a4336a763b9852d1a7406", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:23:30.820965", "model_uuid": "26876ef510a947a0ab5d15cffa173a4b", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:23:34.288915", "model_uuid": "f422886f8f934b519c62debf04db5769", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:23:38.297918", "model_uuid": "2564e72bda394de08aeeb88109984ef0", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:23:41.895712", "model_uuid": "027442dc843a4ca7b6155f6b2f956bf9", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:23:45.510455", "model_uuid": "056a04fc7ac343bc9e2ed8c98938177a", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:23:48.971886", "model_uuid": "b8e0bfb247b742789f0a4cedfc01da14", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:23:52.423923", "model_uuid": "9f790a15f8ca48019d40afed2025d39e", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:23:59.285738", "model_uuid": "5f65bf392f0a46d3a4e24df25061a820", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:24:04.707038", "model_uuid": "488040b0e26042ada179e0b55c440b8b", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:24:08.762611", "model_uuid": "a68a0f0c92614c4196e36d24d7e0f3ff", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:24:15.093762", "model_uuid": "b849e7460d674e09a02c3c30c2c297d2", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:24:18.150746", "model_uuid": "9935ce727c6c4b5a81da7ca8d36afcf6", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:24:21.301016", "model_uuid": "5bde4fadea90418094849e10985c4167", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:24:24.347441", "model_uuid": "3166b2b7db8f44cc8aa7758d10826c81", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:24:27.752289", "model_uuid": "222049fb9c3543e6813c71e9033f0070", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:24:31.348359", "model_uuid": "29d7d1a8930e45cfaec3615fc26200bd", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:24:34.910678", "model_uuid": "486f4474b13a4505b420a46a44ac6fd0", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:24:38.809368", "model_uuid": "9d822ced3f9843a4b6db7eccc2445825", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:24:42.171225", "model_uuid": "9a056ce0efc14e3fa74a8a1c70c3b061", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:24:45.595052", "model_uuid": "35257c0f5f0f4d03813279eb341ed576", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:24:49.093394", "model_uuid": "877cf96c034640d9adc3f06ab60bda64", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:24:52.072130", "model_uuid": "dff60a73281c4b378a38e718effc2d72", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:24:55.069709", "model_uuid": "92727602108c46f197e84b4c3f76328d", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:25:00.436636", "model_uuid": "a60301ec362f4238bffb540560fa48db", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:25:03.383684", "model_uuid": "23ed5e1495c54354b148613f54448a70", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:25:07.256568", "model_uuid": "af8675c9c51e430c8e94ca839a0ebded", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:25:10.304782", "model_uuid": "b8af0559f7ce4e9eab50273819312f6a", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:25:16.259535", "model_uuid": "8a0646f7b9aa461f917a93cc85abc7de", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:25:19.571668", "model_uuid": "4bb3796bba9e4267937c02ed502b31ea", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:25:22.855768", "model_uuid": "a3d8a5cdc6a3408ca56c2aff2581466c", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:25:26.181056", "model_uuid": "3a0f133693c44e4a91c3840e75d5769b", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:25:29.607172", "model_uuid": "f077132250e24f0eb1c95d38e718a4c1", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:25:33.495962", "model_uuid": "02c2b54ef1b542c89a60cc208c8eafb7", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:25:36.723200", "model_uuid": "8f42c8e606f74cca8a7fbae89c152b6f", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:25:40.304722", "model_uuid": "2ca6a93276a940a68a5d65ea60182748", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:25:43.803151", "model_uuid": "6c90f9dfbc764efdafd00a29739f8dae", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:25:47.217835", "model_uuid": "c894cc8558974dc2bbdd7751e1551e67", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:25:50.637775", "model_uuid": "82597a6727bc42bc8f275fd938902851", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:25:54.173150", "model_uuid": "f781ab4b236d4b66a2d67d622d1dc929", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:25:57.934211", "model_uuid": "2e194a2279ea44bf877b190401e8ed73", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:26:03.570323", "model_uuid": "65009809da884fa4a8eb2fdbc28e569f", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:26:09.177592", "model_uuid": "28e3ad0a5c284979bef71ffdcdbbb2ee", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:26:12.958892", "model_uuid": "e1a18a7ddbcd426d8d61b873f9203b78", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:26:21.077620", "model_uuid": "fbeedd0954c14b288cd2a3de96119640", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:26:24.341769", "model_uuid": "3fdaa5b0c45d47fd86780d212a3c7ee7", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:26:27.890067", "model_uuid": "3680b692999b4cb692c98cbbce7e6273", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:26:31.019650", "model_uuid": "6eba0813678c40d797d2e17eea2d1c8e", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:26:34.536968", "model_uuid": "b1180a1f725a4cf4bda06c57f770beef", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:26:37.600848", "model_uuid": "88d58b8cd1114cafb8ea96b467a6120d", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:26:40.774977", "model_uuid": "861f0fd689fe4d8f8025602cd67ae056", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:26:44.045377", "model_uuid": "5b6cc35119b74c5abdaa81bc33688d9c", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:26:47.850294", "model_uuid": "525bd5fadc2b49fbab8aaaead1b491d8", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:26:51.235368", "model_uuid": "f8e028ce867c4cccbf0be95e4cd989cf", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:26:54.720658", "model_uuid": "9ea533abc7584449be639a6f3b850cdd", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:26:58.043141", "model_uuid": "de9e6d28dbe14725b0b605f40407eb7b", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:27:01.308549", "model_uuid": "4d89fe5e57ce415fbf519c8938429be5", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:27:05.665831", "model_uuid": "bc4d6805875c455f84f655acb89e993a", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:27:11.499546", "model_uuid": "142ae65ca75a4a6ba5ab9bee82d05e50", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:27:14.564787", "model_uuid": "f8a894fd754a4e48980cad029cf23b5d", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:27:20.480836", "model_uuid": "10c8a66afea34f02854761e1cf3d257c", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:27:24.334187", "model_uuid": "2ea028e1da1d4dd48ab23c291e496a8c", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:27:28.362543", "model_uuid": "b9d83f77c78d4de0b70f355f86959576", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:27:32.388853", "model_uuid": "b6abe3537d2c4993a042da57375a657a", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:27:36.458855", "model_uuid": "4bd18ebcbd35488b80f6725e2a852800", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:27:40.101960", "model_uuid": "f7f6a95fcdc74028b811ad6b5cc8f82a", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:27:43.866321", "model_uuid": "4390290c67154457840b63458e6c7ad8", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:27:47.812581", "model_uuid": "1b7e390397b440adb7288e6565113585", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:27:51.450951", "model_uuid": "edee63c548264aeaa7e51b8b9da7cddd", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:27:55.354555", "model_uuid": "a42076a86bf64153b11351b54f416ade", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:27:59.022672", "model_uuid": "bd868494994d42ae806d75c5b67725eb", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:28:03.298453", "model_uuid": "5cc90d7be67342a893255913ff178962", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:28:13.023396", "model_uuid": "55f8a284a49b490db19325789022a752", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:28:17.235229", "model_uuid": "4a825d6a1f414bcfa3575e146cd13826", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:28:25.391730", "model_uuid": "a6db54cdd265463d8b7b547d4e1b1ea4", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:28:29.662852", "model_uuid": "26e596b26e19458081e829b394104ed5", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:28:33.774008", "model_uuid": "1eadcd04b6c24460939616ad7460e10a", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:28:37.471444", "model_uuid": "d9ed888486ef4dd9aa44e1875897027c", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:28:42.104195", "model_uuid": "e9b8e633ead9476ca97a39f56ae6e2c4", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:28:46.130522", "model_uuid": "e09fd6b79bb64d64846b1ea90d1fd9c1", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:28:50.544887", "model_uuid": "b9911bdb232b41f897b951302d61728a", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:28:54.370963", "model_uuid": "73f54d3ae4764f6593e70c9539ae4c9f", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:28:58.444201", "model_uuid": "e4713f66ae1847f9b8999287c105f052", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:29:02.318253", "model_uuid": "96b75cbe64fd48858b236fec50662148", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:29:07.071499", "model_uuid": "8e36881795ab460d9616903b735f9eb6", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:29:16.782261", "model_uuid": "c4d9e74ab9b0463da3377ac49b40336f", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:29:21.253043", "model_uuid": "9578647246ea436386fd5e365a26b7fb", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:29:29.255983", "model_uuid": "2d0282d0b24747659800f2a0d920cdad", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "d55b4821b4974c04aeb9bb278c16e511", "artifact_path": "model", "utc_time_created": "2024-10-03 12:29:33.342711", "model_uuid": "0925a8cea57c43da9459faa4befe274e", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/tags/mlflow.runName b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/tags/mlflow.runName new file mode 100644 index 0000000000000000000000000000000000000000..21c315ad06d5b4c3558d77fae3a43ca65dc57271 --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/tags/mlflow.runName @@ -0,0 +1 @@ +awesome-elk-633 \ No newline at end of file diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/tags/mlflow.source.name b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/tags/mlflow.source.name new file mode 100644 index 0000000000000000000000000000000000000000..e3455416d6ff97faef741b494bcd4f7375068d7e --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/tags/mlflow.source.name @@ -0,0 +1 @@ +/cvmfs/hpc.rug.nl/versions/2023.01/rocky8/x86_64/amd/zen3/software/IPython/8.5.0-GCCcore-11.3.0/lib/python3.10/site-packages/ipykernel_launcher.py \ No newline at end of file diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/tags/mlflow.source.type b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/tags/mlflow.source.type similarity index 100% rename from mlruns/149819317988706962/135e604974134ca4877227251e765174/tags/mlflow.source.type rename to mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/tags/mlflow.source.type diff --git a/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/tags/mlflow.user b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/tags/mlflow.user new file mode 100644 index 0000000000000000000000000000000000000000..2800e99f36624ea2ef6af03f42bb3c9dfab954c3 --- /dev/null +++ b/mlruns/146369756112246655/d55b4821b4974c04aeb9bb278c16e511/tags/mlflow.user @@ -0,0 +1 @@ +s5100534 \ No newline at end of file diff --git a/mlruns/831635215727137506/datasets/dd4d89a524510f8914834c3bc9cd9e95/meta.yaml b/mlruns/146369756112246655/datasets/dd4d89a524510f8914834c3bc9cd9e95/meta.yaml similarity index 64% rename from mlruns/831635215727137506/datasets/dd4d89a524510f8914834c3bc9cd9e95/meta.yaml rename to mlruns/146369756112246655/datasets/dd4d89a524510f8914834c3bc9cd9e95/meta.yaml index fbdf23f6c403eb72b82fce264d8ed369a148f984..d66d3325f521c20f2b698440ef75a81a93b3af8c 100644 --- a/mlruns/831635215727137506/datasets/dd4d89a524510f8914834c3bc9cd9e95/meta.yaml +++ b/mlruns/146369756112246655/datasets/dd4d89a524510f8914834c3bc9cd9e95/meta.yaml @@ -5,6 +5,6 @@ profile: '{"features_shape": [2452, 33], "features_size": 80916, "features_nbyte schema: '{"mlflow_tensorspec": {"features": "[{\"type\": \"tensor\", \"tensor-spec\": {\"dtype\": \"float64\", \"shape\": [-1, 33]}}]", "targets": "[{\"type\": \"tensor\", \"tensor-spec\": {\"dtype\": \"float64\", \"shape\": [-1, 6]}}]"}}' -source: '{"tags": {"mlflow.user": "User", "mlflow.source.name": "c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py", - "mlflow.source.type": "LOCAL", "mlflow.source.git.commit": "da08d56ac3b3131519322c57e8db01547d638865"}}' +source: '{"tags": {"mlflow.user": "s5100534", "mlflow.source.name": "/cvmfs/hpc.rug.nl/versions/2023.01/rocky8/x86_64/amd/zen3/software/IPython/8.5.0-GCCcore-11.3.0/lib/python3.10/site-packages/ipykernel_launcher.py", + "mlflow.source.type": "LOCAL"}}' source_type: code diff --git a/mlruns/146369756112246655/meta.yaml b/mlruns/146369756112246655/meta.yaml new file mode 100644 index 0000000000000000000000000000000000000000..deee40a672c3c1e476f0ab5ec33ff1cbd8959992 --- /dev/null +++ b/mlruns/146369756112246655/meta.yaml @@ -0,0 +1,6 @@ +artifact_location: mlflow-artifacts:/146369756112246655 +creation_time: 1727957565453 +experiment_id: '146369756112246655' +last_update_time: 1727957565453 +lifecycle_stage: active +name: DecisionTree-BayesianOptimization diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/inputs/3fe337ab19a414567ce38811567fb03e/meta.yaml b/mlruns/149819317988706962/135e604974134ca4877227251e765174/inputs/3fe337ab19a414567ce38811567fb03e/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/inputs/3fe337ab19a414567ce38811567fb03e/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/meta.yaml b/mlruns/149819317988706962/135e604974134ca4877227251e765174/meta.yaml deleted file mode 100644 index 8a1a798efbfe42f9c5ff43e178b929c8e8c3bdea..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: mlflow-artifacts:/149819317988706962/135e604974134ca4877227251e765174/artifacts -end_time: 1727647677549 -entry_point_name: '' -experiment_id: '149819317988706962' -lifecycle_stage: active -run_id: 135e604974134ca4877227251e765174 -run_name: salty-pug-249 -run_uuid: 135e604974134ca4877227251e765174 -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727647660078 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/system/cpu_utilization_percentage b/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/system/cpu_utilization_percentage deleted file mode 100644 index ba0686b9c6fb65b6f1ffb2b7c990f45e56aa1164..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1 +0,0 @@ -1727647670262 69.4 0 diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/system/disk_available_megabytes b/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/system/disk_available_megabytes deleted file mode 100644 index f4c9c7d9dfedf261cc1a3c1d8e246d12de6661e5..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/system/disk_available_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727647670262 90944.5 0 diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/system/disk_usage_megabytes b/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/system/disk_usage_megabytes deleted file mode 100644 index 06a7f49c9d6e5b996ae68519ef13313df9b074be..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727647670262 420192.6 0 diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/system/disk_usage_percentage b/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/system/disk_usage_percentage deleted file mode 100644 index e6c75d0021e0f07693d216f2695783147efa5539..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/system/disk_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727647670262 82.2 0 diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index 9ddc6b3a4e80e7ce155e558b94d0f8687c26e543..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727647670262 440.2 0 diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/system/gpu_0_memory_usage_percentage b/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index 8ac030cb0b7688de2a21f6754dec3dbdf28d3fdd..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727647670262 20.5 0 diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/system/gpu_0_utilization_percentage b/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index 618a14c6b2bd05a577d9183705b837f6af00cdce..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1 +0,0 @@ -1727647670262 0.0 0 diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/system/network_receive_megabytes b/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/system/network_receive_megabytes deleted file mode 100644 index 618a14c6b2bd05a577d9183705b837f6af00cdce..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/system/network_receive_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727647670262 0.0 0 diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/system/network_transmit_megabytes b/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/system/network_transmit_megabytes deleted file mode 100644 index 618a14c6b2bd05a577d9183705b837f6af00cdce..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727647670262 0.0 0 diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/system/system_memory_usage_megabytes b/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index 74f675a9f6c1f55c7549257dbe2b61076cf161d4..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727647670262 14192.0 0 diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/system/system_memory_usage_percentage b/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/system/system_memory_usage_percentage deleted file mode 100644 index 26e1f6ae55c3bc9d57bb2d01145b4a23b85dc1e3..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727647670262 83.6 0 diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/training_mean_absolute_error b/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/training_mean_absolute_error deleted file mode 100644 index 0e7f0e3341f9b1a71f83a3d0a42586f37f34c79d..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727647671068 1.4686008020663406 0 diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/training_mean_squared_error b/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/training_mean_squared_error deleted file mode 100644 index 9e39d0b2ac8b46ba59ab41095de5ab6b2d93cddd..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727647671068 4.513877183591633 0 diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/training_r2_score b/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/training_r2_score deleted file mode 100644 index 1cb67f803c32c92930f40aeeed244d580af43b6f..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727647671068 0.934567668476269 0 diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/training_root_mean_squared_error b/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/training_root_mean_squared_error deleted file mode 100644 index 45c38c1870985d152f333e2d37ba8de863d77bcb..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727647671068 2.124588709278018 0 diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/training_score b/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/training_score deleted file mode 100644 index 55a4f4b8e3e58637bed42a4f3643f5d301748ece..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727647671155 0.934567668476269 0 diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/max_depth b/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/min_impurity_decrease b/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/min_samples_leaf b/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/min_weight_fraction_leaf b/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/n_estimators b/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/n_estimators deleted file mode 100644 index 105d7d9ad3afc7bb78a0dec4d829880831605dfb..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/n_estimators +++ /dev/null @@ -1 +0,0 @@ -100 \ No newline at end of file diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/n_jobs b/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/n_jobs deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/n_jobs +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/oob_score b/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/oob_score deleted file mode 100644 index c1f22fbc23bb6ee67824843d6685826db10313d3..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/oob_score +++ /dev/null @@ -1 +0,0 @@ -False \ No newline at end of file diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/random_state b/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/verbose b/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/verbose deleted file mode 100644 index c227083464fb9af8955c90d2924774ee50abb547..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/verbose +++ /dev/null @@ -1 +0,0 @@ -0 \ No newline at end of file diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/warm_start b/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/warm_start deleted file mode 100644 index c1f22fbc23bb6ee67824843d6685826db10313d3..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/warm_start +++ /dev/null @@ -1 +0,0 @@ -False \ No newline at end of file diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/tags/estimator_class b/mlruns/149819317988706962/135e604974134ca4877227251e765174/tags/estimator_class deleted file mode 100644 index c97c86cfb4456edecdb2cdc6a33e06e728ad7a3d..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.ensemble._forest.RandomForestRegressor \ No newline at end of file diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/tags/estimator_name b/mlruns/149819317988706962/135e604974134ca4877227251e765174/tags/estimator_name deleted file mode 100644 index fdec80fa3af12a48caeafbabc871211c4cdeb364..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -RandomForestRegressor \ No newline at end of file diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/tags/mlflow.autologging b/mlruns/149819317988706962/135e604974134ca4877227251e765174/tags/mlflow.autologging deleted file mode 100644 index 044bdd758636edf2ee49b03917cb416d76a71de4..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -sklearn \ No newline at end of file diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/tags/mlflow.log-model.history b/mlruns/149819317988706962/135e604974134ca4877227251e765174/tags/mlflow.log-model.history deleted file mode 100644 index eb95c5ce2e9f9688b036c5bb64f4de0ab0519ae4..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "135e604974134ca4877227251e765174", "artifact_path": "model", "utc_time_created": "2024-09-29 22:07:51.285707", "model_uuid": "a4454c410eb04397aeb3487d1219327c", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/tags/mlflow.runName b/mlruns/149819317988706962/135e604974134ca4877227251e765174/tags/mlflow.runName deleted file mode 100644 index 25ff6f120e0d6db57872247bf2cccfbae20d9f7f..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -salty-pug-249 \ No newline at end of file diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/tags/mlflow.source.git.commit b/mlruns/149819317988706962/135e604974134ca4877227251e765174/tags/mlflow.source.git.commit deleted file mode 100644 index 6a04567d482b95da916b8765e0e8616fdd6b913f..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -50f51da8088aa9c4731e2604257dd2f36c417b5d \ No newline at end of file diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/tags/mlflow.source.name b/mlruns/149819317988706962/135e604974134ca4877227251e765174/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/tags/mlflow.user b/mlruns/149819317988706962/135e604974134ca4877227251e765174/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/135e604974134ca4877227251e765174/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/meta.yaml b/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/meta.yaml deleted file mode 100644 index ead23e1dae89852a35d8e24457f5c20484c52ba9..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: mlflow-artifacts:/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/artifacts -end_time: null -entry_point_name: '' -experiment_id: '149819317988706962' -lifecycle_stage: active -run_id: 15225421949b40d1a7edf73fbc1c5acc -run_name: fearless-vole-481 -run_uuid: 15225421949b40d1a7edf73fbc1c5acc -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727702588763 -status: 1 -tags: [] -user_id: User diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/metrics/system/cpu_utilization_percentage b/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/metrics/system/cpu_utilization_percentage deleted file mode 100644 index 2b8f1796e9179beb5bdd6028b5b5f1f62f802b5e..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,3 +0,0 @@ -1727702599224 100.0 0 -1727702609430 89.9 1 -1727702619617 75.1 2 diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/metrics/system/disk_available_megabytes b/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/metrics/system/disk_available_megabytes deleted file mode 100644 index 020ed92858308ac3609b4ad1ab39b9428714f9da..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727702599224 83096.4 0 -1727702609430 83096.4 1 -1727702619617 83096.4 2 diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/metrics/system/disk_usage_megabytes b/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/metrics/system/disk_usage_megabytes deleted file mode 100644 index d838de7ddb14349066dda214584f3da04e1b97a4..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727702599224 428040.7 0 -1727702609430 428040.7 1 -1727702619617 428040.7 2 diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/metrics/system/disk_usage_percentage b/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/metrics/system/disk_usage_percentage deleted file mode 100644 index e400b09a5344087bccb246a6f9ef1b78473f30cb..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,3 +0,0 @@ -1727702599224 83.7 0 -1727702609430 83.7 1 -1727702619617 83.7 2 diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index 94c3283dae06706b9f427b3c9a41428a8a451a6d..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727702599224 224.3 0 -1727702609430 227.7 1 -1727702619617 222.5 2 diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/metrics/system/gpu_0_memory_usage_percentage b/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index 0b6a8b8117de6cd7c24f342e9c692da724a6d5d9..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,3 +0,0 @@ -1727702599224 10.4 0 -1727702609430 10.6 1 -1727702619617 10.4 2 diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/metrics/system/gpu_0_utilization_percentage b/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index 8750ad112ae6676b4bc3021124df2bcab56ec3d0..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,3 +0,0 @@ -1727702599224 13.0 0 -1727702609430 16.0 1 -1727702619617 0.0 2 diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/metrics/system/network_receive_megabytes b/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/metrics/system/network_receive_megabytes deleted file mode 100644 index c5d1fc115f6749846cd2d32768cb19c5811614f0..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727702599224 0.0 0 -1727702609430 0.14948900000001686 1 -1727702619617 0.16493900000000394 2 diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/metrics/system/network_transmit_megabytes b/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/metrics/system/network_transmit_megabytes deleted file mode 100644 index 998d5c18f0ab39991083807ee06a949150be8730..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727702599224 0.0 0 -1727702609430 0.021877000000003477 1 -1727702619617 0.02679200000000037 2 diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/metrics/system/system_memory_usage_megabytes b/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index 66f908055e96f1ec9890f99cec0686655bf8d2e7..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727702599224 16111.0 0 -1727702609430 15603.4 1 -1727702619617 15621.7 2 diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/metrics/system/system_memory_usage_percentage b/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/metrics/system/system_memory_usage_percentage deleted file mode 100644 index 07371a11a039ec57e5b22762953701e62766202e..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,3 +0,0 @@ -1727702599224 94.9 0 -1727702609430 91.9 1 -1727702619617 92.0 2 diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/ccp_alpha b/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/max_depth b/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/max_leaf_nodes b/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/max_samples b/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/max_samples deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/max_samples +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/min_impurity_decrease b/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/min_samples_leaf b/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/min_weight_fraction_leaf b/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/n_estimators b/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/n_estimators deleted file mode 100644 index 105d7d9ad3afc7bb78a0dec4d829880831605dfb..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/n_estimators +++ /dev/null @@ -1 +0,0 @@ -100 \ No newline at end of file diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/n_jobs b/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/n_jobs deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/n_jobs +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/oob_score b/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/oob_score deleted file mode 100644 index c1f22fbc23bb6ee67824843d6685826db10313d3..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/oob_score +++ /dev/null @@ -1 +0,0 @@ -False \ No newline at end of file diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/random_state b/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/verbose b/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/verbose deleted file mode 100644 index c227083464fb9af8955c90d2924774ee50abb547..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/verbose +++ /dev/null @@ -1 +0,0 @@ -0 \ No newline at end of file diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/warm_start b/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/warm_start deleted file mode 100644 index c1f22fbc23bb6ee67824843d6685826db10313d3..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/warm_start +++ /dev/null @@ -1 +0,0 @@ -False \ No newline at end of file diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/tags/estimator_class b/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/tags/estimator_class deleted file mode 100644 index c97c86cfb4456edecdb2cdc6a33e06e728ad7a3d..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.ensemble._forest.RandomForestRegressor \ No newline at end of file diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/tags/estimator_name b/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/tags/estimator_name deleted file mode 100644 index fdec80fa3af12a48caeafbabc871211c4cdeb364..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -RandomForestRegressor \ No newline at end of file diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/tags/mlflow.autologging b/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/tags/mlflow.autologging deleted file mode 100644 index 044bdd758636edf2ee49b03917cb416d76a71de4..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -sklearn \ No newline at end of file diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/tags/mlflow.runName b/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/tags/mlflow.runName deleted file mode 100644 index f4a091fcf0990f1e766c24c1a22773a6a430360f..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -fearless-vole-481 \ No newline at end of file diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/tags/mlflow.source.git.commit b/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/tags/mlflow.source.git.commit deleted file mode 100644 index b9ea510318a74d958a9174bc540d8caf7ea139e5..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -2e3cee67a062d9b1790ae929ca7415c02604d303 \ No newline at end of file diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/tags/mlflow.source.name b/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/tags/mlflow.user b/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/inputs/60b40a06e4732945ca67a19f8db8f5d9/meta.yaml b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/inputs/60b40a06e4732945ca67a19f8db8f5d9/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/inputs/60b40a06e4732945ca67a19f8db8f5d9/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/inputs/c0a68f88bebc8a37fc63d271294a6a61/meta.yaml b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/inputs/c0a68f88bebc8a37fc63d271294a6a61/meta.yaml deleted file mode 100644 index 17c34ad08903a4ce3ec908a63642f36f025e6715..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/inputs/c0a68f88bebc8a37fc63d271294a6a61/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: dd4d89a524510f8914834c3bc9cd9e95 -destination_type: RUN -source_id: dd4d89a524510f8914834c3bc9cd9e95 -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/meta.yaml b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/meta.yaml deleted file mode 100644 index 306d175dbff3cdcdc9b694f00cfe1204e797a632..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: mlflow-artifacts:/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/artifacts -end_time: 1727713587342 -entry_point_name: '' -experiment_id: '149819317988706962' -lifecycle_stage: active -run_id: 39324cef8f2443b7b4b77eefe61ef6ca -run_name: Bayesian_Optimization_Training_and_Eval -run_uuid: 39324cef8f2443b7b4b77eefe61ef6ca -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727713520821 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/Correct Test MSE b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/Correct Test MSE deleted file mode 100644 index f1a3a9826e45729733344ed26de11d5e6e597486..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/Correct Test MSE +++ /dev/null @@ -1 +0,0 @@ -1727713587286 31.652346573986055 0 diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/Correct Test RMSE b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/Correct Test RMSE deleted file mode 100644 index bcb2827758eba3a3417762c7e81c5fed13c81aaa..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/Correct Test RMSE +++ /dev/null @@ -1 +0,0 @@ -1727713587315 5.354707063535579 0 diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/Correct Train MSE b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/Correct Train MSE deleted file mode 100644 index 2b6a10fbb921f7625dc33b67bb50d3c834050a07..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/Correct Train MSE +++ /dev/null @@ -1 +0,0 @@ -1727713586865 36.38654319444445 0 diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/system/cpu_utilization_percentage b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/system/cpu_utilization_percentage deleted file mode 100644 index 266d4ee6c07bc844338da5a660f337246f667f23..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,6 +0,0 @@ -1727713531152 76.3 0 -1727713541352 100.0 1 -1727713551532 98.0 2 -1727713561757 93.6 3 -1727713572013 80.9 4 -1727713582326 96.8 5 diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/system/disk_available_megabytes b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/system/disk_available_megabytes deleted file mode 100644 index 2dbc39e46438bc77cd35edebb84487d3b1f5fc96..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,6 +0,0 @@ -1727713531152 82780.2 0 -1727713541352 82780.2 1 -1727713551532 82780.4 2 -1727713561757 82780.4 3 -1727713572013 82780.2 4 -1727713582326 82777.8 5 diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/system/disk_usage_megabytes b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/system/disk_usage_megabytes deleted file mode 100644 index add47abef8df912e6df769af6858e7542b7b0ad7..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,6 +0,0 @@ -1727713531152 428356.9 0 -1727713541352 428356.9 1 -1727713551532 428356.7 2 -1727713561757 428356.7 3 -1727713572013 428356.9 4 -1727713582326 428359.3 5 diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/system/disk_usage_percentage b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/system/disk_usage_percentage deleted file mode 100644 index 56402ee8ffb0496d9a55a53351d3afc7210c8817..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,6 +0,0 @@ -1727713531152 83.8 0 -1727713541352 83.8 1 -1727713551532 83.8 2 -1727713561757 83.8 3 -1727713572013 83.8 4 -1727713582326 83.8 5 diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index ce8e4d2e2a0af9962277e597f951f256bcf5286c..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,6 +0,0 @@ -1727713531152 257.9 0 -1727713541352 251.2 1 -1727713551532 289.2 2 -1727713561757 332.9 3 -1727713572013 298.6 4 -1727713582326 308.3 5 diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/system/gpu_0_memory_usage_percentage b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index 64e59696dad8c4cfce6b3f1ececa367b1d453b48..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,6 +0,0 @@ -1727713531152 12.0 0 -1727713541352 11.7 1 -1727713551532 13.5 2 -1727713561757 15.5 3 -1727713572013 13.9 4 -1727713582326 14.4 5 diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/system/gpu_0_utilization_percentage b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index 1aacfa65b7a81c259637cb2944af699134c98d84..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,6 +0,0 @@ -1727713531152 4.0 0 -1727713541352 4.0 1 -1727713551532 6.0 2 -1727713561757 11.0 3 -1727713572013 0.0 4 -1727713582326 4.0 5 diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/system/network_receive_megabytes b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/system/network_receive_megabytes deleted file mode 100644 index 52f7e7d9c8b22f600829f8218360328460386a96..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,6 +0,0 @@ -1727713531152 0.00044199999999960937 0 -1727713541352 0.008487999999999829 1 -1727713551532 0.048272999999998234 2 -1727713561757 0.06813899999999862 3 -1727713572013 0.12962199999999768 4 -1727713582326 0.22108799999999817 5 diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/system/network_transmit_megabytes b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/system/network_transmit_megabytes deleted file mode 100644 index 2c06c5d16b9a64e05152423ee35288c2687dbc07..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,6 +0,0 @@ -1727713531152 0.0 0 -1727713541352 0.0 1 -1727713551532 0.01763099999999973 2 -1727713561757 0.026981000000000144 3 -1727713572013 0.07122000000000028 4 -1727713582326 0.08178700000000028 5 diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/system/system_memory_usage_megabytes b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index 11f174385d59805c73a1fcffaa52b5a6daefd905..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,6 +0,0 @@ -1727713531152 15841.2 0 -1727713541352 15931.4 1 -1727713551532 15635.6 2 -1727713561757 15563.2 3 -1727713572013 15464.8 4 -1727713582326 15240.7 5 diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/system/system_memory_usage_percentage b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/system/system_memory_usage_percentage deleted file mode 100644 index 89354d6603b0c848e3175f610bd6fd678f6187d7..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,6 +0,0 @@ -1727713531152 93.3 0 -1727713541352 93.8 1 -1727713551532 92.1 2 -1727713561757 91.6 3 -1727713572013 91.1 4 -1727713582326 89.7 5 diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/training_mean_absolute_error b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/training_mean_absolute_error deleted file mode 100644 index fead84ba133f96c1ec6f429fba57c6dd1fa8890d..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727713575610 1.4686008020663406 0 diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/training_mean_squared_error b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/training_mean_squared_error deleted file mode 100644 index 714ee806f40ad6501cc77133a0e2c2a1c1f941cd..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727713575610 4.513877183591633 0 diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/training_r2_score b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/training_r2_score deleted file mode 100644 index ab7a99191ede1148f489780a64369aec17c394b5..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727713575610 0.934567668476269 0 diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/training_root_mean_squared_error b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/training_root_mean_squared_error deleted file mode 100644 index 8977fe4994a3bcd70daf550c51f22dc17192608b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727713575610 2.124588709278018 0 diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/training_score b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/training_score deleted file mode 100644 index 9f4761976e39c2ece22d6af98df818642c059ded..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727713575860 0.934567668476269 0 diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/ccp_alpha b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/criterion b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/max_depth b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/max_leaf_nodes b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/max_samples b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/max_samples deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/max_samples +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/min_impurity_decrease b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/min_samples_leaf b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/min_weight_fraction_leaf b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/monotonic_cst b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/n_estimators b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/n_estimators deleted file mode 100644 index 105d7d9ad3afc7bb78a0dec4d829880831605dfb..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/n_estimators +++ /dev/null @@ -1 +0,0 @@ -100 \ No newline at end of file diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/n_jobs b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/n_jobs deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/n_jobs +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/oob_score b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/oob_score deleted file mode 100644 index c1f22fbc23bb6ee67824843d6685826db10313d3..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/oob_score +++ /dev/null @@ -1 +0,0 @@ -False \ No newline at end of file diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/random_state b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/verbose b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/verbose deleted file mode 100644 index c227083464fb9af8955c90d2924774ee50abb547..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/verbose +++ /dev/null @@ -1 +0,0 @@ -0 \ No newline at end of file diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/warm_start b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/warm_start deleted file mode 100644 index c1f22fbc23bb6ee67824843d6685826db10313d3..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/warm_start +++ /dev/null @@ -1 +0,0 @@ -False \ No newline at end of file diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/tags/estimator_class b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/tags/estimator_class deleted file mode 100644 index c97c86cfb4456edecdb2cdc6a33e06e728ad7a3d..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.ensemble._forest.RandomForestRegressor \ No newline at end of file diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/tags/estimator_name b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/tags/estimator_name deleted file mode 100644 index fdec80fa3af12a48caeafbabc871211c4cdeb364..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -RandomForestRegressor \ No newline at end of file diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/tags/mlflow.log-model.history b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/tags/mlflow.log-model.history deleted file mode 100644 index 2fe3e4d525eeb308b3a6bddc4f9a996a26ee3588..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "39324cef8f2443b7b4b77eefe61ef6ca", "artifact_path": "model", "utc_time_created": "2024-09-30 16:26:16.224496", "model_uuid": "1223b8cf87ee4fae9c34ac54eeef9eb4", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/tags/mlflow.runName b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/tags/mlflow.runName deleted file mode 100644 index 39c57e5e2445a0b5c78f476020799ebb5c99fb29..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -Bayesian_Optimization_Training_and_Eval \ No newline at end of file diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/tags/mlflow.source.git.commit b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/tags/mlflow.source.git.commit deleted file mode 100644 index b9ea510318a74d958a9174bc540d8caf7ea139e5..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -2e3cee67a062d9b1790ae929ca7415c02604d303 \ No newline at end of file diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/tags/mlflow.source.name b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/tags/mlflow.user b/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/inputs/9204983f7eb886cdf93aed7dc79d04b7/meta.yaml b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/inputs/9204983f7eb886cdf93aed7dc79d04b7/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/inputs/9204983f7eb886cdf93aed7dc79d04b7/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/inputs/a5f5ae41e9ff035f9b13d15acecc8d28/meta.yaml b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/inputs/a5f5ae41e9ff035f9b13d15acecc8d28/meta.yaml deleted file mode 100644 index 17c34ad08903a4ce3ec908a63642f36f025e6715..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/inputs/a5f5ae41e9ff035f9b13d15acecc8d28/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: dd4d89a524510f8914834c3bc9cd9e95 -destination_type: RUN -source_id: dd4d89a524510f8914834c3bc9cd9e95 -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/meta.yaml b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/meta.yaml deleted file mode 100644 index 65e8ea5477d73c44e326b842989cf24bdbddb32f..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: mlflow-artifacts:/149819317988706962/482f080397f8479f94024fbed2a3937a/artifacts -end_time: 1727645976770 -entry_point_name: '' -experiment_id: '149819317988706962' -lifecycle_stage: active -run_id: 482f080397f8479f94024fbed2a3937a -run_name: beautiful-trout-956 -run_uuid: 482f080397f8479f94024fbed2a3937a -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727645964018 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/system/cpu_utilization_percentage b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/system/cpu_utilization_percentage deleted file mode 100644 index b7da2a3a54c733417536ebfcc3d9b4f58a09936c..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1 +0,0 @@ -1727645974135 46.0 0 diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/system/disk_available_megabytes b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/system/disk_available_megabytes deleted file mode 100644 index bb85f1d25cc7ecadc1040557f0cf725935de6a49..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/system/disk_available_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727645974135 90966.4 0 diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/system/disk_usage_megabytes b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/system/disk_usage_megabytes deleted file mode 100644 index 26d3bc8c1765f993443fc140a3dd9e4f9569cf5d..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727645974135 420170.7 0 diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/system/disk_usage_percentage b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/system/disk_usage_percentage deleted file mode 100644 index eec9c2f00614c53019b5404fd7e8b4a625b500b8..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/system/disk_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727645974135 82.2 0 diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index 7ff20cb22a8ace6ca1da21d99da5ef4fc621c990..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727645974135 323.0 0 diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/system/gpu_0_memory_usage_percentage b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index 371e988800310a12d5fe857308a592da15ceebfd..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727645974135 15.0 0 diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/system/gpu_0_utilization_percentage b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index fb1baac1a0b0f34842f23d408cbea964897942b3..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1 +0,0 @@ -1727645974135 0.0 0 diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/system/network_receive_megabytes b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/system/network_receive_megabytes deleted file mode 100644 index fb1baac1a0b0f34842f23d408cbea964897942b3..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/system/network_receive_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727645974135 0.0 0 diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/system/network_transmit_megabytes b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/system/network_transmit_megabytes deleted file mode 100644 index fb1baac1a0b0f34842f23d408cbea964897942b3..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727645974135 0.0 0 diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/system/system_memory_usage_megabytes b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index f5d6e52efb54a392065182beb98576dc0b8ac39f..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727645974135 11128.5 0 diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/system/system_memory_usage_percentage b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/system/system_memory_usage_percentage deleted file mode 100644 index 46206f36530eb912ea0aa70fd968d5082a7852c9..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727645974135 65.5 0 diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/training_mean_absolute_error b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/training_mean_absolute_error deleted file mode 100644 index 4495d9e1bcbf574fe8058029c4c9f0de14e0b460..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727645972124 1.4686008020663406 0 diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/training_mean_squared_error b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/training_mean_squared_error deleted file mode 100644 index fb9875ef269d84f2ac06286f3da76b6c85044c5c..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727645972124 4.513877183591633 0 diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/training_r2_score b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/training_r2_score deleted file mode 100644 index 4012acc768189efebb5f7ed52b7c2cfb4dc71de9..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727645972124 0.934567668476269 0 diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/training_root_mean_squared_error b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/training_root_mean_squared_error deleted file mode 100644 index 98564ddba6f59bbeae48620ef3b8b0ad002b210b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727645972124 2.124588709278018 0 diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/training_score b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/training_score deleted file mode 100644 index e7f9b769cf8721188ae7a60ae4d9060eb8f15f3b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727645972199 0.934567668476269 0 diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/ccp_alpha b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/criterion b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/max_depth b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/max_leaf_nodes b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/max_samples b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/max_samples deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/max_samples +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/min_impurity_decrease b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/min_samples_leaf b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/min_weight_fraction_leaf b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/monotonic_cst b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/n_estimators b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/n_estimators deleted file mode 100644 index 105d7d9ad3afc7bb78a0dec4d829880831605dfb..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/n_estimators +++ /dev/null @@ -1 +0,0 @@ -100 \ No newline at end of file diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/n_jobs b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/n_jobs deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/n_jobs +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/oob_score b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/oob_score deleted file mode 100644 index c1f22fbc23bb6ee67824843d6685826db10313d3..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/oob_score +++ /dev/null @@ -1 +0,0 @@ -False \ No newline at end of file diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/random_state b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/verbose b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/verbose deleted file mode 100644 index c227083464fb9af8955c90d2924774ee50abb547..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/verbose +++ /dev/null @@ -1 +0,0 @@ -0 \ No newline at end of file diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/warm_start b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/warm_start deleted file mode 100644 index c1f22fbc23bb6ee67824843d6685826db10313d3..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/warm_start +++ /dev/null @@ -1 +0,0 @@ -False \ No newline at end of file diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/tags/estimator_class b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/tags/estimator_class deleted file mode 100644 index c97c86cfb4456edecdb2cdc6a33e06e728ad7a3d..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.ensemble._forest.RandomForestRegressor \ No newline at end of file diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/tags/estimator_name b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/tags/estimator_name deleted file mode 100644 index fdec80fa3af12a48caeafbabc871211c4cdeb364..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -RandomForestRegressor \ No newline at end of file diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/tags/mlflow.autologging b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/tags/mlflow.autologging deleted file mode 100644 index 044bdd758636edf2ee49b03917cb416d76a71de4..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -sklearn \ No newline at end of file diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/tags/mlflow.log-model.history b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/tags/mlflow.log-model.history deleted file mode 100644 index 17dc28caa8ff7169f5a1b62d6f14c5146f55433e..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "482f080397f8479f94024fbed2a3937a", "artifact_path": "model", "utc_time_created": "2024-09-29 21:39:32.284449", "model_uuid": "8332f56e26444f36b4c0ca9a376792c0", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/tags/mlflow.runName b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/tags/mlflow.runName deleted file mode 100644 index 75a056e429ddaa78b1da868ad2bb6e3238daebee..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -beautiful-trout-956 \ No newline at end of file diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/tags/mlflow.source.git.commit b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/tags/mlflow.source.git.commit deleted file mode 100644 index 6a04567d482b95da916b8765e0e8616fdd6b913f..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -50f51da8088aa9c4731e2604257dd2f36c417b5d \ No newline at end of file diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/tags/mlflow.source.name b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/tags/mlflow.source.type b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/tags/mlflow.user b/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/inputs/9f74c11a603ae42026ea171546387a69/meta.yaml b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/inputs/9f74c11a603ae42026ea171546387a69/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/inputs/9f74c11a603ae42026ea171546387a69/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/inputs/ee9b180d5518cce671940233dfff09ce/meta.yaml b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/inputs/ee9b180d5518cce671940233dfff09ce/meta.yaml deleted file mode 100644 index 17c34ad08903a4ce3ec908a63642f36f025e6715..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/inputs/ee9b180d5518cce671940233dfff09ce/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: dd4d89a524510f8914834c3bc9cd9e95 -destination_type: RUN -source_id: dd4d89a524510f8914834c3bc9cd9e95 -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/meta.yaml b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/meta.yaml deleted file mode 100644 index 08b028b798332421bc1b3504f1ac5fa93c8f6fd1..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: mlflow-artifacts:/149819317988706962/5479a322736e4663944d983720a6648e/artifacts -end_time: 1727642116447 -entry_point_name: '' -experiment_id: '149819317988706962' -lifecycle_stage: active -run_id: 5479a322736e4663944d983720a6648e -run_name: spiffy-penguin-165 -run_uuid: 5479a322736e4663944d983720a6648e -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727642102185 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/system/cpu_utilization_percentage b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/system/cpu_utilization_percentage deleted file mode 100644 index 104fb9a2cbf99c76e4eeef82e0271c5953d792b3..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1 +0,0 @@ -1727642112343 47.2 0 diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/system/disk_available_megabytes b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/system/disk_available_megabytes deleted file mode 100644 index afc2ee68bfdac553747df62aaef9be29cd4c58cd..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/system/disk_available_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727642112343 90980.2 0 diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/system/disk_usage_megabytes b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/system/disk_usage_megabytes deleted file mode 100644 index b8d170d87c8ee5530bd62e30038483ca1ada4ede..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727642112343 420156.9 0 diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/system/disk_usage_percentage b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/system/disk_usage_percentage deleted file mode 100644 index f4904d820aee4e48e19dde33c8a7d6ba7314409d..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/system/disk_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727642112343 82.2 0 diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index d9eb5b2ff58540e7f0514d0386ccc72dc4c44e26..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727642112343 308.2 0 diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/system/gpu_0_memory_usage_percentage b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index 65be40b781876015a216448820d20786fe34e8eb..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727642112343 14.4 0 diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/system/gpu_0_utilization_percentage b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index 92f330a4aeabe0588b47ad369acc9b24a243e0dd..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1 +0,0 @@ -1727642112343 0.0 0 diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/system/network_receive_megabytes b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/system/network_receive_megabytes deleted file mode 100644 index 92f330a4aeabe0588b47ad369acc9b24a243e0dd..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/system/network_receive_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727642112343 0.0 0 diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/system/network_transmit_megabytes b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/system/network_transmit_megabytes deleted file mode 100644 index 92f330a4aeabe0588b47ad369acc9b24a243e0dd..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727642112343 0.0 0 diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/system/system_memory_usage_megabytes b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index 4099a975aea255b37c1ac6e6ff86f5fcd2c693a4..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727642112343 11362.1 0 diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/system/system_memory_usage_percentage b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/system/system_memory_usage_percentage deleted file mode 100644 index 74948ef62df8a5ee2c2c5908936736bdd78d3630..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727642112343 66.9 0 diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/training_mean_absolute_error b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/training_mean_absolute_error deleted file mode 100644 index be5b1db2e48e2fd3966d5f54148c9c1f492ec189..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727642111000 1.4734425695577313 0 diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/training_mean_squared_error b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/training_mean_squared_error deleted file mode 100644 index c8486af6c3ea9d8ff4fcde18431791cb6ba3ae73..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727642111000 4.507790763032156 0 diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/training_r2_score b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/training_r2_score deleted file mode 100644 index 98bc5f369c079c5bdddf52e799773e26d59d9f23..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727642111000 0.9340423340912295 0 diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/training_root_mean_squared_error b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/training_root_mean_squared_error deleted file mode 100644 index 9d1fafcc29a56c96d0ea9ac2d565d83f257ba7b8..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727642111000 2.123155849915911 0 diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/training_score b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/training_score deleted file mode 100644 index 3e91adceba52eafd530fadec0ffd1756c2afcc7d..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727642111072 0.9340423340912295 0 diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/ccp_alpha b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/criterion b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/max_depth b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/max_leaf_nodes b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/max_samples b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/max_samples deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/max_samples +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/min_impurity_decrease b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/min_samples_leaf b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/min_samples_split b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/min_samples_split deleted file mode 100644 index d8263ee9860594d2806b0dfd1bfd17528b0ba2a4..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/min_samples_split +++ /dev/null @@ -1 +0,0 @@ -2 \ No newline at end of file diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/min_weight_fraction_leaf b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/monotonic_cst b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/n_estimators b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/n_estimators deleted file mode 100644 index 105d7d9ad3afc7bb78a0dec4d829880831605dfb..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/n_estimators +++ /dev/null @@ -1 +0,0 @@ -100 \ No newline at end of file diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/n_jobs b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/n_jobs deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/n_jobs +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/oob_score b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/oob_score deleted file mode 100644 index c1f22fbc23bb6ee67824843d6685826db10313d3..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/oob_score +++ /dev/null @@ -1 +0,0 @@ -False \ No newline at end of file diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/random_state b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/verbose b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/verbose deleted file mode 100644 index c227083464fb9af8955c90d2924774ee50abb547..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/verbose +++ /dev/null @@ -1 +0,0 @@ -0 \ No newline at end of file diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/warm_start b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/warm_start deleted file mode 100644 index c1f22fbc23bb6ee67824843d6685826db10313d3..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/warm_start +++ /dev/null @@ -1 +0,0 @@ -False \ No newline at end of file diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/tags/estimator_class b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/tags/estimator_class deleted file mode 100644 index c97c86cfb4456edecdb2cdc6a33e06e728ad7a3d..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.ensemble._forest.RandomForestRegressor \ No newline at end of file diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/tags/estimator_name b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/tags/estimator_name deleted file mode 100644 index fdec80fa3af12a48caeafbabc871211c4cdeb364..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -RandomForestRegressor \ No newline at end of file diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/tags/mlflow.autologging b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/tags/mlflow.autologging deleted file mode 100644 index 044bdd758636edf2ee49b03917cb416d76a71de4..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -sklearn \ No newline at end of file diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/tags/mlflow.log-model.history b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/tags/mlflow.log-model.history deleted file mode 100644 index 2ebdbe635cf173aabbb27f0f5e2479e7be1b5f97..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "5479a322736e4663944d983720a6648e", "artifact_path": "model", "utc_time_created": "2024-09-29 20:35:11.167642", "model_uuid": "2ece0aa5720e4d60a908faa9d0e3d000", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/tags/mlflow.runName b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/tags/mlflow.runName deleted file mode 100644 index b745a22d0e93f421f2be18574d48bbec3f3d6dfb..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -spiffy-penguin-165 \ No newline at end of file diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/tags/mlflow.source.git.commit b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/tags/mlflow.source.git.commit deleted file mode 100644 index 38bea58d3eed4194d95922f337daa60cbc044a21..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -da08d56ac3b3131519322c57e8db01547d638865 \ No newline at end of file diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/tags/mlflow.source.name b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/tags/mlflow.source.type b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/tags/mlflow.user b/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/inputs/02f1f5157e93a4ebcf5cddc67d3ebbbb/meta.yaml b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/inputs/02f1f5157e93a4ebcf5cddc67d3ebbbb/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/inputs/02f1f5157e93a4ebcf5cddc67d3ebbbb/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/inputs/715ca23f59b7fe7669461b2bcc3b78fa/meta.yaml b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/inputs/715ca23f59b7fe7669461b2bcc3b78fa/meta.yaml deleted file mode 100644 index 17c34ad08903a4ce3ec908a63642f36f025e6715..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/inputs/715ca23f59b7fe7669461b2bcc3b78fa/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: dd4d89a524510f8914834c3bc9cd9e95 -destination_type: RUN -source_id: dd4d89a524510f8914834c3bc9cd9e95 -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/meta.yaml b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/meta.yaml deleted file mode 100644 index 2c0e33cd79ce88399b163d89d7aaae7dd16d9a30..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: mlflow-artifacts:/149819317988706962/d256fba7a7fe43c39749afef37154210/artifacts -end_time: 1727642478651 -entry_point_name: '' -experiment_id: '149819317988706962' -lifecycle_stage: active -run_id: d256fba7a7fe43c39749afef37154210 -run_name: delicate-frog-956 -run_uuid: d256fba7a7fe43c39749afef37154210 -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727642460091 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/system/cpu_utilization_percentage b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/system/cpu_utilization_percentage deleted file mode 100644 index 07fa225abe5738b118f3d7f73ec97c1f562d0450..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1 +0,0 @@ -1727642470253 78.1 0 diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/system/disk_available_megabytes b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/system/disk_available_megabytes deleted file mode 100644 index a71d891591b6ad7d1cb076e5919d06c38a9242da..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/system/disk_available_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727642470253 90931.4 0 diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/system/disk_usage_megabytes b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/system/disk_usage_megabytes deleted file mode 100644 index a636ac924996cf24fec9427187b881938c2944e5..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727642470253 420205.7 0 diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/system/disk_usage_percentage b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/system/disk_usage_percentage deleted file mode 100644 index 8e30f020eccf161352cfdb80281789ac6daa7dce..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/system/disk_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727642470253 82.2 0 diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index c99d51bd61ba0ebfbc7b9cfb11dfdf021c73c785..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727642470253 275.8 0 diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/system/gpu_0_memory_usage_percentage b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index 1c9b691f89a63dc69ad6bd7641c68849f96a8652..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727642470253 12.8 0 diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/system/gpu_0_utilization_percentage b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index a4fb97d0bd9d3f261432c2f0387cf24cd0c636b3..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1 +0,0 @@ -1727642470253 5.0 0 diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/system/network_receive_megabytes b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/system/network_receive_megabytes deleted file mode 100644 index a5a9f33d7627247a2ea52d769da695fda4ede022..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/system/network_receive_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727642470253 0.0 0 diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/system/network_transmit_megabytes b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/system/network_transmit_megabytes deleted file mode 100644 index a5a9f33d7627247a2ea52d769da695fda4ede022..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727642470253 0.0 0 diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/system/system_memory_usage_megabytes b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index 4636ec32f3dee6bcf2ad875d4d0a1285e8317425..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727642470253 11838.7 0 diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/system/system_memory_usage_percentage b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/system/system_memory_usage_percentage deleted file mode 100644 index 80dadc70f8b5fc9546b5d52b8797c9ff0bedc15e..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727642470253 69.7 0 diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/training_mean_absolute_error b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/training_mean_absolute_error deleted file mode 100644 index f318a5c8db19fedf2b601cbcc9e8f88943ad2647..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727642471727 1.4693733007069063 0 diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/training_mean_squared_error b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/training_mean_squared_error deleted file mode 100644 index 668aece9bf9fe610e528e2c0c5a1f4852181c380..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727642471727 4.458400666122895 0 diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/training_r2_score b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/training_r2_score deleted file mode 100644 index 204c6bf5ee49c8dd91ba4f3a7216eb1e1b981d06..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727642471727 0.9350126906851983 0 diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/training_root_mean_squared_error b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/training_root_mean_squared_error deleted file mode 100644 index 1b58ef0ddedaba5c6ccbf617f1c2dd22b5303d48..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727642471727 2.1114925209725217 0 diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/training_score b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/training_score deleted file mode 100644 index acd0e5507723adbf10ea509eb6a0359ddf7f192e..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727642471838 0.9350126906851983 0 diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/ccp_alpha b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/criterion b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/max_depth b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/max_leaf_nodes b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/max_samples b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/max_samples deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/max_samples +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/min_impurity_decrease b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/min_samples_leaf b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/min_samples_split b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/min_samples_split deleted file mode 100644 index d8263ee9860594d2806b0dfd1bfd17528b0ba2a4..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/min_samples_split +++ /dev/null @@ -1 +0,0 @@ -2 \ No newline at end of file diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/min_weight_fraction_leaf b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/monotonic_cst b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/n_estimators b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/n_estimators deleted file mode 100644 index 105d7d9ad3afc7bb78a0dec4d829880831605dfb..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/n_estimators +++ /dev/null @@ -1 +0,0 @@ -100 \ No newline at end of file diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/n_jobs b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/n_jobs deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/n_jobs +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/oob_score b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/oob_score deleted file mode 100644 index c1f22fbc23bb6ee67824843d6685826db10313d3..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/oob_score +++ /dev/null @@ -1 +0,0 @@ -False \ No newline at end of file diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/random_state b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/verbose b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/verbose deleted file mode 100644 index c227083464fb9af8955c90d2924774ee50abb547..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/verbose +++ /dev/null @@ -1 +0,0 @@ -0 \ No newline at end of file diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/warm_start b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/warm_start deleted file mode 100644 index c1f22fbc23bb6ee67824843d6685826db10313d3..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/warm_start +++ /dev/null @@ -1 +0,0 @@ -False \ No newline at end of file diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/tags/estimator_class b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/tags/estimator_class deleted file mode 100644 index c97c86cfb4456edecdb2cdc6a33e06e728ad7a3d..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.ensemble._forest.RandomForestRegressor \ No newline at end of file diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/tags/estimator_name b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/tags/estimator_name deleted file mode 100644 index fdec80fa3af12a48caeafbabc871211c4cdeb364..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -RandomForestRegressor \ No newline at end of file diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/tags/mlflow.autologging b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/tags/mlflow.autologging deleted file mode 100644 index 044bdd758636edf2ee49b03917cb416d76a71de4..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -sklearn \ No newline at end of file diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/tags/mlflow.log-model.history b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/tags/mlflow.log-model.history deleted file mode 100644 index 85ebe62ed58a40448a61253a2eacf74c5bca4213..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "d256fba7a7fe43c39749afef37154210", "artifact_path": "model", "utc_time_created": "2024-09-29 20:41:11.947759", "model_uuid": "d6a4b42658cb4824b3125c7ec63d1ed4", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/tags/mlflow.runName b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/tags/mlflow.runName deleted file mode 100644 index 6e4be5f07f901b66a59ad226f79c4e4bcd4e709e..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -delicate-frog-956 \ No newline at end of file diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/tags/mlflow.source.git.commit b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/tags/mlflow.source.git.commit deleted file mode 100644 index 38bea58d3eed4194d95922f337daa60cbc044a21..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -da08d56ac3b3131519322c57e8db01547d638865 \ No newline at end of file diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/tags/mlflow.source.name b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/tags/mlflow.source.type b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/tags/mlflow.user b/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/149819317988706962/datasets/19d2a1faf215ef44b979bbf135902c21/meta.yaml b/mlruns/149819317988706962/datasets/19d2a1faf215ef44b979bbf135902c21/meta.yaml deleted file mode 100644 index 65c48d4b56921221974bdde7eed83216fec87bc6..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/datasets/19d2a1faf215ef44b979bbf135902c21/meta.yaml +++ /dev/null @@ -1,9 +0,0 @@ -digest: 2ba3734a -name: dataset -profile: '{"features_shape": [1052, 33], "features_size": 34716, "features_nbytes": - 277728}' -schema: '{"mlflow_tensorspec": {"features": "[{\"type\": \"tensor\", \"tensor-spec\": - {\"dtype\": \"float64\", \"shape\": [-1, 33]}}]", "targets": null}}' -source: '{"tags": {"mlflow.user": "User", "mlflow.source.name": "c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py", - "mlflow.source.type": "LOCAL", "mlflow.source.git.commit": "da08d56ac3b3131519322c57e8db01547d638865"}}' -source_type: code diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/inputs/8ba8f9b328ddc8fc289039ff8b89559f/meta.yaml b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/inputs/8ba8f9b328ddc8fc289039ff8b89559f/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/inputs/8ba8f9b328ddc8fc289039ff8b89559f/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/inputs/f83e13a173913aea111e2226e3cbf8b3/meta.yaml b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/inputs/f83e13a173913aea111e2226e3cbf8b3/meta.yaml deleted file mode 100644 index 17c34ad08903a4ce3ec908a63642f36f025e6715..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/inputs/f83e13a173913aea111e2226e3cbf8b3/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: dd4d89a524510f8914834c3bc9cd9e95 -destination_type: RUN -source_id: dd4d89a524510f8914834c3bc9cd9e95 -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/meta.yaml b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/meta.yaml deleted file mode 100644 index e77cd032fed81e7e65a1f17557c90fc75a9b1e89..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: mlflow-artifacts:/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/artifacts -end_time: 1727696607554 -entry_point_name: '' -experiment_id: '149819317988706962' -lifecycle_stage: active -run_id: faa3ad4458c7419a8fc7c85d44b5c475 -run_name: treasured-mouse-713 -run_uuid: faa3ad4458c7419a8fc7c85d44b5c475 -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727696581253 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/system/cpu_utilization_percentage b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/system/cpu_utilization_percentage deleted file mode 100644 index a5b37e2677b3d154268c80bfa31f5dda7473cec8..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,2 +0,0 @@ -1727696591523 94.7 0 -1727696601687 69.0 1 diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/system/disk_available_megabytes b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/system/disk_available_megabytes deleted file mode 100644 index 9c643f80db095dff7412d1eeebf33b2f31861f5b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727696591523 83338.3 0 -1727696601687 83337.8 1 diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/system/disk_usage_megabytes b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/system/disk_usage_megabytes deleted file mode 100644 index 60c1120e0472338d482cedb3f6f5c610f29e8c87..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727696591523 427798.8 0 -1727696601687 427799.3 1 diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/system/disk_usage_percentage b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/system/disk_usage_percentage deleted file mode 100644 index 49188129d0f9b67d2ec8cdb8d982279af4817461..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,2 +0,0 @@ -1727696591523 83.7 0 -1727696601687 83.7 1 diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index bda1ec341391592a2ef4d2fff7a8b3b7612bcc75..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727696591523 263.4 0 -1727696601687 263.9 1 diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/system/gpu_0_memory_usage_percentage b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index cd7ea11fc06f20cd93d03254bbce170684dfd134..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,2 +0,0 @@ -1727696591523 12.3 0 -1727696601687 12.3 1 diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/system/gpu_0_utilization_percentage b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index f0e4baad4b023b77f52871bb40117852a28cc6a6..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,2 +0,0 @@ -1727696591523 6.0 0 -1727696601687 14.0 1 diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/system/network_receive_megabytes b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/system/network_receive_megabytes deleted file mode 100644 index 64a1ae5c5461098bd3e69d6d3032239071ce9b6c..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727696591523 0.0 0 -1727696601687 0.0008790000000544751 1 diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/system/network_transmit_megabytes b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/system/network_transmit_megabytes deleted file mode 100644 index 6f1a0af255c45ed7ae09de75434a3d7ba3ce4ff9..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727696591523 0.0 0 -1727696601687 0.0019939999999998292 1 diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/system/system_memory_usage_megabytes b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index 27bdefa91c57eede259a0e58f3b8cbaaae5925e8..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727696591523 14678.8 0 -1727696601687 14665.6 1 diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/system/system_memory_usage_percentage b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/system/system_memory_usage_percentage deleted file mode 100644 index 287bc8882cd02db417b2e9e6f2f757ef47a085a2..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,2 +0,0 @@ -1727696591523 86.4 0 -1727696601687 86.3 1 diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/training_mean_absolute_error b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/training_mean_absolute_error deleted file mode 100644 index 98ec969f671f3eed4f946c666b635a7439d51455..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727696597972 1.4686008020663406 0 diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/training_mean_squared_error b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/training_mean_squared_error deleted file mode 100644 index d8d9989cc9bcf0f204fed6881d21a9f940ca763a..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727696597972 4.513877183591633 0 diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/training_r2_score b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/training_r2_score deleted file mode 100644 index 58f9328641dc8f009d7a7eab5fec54433d3d1588..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727696597972 0.934567668476269 0 diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/training_root_mean_squared_error b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/training_root_mean_squared_error deleted file mode 100644 index fd2537a14efb03b4dfcee9c3f8537eb5cf408327..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727696597972 2.124588709278018 0 diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/training_score b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/training_score deleted file mode 100644 index 1c0aa6a3ac53986bd82476693bb55e84a5ae4724..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727696598117 0.934567668476269 0 diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/bootstrap b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/bootstrap deleted file mode 100644 index 4791ed5559bd77f54e1520025768e2b368705876..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/bootstrap +++ /dev/null @@ -1 +0,0 @@ -True \ No newline at end of file diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/ccp_alpha b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/criterion b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/max_depth b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/max_features b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/max_features deleted file mode 100644 index 9f8e9b69a33f4e8067d5b21661a35d8856758aba..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/max_features +++ /dev/null @@ -1 +0,0 @@ -1.0 \ No newline at end of file diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/max_leaf_nodes b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/max_samples b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/max_samples deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/max_samples +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/min_impurity_decrease b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/min_samples_leaf b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/min_samples_split b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/min_samples_split deleted file mode 100644 index d8263ee9860594d2806b0dfd1bfd17528b0ba2a4..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/min_samples_split +++ /dev/null @@ -1 +0,0 @@ -2 \ No newline at end of file diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/min_weight_fraction_leaf b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/monotonic_cst b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/n_estimators b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/n_estimators deleted file mode 100644 index 105d7d9ad3afc7bb78a0dec4d829880831605dfb..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/n_estimators +++ /dev/null @@ -1 +0,0 @@ -100 \ No newline at end of file diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/n_jobs b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/n_jobs deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/n_jobs +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/oob_score b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/oob_score deleted file mode 100644 index c1f22fbc23bb6ee67824843d6685826db10313d3..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/oob_score +++ /dev/null @@ -1 +0,0 @@ -False \ No newline at end of file diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/random_state b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/verbose b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/verbose deleted file mode 100644 index c227083464fb9af8955c90d2924774ee50abb547..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/verbose +++ /dev/null @@ -1 +0,0 @@ -0 \ No newline at end of file diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/warm_start b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/warm_start deleted file mode 100644 index c1f22fbc23bb6ee67824843d6685826db10313d3..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/params/warm_start +++ /dev/null @@ -1 +0,0 @@ -False \ No newline at end of file diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/tags/estimator_class b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/tags/estimator_class deleted file mode 100644 index c97c86cfb4456edecdb2cdc6a33e06e728ad7a3d..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.ensemble._forest.RandomForestRegressor \ No newline at end of file diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/tags/estimator_name b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/tags/estimator_name deleted file mode 100644 index fdec80fa3af12a48caeafbabc871211c4cdeb364..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -RandomForestRegressor \ No newline at end of file diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/tags/mlflow.autologging b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/tags/mlflow.autologging deleted file mode 100644 index 044bdd758636edf2ee49b03917cb416d76a71de4..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -sklearn \ No newline at end of file diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/tags/mlflow.log-model.history b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/tags/mlflow.log-model.history deleted file mode 100644 index 182d7b2063ca504775d3d1d63c709332c1f0033e..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "faa3ad4458c7419a8fc7c85d44b5c475", "artifact_path": "model", "utc_time_created": "2024-09-30 11:43:18.288700", "model_uuid": "120c266f00cf4e34aca4337b65a1e372", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/tags/mlflow.runName b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/tags/mlflow.runName deleted file mode 100644 index 0314786deb6a2d63dd36e0ffa2305cbd9fbf6225..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -treasured-mouse-713 \ No newline at end of file diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/tags/mlflow.source.git.commit b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/tags/mlflow.source.git.commit deleted file mode 100644 index b9ea510318a74d958a9174bc540d8caf7ea139e5..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -2e3cee67a062d9b1790ae929ca7415c02604d303 \ No newline at end of file diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/tags/mlflow.source.name b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/tags/mlflow.source.type b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/tags/mlflow.user b/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/faa3ad4458c7419a8fc7c85d44b5c475/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/inputs/55a96e3055a0ba5efa69898a2ec160d5/meta.yaml b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/inputs/55a96e3055a0ba5efa69898a2ec160d5/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/inputs/55a96e3055a0ba5efa69898a2ec160d5/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/inputs/fc36ad8b81eee006c356a3ded068f760/meta.yaml b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/inputs/fc36ad8b81eee006c356a3ded068f760/meta.yaml deleted file mode 100644 index 17c34ad08903a4ce3ec908a63642f36f025e6715..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/inputs/fc36ad8b81eee006c356a3ded068f760/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: dd4d89a524510f8914834c3bc9cd9e95 -destination_type: RUN -source_id: dd4d89a524510f8914834c3bc9cd9e95 -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/meta.yaml b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/meta.yaml deleted file mode 100644 index c62a05f8464649a4156bd8d954d774ab9d44bf73..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: mlflow-artifacts:/149819317988706962/ff9b209269104b37b82bb9564fe96907/artifacts -end_time: 1727699064378 -entry_point_name: '' -experiment_id: '149819317988706962' -lifecycle_stage: active -run_id: ff9b209269104b37b82bb9564fe96907 -run_name: learned-gnu-365 -run_uuid: ff9b209269104b37b82bb9564fe96907 -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727699021804 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/system/cpu_utilization_percentage b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/system/cpu_utilization_percentage deleted file mode 100644 index 2513bf52e7f24d6beb8167909de103801ddaaa1b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,4 +0,0 @@ -1727699032322 100.0 0 -1727699042587 99.1 1 -1727699052864 99.5 2 -1727699063186 99.9 3 diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/system/disk_available_megabytes b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/system/disk_available_megabytes deleted file mode 100644 index 9ed7aedebd9afed228cfdd74474b5aa66e609e13..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,4 +0,0 @@ -1727699032322 83130.9 0 -1727699042587 83130.9 1 -1727699052864 83134.4 2 -1727699063186 83099.0 3 diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/system/disk_usage_megabytes b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/system/disk_usage_megabytes deleted file mode 100644 index dba54c89d43a0e531ed849075e61d8244b2d5762..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,4 +0,0 @@ -1727699032322 428006.2 0 -1727699042587 428006.2 1 -1727699052864 428002.7 2 -1727699063186 428038.1 3 diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/system/disk_usage_percentage b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/system/disk_usage_percentage deleted file mode 100644 index 83e920d0a1869e640104efe150421c6a83477c7e..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,4 +0,0 @@ -1727699032322 83.7 0 -1727699042587 83.7 1 -1727699052864 83.7 2 -1727699063186 83.7 3 diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index 174a3996eb83122e3787584c5988b5c200ae171b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,4 +0,0 @@ -1727699032322 260.1 0 -1727699042587 282.5 1 -1727699052864 277.6 2 -1727699063186 312.3 3 diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/system/gpu_0_memory_usage_percentage b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index 61c1090add5429d38b56f9f6e3b73cd21c682f3c..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,4 +0,0 @@ -1727699032322 12.1 0 -1727699042587 13.2 1 -1727699052864 12.9 2 -1727699063186 14.5 3 diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/system/gpu_0_utilization_percentage b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index be2138867649aefb2c7fd83a0f68916f07f32e11..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,4 +0,0 @@ -1727699032322 6.0 0 -1727699042587 0.0 1 -1727699052864 7.0 2 -1727699063186 9.0 3 diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/system/network_receive_megabytes b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/system/network_receive_megabytes deleted file mode 100644 index fefbb220c715b63b73fa4c50f37bbf03a230799b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,4 +0,0 @@ -1727699032322 0.0 0 -1727699042587 0.08508099999994556 1 -1727699052864 0.6149239999999736 2 -1727699063186 0.65453100000002 3 diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/system/network_transmit_megabytes b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/system/network_transmit_megabytes deleted file mode 100644 index 82e4b8ec3298c7de3f031d18743877f034d64f76..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,4 +0,0 @@ -1727699032322 0.0 0 -1727699042587 0.00864699999999985 1 -1727699052864 0.035356000000000165 2 -1727699063186 0.0505020000000016 3 diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/system/system_memory_usage_megabytes b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index a277984aba1e38941eb7c695fe3fed226ab20250..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,4 +0,0 @@ -1727699032322 16249.4 0 -1727699042587 16417.3 1 -1727699052864 16312.1 2 -1727699063186 16378.4 3 diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/system/system_memory_usage_percentage b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/system/system_memory_usage_percentage deleted file mode 100644 index b4ca367211326ef92032d5ab05a9e9ea0eff7d58..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,4 +0,0 @@ -1727699032322 95.7 0 -1727699042587 96.7 1 -1727699052864 96.0 2 -1727699063186 96.4 3 diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/training_mean_absolute_error b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/training_mean_absolute_error deleted file mode 100644 index 251495bac41958358de10d94c8fb2bdf69041efb..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727699046897 1.4686008020663406 0 diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/training_mean_squared_error b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/training_mean_squared_error deleted file mode 100644 index 79ffbc48018b263822185c728e270a26c9e8108e..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727699046897 4.513877183591633 0 diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/training_r2_score b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/training_r2_score deleted file mode 100644 index e513f2d7aa7679aad6b959057ff75ba906acf221..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727699046897 0.934567668476269 0 diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/training_root_mean_squared_error b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/training_root_mean_squared_error deleted file mode 100644 index 03cbbc6232965b8507c8b7e59e103a48375e4e30..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727699046897 2.124588709278018 0 diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/training_score b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/training_score deleted file mode 100644 index 9d0a74e011f2fe98190c0da57d027677e6fd3286..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727699047137 0.934567668476269 0 diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/bootstrap b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/bootstrap deleted file mode 100644 index 4791ed5559bd77f54e1520025768e2b368705876..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/bootstrap +++ /dev/null @@ -1 +0,0 @@ -True \ No newline at end of file diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/ccp_alpha b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/criterion b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/max_depth b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/max_features b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/max_features deleted file mode 100644 index 9f8e9b69a33f4e8067d5b21661a35d8856758aba..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/max_features +++ /dev/null @@ -1 +0,0 @@ -1.0 \ No newline at end of file diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/max_leaf_nodes b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/max_samples b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/max_samples deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/max_samples +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/min_impurity_decrease b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/min_samples_leaf b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/min_samples_split b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/min_samples_split deleted file mode 100644 index d8263ee9860594d2806b0dfd1bfd17528b0ba2a4..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/min_samples_split +++ /dev/null @@ -1 +0,0 @@ -2 \ No newline at end of file diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/min_weight_fraction_leaf b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/monotonic_cst b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/n_estimators b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/n_estimators deleted file mode 100644 index 105d7d9ad3afc7bb78a0dec4d829880831605dfb..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/n_estimators +++ /dev/null @@ -1 +0,0 @@ -100 \ No newline at end of file diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/n_jobs b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/n_jobs deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/n_jobs +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/oob_score b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/oob_score deleted file mode 100644 index c1f22fbc23bb6ee67824843d6685826db10313d3..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/oob_score +++ /dev/null @@ -1 +0,0 @@ -False \ No newline at end of file diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/random_state b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/verbose b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/verbose deleted file mode 100644 index c227083464fb9af8955c90d2924774ee50abb547..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/verbose +++ /dev/null @@ -1 +0,0 @@ -0 \ No newline at end of file diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/warm_start b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/warm_start deleted file mode 100644 index c1f22fbc23bb6ee67824843d6685826db10313d3..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/params/warm_start +++ /dev/null @@ -1 +0,0 @@ -False \ No newline at end of file diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/tags/estimator_class b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/tags/estimator_class deleted file mode 100644 index c97c86cfb4456edecdb2cdc6a33e06e728ad7a3d..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.ensemble._forest.RandomForestRegressor \ No newline at end of file diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/tags/estimator_name b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/tags/estimator_name deleted file mode 100644 index fdec80fa3af12a48caeafbabc871211c4cdeb364..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -RandomForestRegressor \ No newline at end of file diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/tags/mlflow.autologging b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/tags/mlflow.autologging deleted file mode 100644 index 044bdd758636edf2ee49b03917cb416d76a71de4..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -sklearn \ No newline at end of file diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/tags/mlflow.log-model.history b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/tags/mlflow.log-model.history deleted file mode 100644 index 44905504b7850625b5fa376bc92c2d7e183f203a..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "ff9b209269104b37b82bb9564fe96907", "artifact_path": "model", "utc_time_created": "2024-09-30 12:24:07.662782", "model_uuid": "6d6ca6151f804bf69e8c2ad9a6f0deb8", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/tags/mlflow.runName b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/tags/mlflow.runName deleted file mode 100644 index cf1095a581d0a13ff208d37f77ecf2ba44618485..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -learned-gnu-365 \ No newline at end of file diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/tags/mlflow.source.git.commit b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/tags/mlflow.source.git.commit deleted file mode 100644 index b9ea510318a74d958a9174bc540d8caf7ea139e5..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -2e3cee67a062d9b1790ae929ca7415c02604d303 \ No newline at end of file diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/tags/mlflow.source.name b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/tags/mlflow.source.type b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/tags/mlflow.user b/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/ff9b209269104b37b82bb9564fe96907/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/149819317988706962/meta.yaml b/mlruns/149819317988706962/meta.yaml deleted file mode 100644 index a5ad706ec79645a23fb7646c329bb217af09ae57..0000000000000000000000000000000000000000 --- a/mlruns/149819317988706962/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -artifact_location: mlflow-artifacts:/149819317988706962 -creation_time: 1727642091797 -experiment_id: '149819317988706962' -last_update_time: 1727642091797 -lifecycle_stage: active -name: RandomForest-BayesianOptimization diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/inputs/14ced49aa0f8186842949e93b257df37/meta.yaml b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/inputs/14ced49aa0f8186842949e93b257df37/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/inputs/14ced49aa0f8186842949e93b257df37/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/inputs/469fcae526ad9176bce35f8a7dabdeb8/meta.yaml b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/inputs/469fcae526ad9176bce35f8a7dabdeb8/meta.yaml deleted file mode 100644 index 0723f98cc08a32c652ef5acce9e4e8384bb6d541..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/inputs/469fcae526ad9176bce35f8a7dabdeb8/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 48179f7583d906f437293b4ed859818c -destination_type: RUN -source_id: 48179f7583d906f437293b4ed859818c -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/meta.yaml b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/meta.yaml deleted file mode 100644 index a178345b394b85163bff82a53e2280643d630725..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: mlflow-artifacts:/674375719018272828/2ad059c5d4704ed088a288d572818bcf/artifacts -end_time: 1727642091474 -entry_point_name: '' -experiment_id: '674375719018272828' -lifecycle_stage: active -run_id: 2ad059c5d4704ed088a288d572818bcf -run_name: stately-worm-527 -run_uuid: 2ad059c5d4704ed088a288d572818bcf -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727642048270 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/metrics/system/cpu_utilization_percentage b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/metrics/system/cpu_utilization_percentage deleted file mode 100644 index 6ca5d0e24de4fc1501adde530ce748fa779a3fe0..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,4 +0,0 @@ -1727642058560 71.6 0 -1727642068738 84.9 1 -1727642078895 99.4 2 -1727642089012 99.6 3 diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/metrics/system/disk_available_megabytes b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/metrics/system/disk_available_megabytes deleted file mode 100644 index bf8f507dbbc79e8614f04cc75e2c014ae32ec9e2..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,4 +0,0 @@ -1727642058560 90994.8 0 -1727642068738 90994.1 1 -1727642078895 90993.6 2 -1727642089012 90990.3 3 diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/metrics/system/disk_usage_megabytes b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/metrics/system/disk_usage_megabytes deleted file mode 100644 index 5471a39850d2a4371d025c04eba24aedbdfef920..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,4 +0,0 @@ -1727642058560 420142.3 0 -1727642068738 420143.0 1 -1727642078895 420143.5 2 -1727642089012 420146.8 3 diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/metrics/system/disk_usage_percentage b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/metrics/system/disk_usage_percentage deleted file mode 100644 index b54b12ed3987d32719407b88965bc73a4cb699e7..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,4 +0,0 @@ -1727642058560 82.2 0 -1727642068738 82.2 1 -1727642078895 82.2 2 -1727642089012 82.2 3 diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index 786422fa63e7ba149a32e5616819c65b1f7cc4ba..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,4 +0,0 @@ -1727642058560 346.3 0 -1727642068738 324.3 1 -1727642078895 317.6 2 -1727642089012 310.2 3 diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/metrics/system/gpu_0_memory_usage_percentage b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index a54e7065888dddceec4fbb9384f5269a1ed6c97f..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,4 +0,0 @@ -1727642058560 16.1 0 -1727642068738 15.1 1 -1727642078895 14.8 2 -1727642089012 14.4 3 diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/metrics/system/gpu_0_utilization_percentage b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index 9e9d119e7abeaf6ea4dc7acdc0d1f4bdb946b1d1..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,4 +0,0 @@ -1727642058560 24.0 0 -1727642068738 0.0 1 -1727642078895 0.0 2 -1727642089012 0.0 3 diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/metrics/system/network_receive_megabytes b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/metrics/system/network_receive_megabytes deleted file mode 100644 index 97037686521cb205e76af6cdec1e8b77c6cfdebb..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,4 +0,0 @@ -1727642058560 6.600000000389628e-05 0 -1727642068738 0.23082099999999173 1 -1727642078895 0.23349400000000742 2 -1727642089012 0.2718749999999943 3 diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/metrics/system/network_transmit_megabytes b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/metrics/system/network_transmit_megabytes deleted file mode 100644 index 245886e01edafe87ec978b3bae64189c77d9c311..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,4 +0,0 @@ -1727642058560 0.0 0 -1727642068738 0.01222700000000998 1 -1727642078895 0.013097000000001913 2 -1727642089012 0.027844000000001756 3 diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/metrics/system/system_memory_usage_megabytes b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index 3ebb1145954616199d5d79938d3d62547e6a4049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,4 +0,0 @@ -1727642058560 11705.2 0 -1727642068738 11750.1 1 -1727642078895 11799.7 2 -1727642089012 11554.2 3 diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/metrics/system/system_memory_usage_percentage b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/metrics/system/system_memory_usage_percentage deleted file mode 100644 index ee75a0c0445562384ae9a3e94a1d976bf657b887..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,4 +0,0 @@ -1727642058560 68.9 0 -1727642068738 69.2 1 -1727642078895 69.5 2 -1727642089012 68.0 3 diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/base_score b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/base_score deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/base_score +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/booster b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/booster deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/booster +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/colsample_bylevel b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/colsample_bylevel deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/colsample_bylevel +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/colsample_bynode b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/colsample_bynode deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/colsample_bynode +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/colsample_bytree b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/colsample_bytree deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/colsample_bytree +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/custom_metric b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/custom_metric deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/custom_metric +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/device b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/device deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/device +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/early_stopping_rounds b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/early_stopping_rounds deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/early_stopping_rounds +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/eval_metric b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/eval_metric deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/eval_metric +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/gamma b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/gamma deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/gamma +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/grow_policy b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/grow_policy deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/grow_policy +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/interaction_constraints b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/interaction_constraints deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/interaction_constraints +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/learning_rate b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/learning_rate deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/learning_rate +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/max_bin b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/max_bin deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/max_bin +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/max_cat_threshold b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/max_cat_threshold deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/max_cat_threshold +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/max_cat_to_onehot b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/max_cat_to_onehot deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/max_cat_to_onehot +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/max_delta_step b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/max_delta_step deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/max_delta_step +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/max_depth b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/max_leaves b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/max_leaves deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/max_leaves +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/maximize b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/maximize deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/maximize +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/min_child_weight b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/min_child_weight deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/min_child_weight +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/monotone_constraints b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/monotone_constraints deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/monotone_constraints +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/multi_strategy b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/multi_strategy deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/multi_strategy +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/n_jobs b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/n_jobs deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/n_jobs +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/num_boost_round b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/num_boost_round deleted file mode 100644 index 105d7d9ad3afc7bb78a0dec4d829880831605dfb..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/num_boost_round +++ /dev/null @@ -1 +0,0 @@ -100 \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/num_parallel_tree b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/num_parallel_tree deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/num_parallel_tree +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/objective b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/objective deleted file mode 100644 index 2f5dba794ce239746ae5a5a58dfb33aa48e7a050..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/objective +++ /dev/null @@ -1 +0,0 @@ -reg:squarederror \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/random_state b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/reg_alpha b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/reg_alpha deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/reg_alpha +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/reg_lambda b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/reg_lambda deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/reg_lambda +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/sampling_method b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/sampling_method deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/sampling_method +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/scale_pos_weight b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/scale_pos_weight deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/scale_pos_weight +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/subsample b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/subsample deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/subsample +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/tree_method b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/tree_method deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/tree_method +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/validate_parameters b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/validate_parameters deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/validate_parameters +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/verbose_eval b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/verbose_eval deleted file mode 100644 index 4791ed5559bd77f54e1520025768e2b368705876..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/verbose_eval +++ /dev/null @@ -1 +0,0 @@ -True \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/verbosity b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/verbosity deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/params/verbosity +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/tags/mlflow.autologging b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/tags/mlflow.autologging deleted file mode 100644 index adb4f9840874972f9c580b23aa343d7ca11b3289..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -xgboost \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/tags/mlflow.log-model.history b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/tags/mlflow.log-model.history deleted file mode 100644 index 3d72e1abc7736f4b1d09e32a66eaa20920a981fc..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "2ad059c5d4704ed088a288d572818bcf", "artifact_path": "model", "utc_time_created": "2024-09-29 20:34:46.696536", "model_uuid": "ae7825e16b794647905010b3fabdf5ee", "flavors": {"python_function": {"loader_module": "mlflow.xgboost", "python_version": "3.11.0", "data": "model.xgb", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "xgboost": {"xgb_version": "2.1.1", "data": "model.xgb", "model_class": "xgboost.sklearn.XGBRegressor", "model_format": "xgb", "code": null}}}] \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/tags/mlflow.runName b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/tags/mlflow.runName deleted file mode 100644 index 10556fe0ca5fdb7a523b4052a6b752f1e3cebfba..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -stately-worm-527 \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/tags/mlflow.source.git.commit b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/tags/mlflow.source.git.commit deleted file mode 100644 index 38bea58d3eed4194d95922f337daa60cbc044a21..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -da08d56ac3b3131519322c57e8db01547d638865 \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/tags/mlflow.source.name b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/tags/mlflow.source.type b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/tags/mlflow.user b/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/2ad059c5d4704ed088a288d572818bcf/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/inputs/01e64052c3679ab1edac7c0283e4b99f/meta.yaml b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/inputs/01e64052c3679ab1edac7c0283e4b99f/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/inputs/01e64052c3679ab1edac7c0283e4b99f/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/inputs/cd326eb3d8c398ba51b013158898b28b/meta.yaml b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/inputs/cd326eb3d8c398ba51b013158898b28b/meta.yaml deleted file mode 100644 index 0723f98cc08a32c652ef5acce9e4e8384bb6d541..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/inputs/cd326eb3d8c398ba51b013158898b28b/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 48179f7583d906f437293b4ed859818c -destination_type: RUN -source_id: 48179f7583d906f437293b4ed859818c -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/meta.yaml b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/meta.yaml deleted file mode 100644 index 1ebd65956184baa61807e0d59809279327225275..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: mlflow-artifacts:/674375719018272828/32599368741e4784aaa387a8ec350b73/artifacts -end_time: 1727645953140 -entry_point_name: '' -experiment_id: '674375719018272828' -lifecycle_stage: active -run_id: 32599368741e4784aaa387a8ec350b73 -run_name: marvelous-finch-483 -run_uuid: 32599368741e4784aaa387a8ec350b73 -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727645907697 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/metrics/system/cpu_utilization_percentage b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/metrics/system/cpu_utilization_percentage deleted file mode 100644 index d85bd4ad7270d89b246c274fe17db19a5ac24ad2..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,4 +0,0 @@ -1727645917913 71.7 0 -1727645928095 88.3 1 -1727645938266 99.6 2 -1727645948408 99.0 3 diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/metrics/system/disk_available_megabytes b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/metrics/system/disk_available_megabytes deleted file mode 100644 index 82c7e77e453440c2aa355d83343738d09c5c8d05..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,4 +0,0 @@ -1727645917913 90976.5 0 -1727645928095 90980.1 1 -1727645938266 90979.8 2 -1727645948408 90979.3 3 diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/metrics/system/disk_usage_megabytes b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/metrics/system/disk_usage_megabytes deleted file mode 100644 index f0d5338f23faff7ca737bd37d52966a6dc02dfc4..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,4 +0,0 @@ -1727645917913 420160.6 0 -1727645928095 420157.0 1 -1727645938266 420157.3 2 -1727645948408 420157.8 3 diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/metrics/system/disk_usage_percentage b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/metrics/system/disk_usage_percentage deleted file mode 100644 index b57669644c7ddc5f943c3313b054add9c1dbf680..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,4 +0,0 @@ -1727645917913 82.2 0 -1727645928095 82.2 1 -1727645938266 82.2 2 -1727645948408 82.2 3 diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index 8e8008cde2ed683a7bf84b3fe86d0c79f6beee1f..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,4 +0,0 @@ -1727645917913 312.3 0 -1727645928095 384.3 1 -1727645938266 382.7 2 -1727645948408 323.1 3 diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/metrics/system/gpu_0_memory_usage_percentage b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index b208aff593ac4407a10f57ba6fc2e8ee08698d08..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,4 +0,0 @@ -1727645917913 14.5 0 -1727645928095 17.9 1 -1727645938266 17.8 2 -1727645948408 15.0 3 diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/metrics/system/gpu_0_utilization_percentage b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index 1b8d29e53a70fff99ac8a07f9c973ffa0de7573c..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,4 +0,0 @@ -1727645917913 0.0 0 -1727645928095 7.0 1 -1727645938266 15.0 2 -1727645948408 2.0 3 diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/metrics/system/network_receive_megabytes b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/metrics/system/network_receive_megabytes deleted file mode 100644 index 051d7d67b8f8b83508510fda1daa1c0639d56c73..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,4 +0,0 @@ -1727645917913 0.0 0 -1727645928095 0.06177700000000641 1 -1727645938266 0.07706199999998375 2 -1727645948408 0.1104259999999897 3 diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/metrics/system/network_transmit_megabytes b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/metrics/system/network_transmit_megabytes deleted file mode 100644 index cd77a19f1015ddf9aa5e1d22ca9ca514798edadb..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,4 +0,0 @@ -1727645917913 0.0 0 -1727645928095 0.10868000000000677 1 -1727645938266 0.13131800000000737 2 -1727645948408 0.2059899999999999 3 diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/metrics/system/system_memory_usage_megabytes b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index 6d693c62e5db62775e09001bab94548dc3e7f2f3..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,4 +0,0 @@ -1727645917913 11411.2 0 -1727645928095 11505.9 1 -1727645938266 11384.6 2 -1727645948408 11293.7 3 diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/metrics/system/system_memory_usage_percentage b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/metrics/system/system_memory_usage_percentage deleted file mode 100644 index 8a67539cc754214fd8e03bccc015815e0662d7da..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,4 +0,0 @@ -1727645917913 67.2 0 -1727645928095 67.7 1 -1727645938266 67.0 2 -1727645948408 66.5 3 diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/base_score b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/base_score deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/base_score +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/booster b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/booster deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/booster +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/colsample_bylevel b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/colsample_bylevel deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/colsample_bylevel +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/colsample_bynode b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/colsample_bynode deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/colsample_bynode +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/colsample_bytree b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/colsample_bytree deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/colsample_bytree +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/custom_metric b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/custom_metric deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/custom_metric +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/device b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/device deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/device +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/early_stopping_rounds b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/early_stopping_rounds deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/early_stopping_rounds +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/eval_metric b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/eval_metric deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/eval_metric +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/gamma b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/gamma deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/gamma +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/grow_policy b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/grow_policy deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/grow_policy +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/interaction_constraints b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/interaction_constraints deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/interaction_constraints +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/learning_rate b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/learning_rate deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/learning_rate +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/max_bin b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/max_bin deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/max_bin +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/max_cat_threshold b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/max_cat_threshold deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/max_cat_threshold +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/max_cat_to_onehot b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/max_cat_to_onehot deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/max_cat_to_onehot +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/max_delta_step b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/max_delta_step deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/max_delta_step +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/max_depth b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/max_leaves b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/max_leaves deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/max_leaves +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/maximize b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/maximize deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/maximize +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/min_child_weight b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/min_child_weight deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/min_child_weight +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/monotone_constraints b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/monotone_constraints deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/monotone_constraints +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/multi_strategy b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/multi_strategy deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/multi_strategy +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/n_jobs b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/n_jobs deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/n_jobs +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/num_boost_round b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/num_boost_round deleted file mode 100644 index 105d7d9ad3afc7bb78a0dec4d829880831605dfb..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/num_boost_round +++ /dev/null @@ -1 +0,0 @@ -100 \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/num_parallel_tree b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/num_parallel_tree deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/num_parallel_tree +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/objective b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/objective deleted file mode 100644 index 2f5dba794ce239746ae5a5a58dfb33aa48e7a050..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/objective +++ /dev/null @@ -1 +0,0 @@ -reg:squarederror \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/random_state b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/reg_alpha b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/reg_alpha deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/reg_alpha +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/reg_lambda b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/reg_lambda deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/reg_lambda +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/sampling_method b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/sampling_method deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/sampling_method +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/scale_pos_weight b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/scale_pos_weight deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/scale_pos_weight +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/subsample b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/subsample deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/subsample +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/tree_method b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/tree_method deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/tree_method +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/validate_parameters b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/validate_parameters deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/validate_parameters +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/verbose_eval b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/verbose_eval deleted file mode 100644 index 4791ed5559bd77f54e1520025768e2b368705876..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/verbose_eval +++ /dev/null @@ -1 +0,0 @@ -True \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/verbosity b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/verbosity deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/params/verbosity +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/tags/mlflow.autologging b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/tags/mlflow.autologging deleted file mode 100644 index adb4f9840874972f9c580b23aa343d7ca11b3289..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -xgboost \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/tags/mlflow.log-model.history b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/tags/mlflow.log-model.history deleted file mode 100644 index 2fe679c566ff52e2ad9e9b94c476d73990db2c35..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "32599368741e4784aaa387a8ec350b73", "artifact_path": "model", "utc_time_created": "2024-09-29 21:39:08.545139", "model_uuid": "4edaf6d4ff8a40fc9b0964a865424d34", "flavors": {"python_function": {"loader_module": "mlflow.xgboost", "python_version": "3.11.0", "data": "model.xgb", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "xgboost": {"xgb_version": "2.1.1", "data": "model.xgb", "model_class": "xgboost.sklearn.XGBRegressor", "model_format": "xgb", "code": null}}}] \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/tags/mlflow.runName b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/tags/mlflow.runName deleted file mode 100644 index a6d500c0a9b6b2867ad16fee9a0bab6bbe0c2110..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -marvelous-finch-483 \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/tags/mlflow.source.git.commit b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/tags/mlflow.source.git.commit deleted file mode 100644 index 6a04567d482b95da916b8765e0e8616fdd6b913f..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -50f51da8088aa9c4731e2604257dd2f36c417b5d \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/tags/mlflow.source.name b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/tags/mlflow.source.type b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/tags/mlflow.user b/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/32599368741e4784aaa387a8ec350b73/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/inputs/7aa13c75aefe62268d12192687f1aa1a/meta.yaml b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/inputs/7aa13c75aefe62268d12192687f1aa1a/meta.yaml deleted file mode 100644 index 0723f98cc08a32c652ef5acce9e4e8384bb6d541..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/inputs/7aa13c75aefe62268d12192687f1aa1a/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 48179f7583d906f437293b4ed859818c -destination_type: RUN -source_id: 48179f7583d906f437293b4ed859818c -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/meta.yaml b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/meta.yaml deleted file mode 100644 index 34afb276ca31b05775b86b5eac744e0dcba12ba2..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: mlflow-artifacts:/674375719018272828/4abf73b6aee649309d28094bd052ac16/artifacts -end_time: null -entry_point_name: '' -experiment_id: '674375719018272828' -lifecycle_stage: active -run_id: 4abf73b6aee649309d28094bd052ac16 -run_name: Bayesian_Optimization_Training_and_Eval -run_uuid: 4abf73b6aee649309d28094bd052ac16 -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727712672843 -status: 1 -tags: [] -user_id: User diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/metrics/system/cpu_utilization_percentage b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/metrics/system/cpu_utilization_percentage deleted file mode 100644 index ed89023666fa7ad3350df5937add7d59cdae9260..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,12 +0,0 @@ -1727712683342 100.0 0 -1727712693732 100.0 1 -1727712704948 100.0 2 -1727712715527 100.0 3 -1727712725759 100.0 4 -1727712736320 100.0 5 -1727712746747 100.0 6 -1727712757370 100.0 7 -1727712768312 100.0 8 -1727712778768 100.0 9 -1727712789214 100.0 10 -1727712800329 100.0 11 diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/metrics/system/disk_available_megabytes b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/metrics/system/disk_available_megabytes deleted file mode 100644 index edbef711e5e6cc4b32cf58161a2e57cbe4b43e1d..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,12 +0,0 @@ -1727712683342 82999.9 0 -1727712693732 83015.5 1 -1727712704948 83015.3 2 -1727712715527 83014.4 3 -1727712725759 83010.9 4 -1727712736320 83006.6 5 -1727712746747 83012.8 6 -1727712757370 82991.5 7 -1727712768312 82951.4 8 -1727712778768 83007.7 9 -1727712789214 83039.4 10 -1727712800329 83027.3 11 diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/metrics/system/disk_usage_megabytes b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/metrics/system/disk_usage_megabytes deleted file mode 100644 index 9fcfcc141883f1028e1060979a99b930aad871bb..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,12 +0,0 @@ -1727712683342 428137.2 0 -1727712693732 428121.6 1 -1727712704948 428121.8 2 -1727712715527 428122.6 3 -1727712725759 428126.2 4 -1727712736320 428130.4 5 -1727712746747 428124.3 6 -1727712757370 428145.6 7 -1727712768312 428185.7 8 -1727712778768 428129.4 9 -1727712789214 428097.7 10 -1727712800329 428109.8 11 diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/metrics/system/disk_usage_percentage b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/metrics/system/disk_usage_percentage deleted file mode 100644 index 874ad550f4ff27e78c6b4e199ad618b17387d769..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,12 +0,0 @@ -1727712683342 83.8 0 -1727712693732 83.8 1 -1727712704948 83.8 2 -1727712715527 83.8 3 -1727712725759 83.8 4 -1727712736320 83.8 5 -1727712746747 83.8 6 -1727712757370 83.8 7 -1727712768312 83.8 8 -1727712778768 83.8 9 -1727712789214 83.8 10 -1727712800329 83.8 11 diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index a7bbdd598547aee01426c571245a3eada248f0bd..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,12 +0,0 @@ -1727712683342 275.1 0 -1727712693732 305.8 1 -1727712704948 262.0 2 -1727712715527 309.3 3 -1727712725759 278.6 4 -1727712736320 254.9 5 -1727712746747 274.4 6 -1727712757370 246.8 7 -1727712768312 260.3 8 -1727712778768 244.0 9 -1727712789214 260.8 10 -1727712800329 244.7 11 diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/metrics/system/gpu_0_memory_usage_percentage b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index 6567727607abeb2daddc3e00f6ca8c3ad99cc61e..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,12 +0,0 @@ -1727712683342 12.8 0 -1727712693732 14.2 1 -1727712704948 12.2 2 -1727712715527 14.4 3 -1727712725759 13.0 4 -1727712736320 11.9 5 -1727712746747 12.8 6 -1727712757370 11.5 7 -1727712768312 12.1 8 -1727712778768 11.4 9 -1727712789214 12.1 10 -1727712800329 11.4 11 diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/metrics/system/gpu_0_utilization_percentage b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index 2859710058a992e545ff3e63578ec07587cd9da3..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,12 +0,0 @@ -1727712683342 14.0 0 -1727712693732 0.0 1 -1727712704948 0.0 2 -1727712715527 0.0 3 -1727712725759 5.0 4 -1727712736320 8.0 5 -1727712746747 4.0 6 -1727712757370 4.0 7 -1727712768312 15.0 8 -1727712778768 6.0 9 -1727712789214 8.0 10 -1727712800329 12.0 11 diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/metrics/system/network_receive_megabytes b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/metrics/system/network_receive_megabytes deleted file mode 100644 index 2999375f2a362bab38dbe659b29adda672059177..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,12 +0,0 @@ -1727712683342 7.700000000099294e-05 0 -1727712693732 0.08471800000000052 1 -1727712704948 0.30675200000000125 2 -1727712715527 0.34224999999999994 3 -1727712725759 0.5980840000000001 4 -1727712736320 0.7816330000000011 5 -1727712746747 0.9241390000000003 6 -1727712757370 1.0341890000000014 7 -1727712768312 1.101586000000001 8 -1727712778768 1.1306530000000006 9 -1727712789214 1.3700410000000005 10 -1727712800329 1.8510170000000006 11 diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/metrics/system/network_transmit_megabytes b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/metrics/system/network_transmit_megabytes deleted file mode 100644 index f82ac9ad321d767684e52cc653b342b4baeab1ae..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,12 +0,0 @@ -1727712683342 0.0 0 -1727712693732 0.03116600000000025 1 -1727712704948 0.084422 2 -1727712715527 0.09481000000000028 3 -1727712725759 0.1713720000000003 4 -1727712736320 0.21418200000000054 5 -1727712746747 0.218823 6 -1727712757370 0.26654700000000053 7 -1727712768312 0.28704500000000044 8 -1727712778768 0.30039099999999985 9 -1727712789214 0.35157200000000044 10 -1727712800329 0.4850220000000003 11 diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/metrics/system/system_memory_usage_megabytes b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index 0933d96d3bb1557ef08a2d0b0565ec44999ce724..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,12 +0,0 @@ -1727712683342 16172.4 0 -1727712693732 16431.6 1 -1727712704948 16432.8 2 -1727712715527 16470.4 3 -1727712725759 16402.6 4 -1727712736320 16235.0 5 -1727712746747 16412.0 6 -1727712757370 16372.1 7 -1727712768312 16457.6 8 -1727712778768 16408.5 9 -1727712789214 16346.7 10 -1727712800329 16168.7 11 diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/metrics/system/system_memory_usage_percentage b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/metrics/system/system_memory_usage_percentage deleted file mode 100644 index ac88e1928867c691c543ce58244eb641316091a7..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,12 +0,0 @@ -1727712683342 95.2 0 -1727712693732 96.7 1 -1727712704948 96.7 2 -1727712715527 97.0 3 -1727712725759 96.6 4 -1727712736320 95.6 5 -1727712746747 96.6 6 -1727712757370 96.4 7 -1727712768312 96.9 8 -1727712778768 96.6 9 -1727712789214 96.2 10 -1727712800329 95.2 11 diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/base_score b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/base_score deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/base_score +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/booster b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/booster deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/booster +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/colsample_bylevel b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/colsample_bylevel deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/colsample_bylevel +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/colsample_bynode b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/colsample_bynode deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/colsample_bynode +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/colsample_bytree b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/colsample_bytree deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/colsample_bytree +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/custom_metric b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/custom_metric deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/custom_metric +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/device b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/device deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/device +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/early_stopping_rounds b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/early_stopping_rounds deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/early_stopping_rounds +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/eval_metric b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/eval_metric deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/eval_metric +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/gamma b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/gamma deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/gamma +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/grow_policy b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/grow_policy deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/grow_policy +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/interaction_constraints b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/interaction_constraints deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/interaction_constraints +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/learning_rate b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/learning_rate deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/learning_rate +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/max_bin b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/max_bin deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/max_bin +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/max_cat_threshold b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/max_cat_threshold deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/max_cat_threshold +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/max_cat_to_onehot b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/max_cat_to_onehot deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/max_cat_to_onehot +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/max_delta_step b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/max_delta_step deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/max_delta_step +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/max_depth b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/max_leaves b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/max_leaves deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/max_leaves +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/maximize b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/maximize deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/maximize +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/min_child_weight b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/min_child_weight deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/min_child_weight +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/monotone_constraints b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/monotone_constraints deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/monotone_constraints +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/multi_strategy b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/multi_strategy deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/multi_strategy +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/n_jobs b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/n_jobs deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/n_jobs +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/num_boost_round b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/num_boost_round deleted file mode 100644 index 105d7d9ad3afc7bb78a0dec4d829880831605dfb..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/num_boost_round +++ /dev/null @@ -1 +0,0 @@ -100 \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/num_parallel_tree b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/num_parallel_tree deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/num_parallel_tree +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/objective b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/objective deleted file mode 100644 index 2f5dba794ce239746ae5a5a58dfb33aa48e7a050..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/objective +++ /dev/null @@ -1 +0,0 @@ -reg:squarederror \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/random_state b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/reg_alpha b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/reg_alpha deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/reg_alpha +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/reg_lambda b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/reg_lambda deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/reg_lambda +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/sampling_method b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/sampling_method deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/sampling_method +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/scale_pos_weight b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/scale_pos_weight deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/scale_pos_weight +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/subsample b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/subsample deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/subsample +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/tree_method b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/tree_method deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/tree_method +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/validate_parameters b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/validate_parameters deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/validate_parameters +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/verbose_eval b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/verbose_eval deleted file mode 100644 index 4791ed5559bd77f54e1520025768e2b368705876..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/verbose_eval +++ /dev/null @@ -1 +0,0 @@ -True \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/verbosity b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/verbosity deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/params/verbosity +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/tags/mlflow.runName b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/tags/mlflow.runName deleted file mode 100644 index 39c57e5e2445a0b5c78f476020799ebb5c99fb29..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -Bayesian_Optimization_Training_and_Eval \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/tags/mlflow.source.git.commit b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/tags/mlflow.source.git.commit deleted file mode 100644 index b9ea510318a74d958a9174bc540d8caf7ea139e5..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -2e3cee67a062d9b1790ae929ca7415c02604d303 \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/tags/mlflow.source.name b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/tags/mlflow.source.type b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/tags/mlflow.user b/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/4abf73b6aee649309d28094bd052ac16/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/inputs/ae95521536278b2749dc9907e977df6e/meta.yaml b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/inputs/ae95521536278b2749dc9907e977df6e/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/inputs/ae95521536278b2749dc9907e977df6e/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/inputs/d6f9497e1067937748bec876336f2ec6/meta.yaml b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/inputs/d6f9497e1067937748bec876336f2ec6/meta.yaml deleted file mode 100644 index 0723f98cc08a32c652ef5acce9e4e8384bb6d541..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/inputs/d6f9497e1067937748bec876336f2ec6/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 48179f7583d906f437293b4ed859818c -destination_type: RUN -source_id: 48179f7583d906f437293b4ed859818c -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/meta.yaml b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/meta.yaml deleted file mode 100644 index e136f6e494ac619d77867d277d31dd4e01d9b872..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: mlflow-artifacts:/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/artifacts -end_time: 1727698983802 -entry_point_name: '' -experiment_id: '674375719018272828' -lifecycle_stage: active -run_id: 5da5a79d58cf46bb8d6496df6c8bc067 -run_name: brawny-grouse-593 -run_uuid: 5da5a79d58cf46bb8d6496df6c8bc067 -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727698624309 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/metrics/system/cpu_utilization_percentage b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/metrics/system/cpu_utilization_percentage deleted file mode 100644 index ac21f44cefd903c37365d239aa97c5d87a770b9c..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,34 +0,0 @@ -1727698634821 100.0 0 -1727698645156 100.0 1 -1727698655387 100.0 2 -1727698665700 100.0 3 -1727698675951 100.0 4 -1727698686202 100.0 5 -1727698696618 100.0 6 -1727698706853 100.0 7 -1727698717101 100.0 8 -1727698727484 100.0 9 -1727698737736 100.0 10 -1727698748138 100.0 11 -1727698758433 100.0 12 -1727698768884 100.0 13 -1727698779126 100.0 14 -1727698789394 100.0 15 -1727698799592 100.0 16 -1727698810631 100.0 17 -1727698820923 99.9 18 -1727698831262 100.0 19 -1727698841498 100.0 20 -1727698851866 100.0 21 -1727698862154 100.0 22 -1727698872429 100.0 23 -1727698882905 100.0 24 -1727698893468 100.0 25 -1727698903791 100.0 26 -1727698914119 100.0 27 -1727698924462 100.0 28 -1727698934840 100.0 29 -1727698945140 99.9 30 -1727698955366 100.0 31 -1727698965639 100.0 32 -1727698975910 100.0 33 diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/metrics/system/disk_available_megabytes b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/metrics/system/disk_available_megabytes deleted file mode 100644 index bd87d00475a6bf99fb668bf8b408ca81cce81d98..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,34 +0,0 @@ -1727698634821 83267.6 0 -1727698645156 83267.4 1 -1727698655387 83297.3 2 -1727698665700 83297.3 3 -1727698675951 83294.3 4 -1727698686202 83293.7 5 -1727698696618 83293.3 6 -1727698706853 83293.3 7 -1727698717101 83287.2 8 -1727698727484 83280.0 9 -1727698737736 83271.3 10 -1727698748138 83271.0 11 -1727698758433 83274.7 12 -1727698768884 83274.7 13 -1727698779126 83251.8 14 -1727698789394 83258.1 15 -1727698799592 83249.6 16 -1727698810631 83249.3 17 -1727698820923 83252.5 18 -1727698831262 83252.4 19 -1727698841498 83252.2 20 -1727698851866 83244.9 21 -1727698862154 83263.2 22 -1727698872429 83266.2 23 -1727698882905 83258.2 24 -1727698893468 83256.1 25 -1727698903791 83251.8 26 -1727698914119 83228.9 27 -1727698924462 83228.9 28 -1727698934840 83228.8 29 -1727698945140 83228.5 30 -1727698955366 83228.7 31 -1727698965639 83228.0 32 -1727698975910 83207.6 33 diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/metrics/system/disk_usage_megabytes b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/metrics/system/disk_usage_megabytes deleted file mode 100644 index 1ddcd93dd5ebe331f9f930c58d851662084dff4f..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,34 +0,0 @@ -1727698634821 427869.5 0 -1727698645156 427869.7 1 -1727698655387 427839.8 2 -1727698665700 427839.8 3 -1727698675951 427842.8 4 -1727698686202 427843.3 5 -1727698696618 427843.8 6 -1727698706853 427843.8 7 -1727698717101 427849.9 8 -1727698727484 427857.1 9 -1727698737736 427865.8 10 -1727698748138 427866.1 11 -1727698758433 427862.4 12 -1727698768884 427862.4 13 -1727698779126 427885.3 14 -1727698789394 427878.9 15 -1727698799592 427887.5 16 -1727698810631 427887.8 17 -1727698820923 427884.6 18 -1727698831262 427884.7 19 -1727698841498 427884.9 20 -1727698851866 427892.1 21 -1727698862154 427873.9 22 -1727698872429 427870.9 23 -1727698882905 427878.9 24 -1727698893468 427881.0 25 -1727698903791 427885.3 26 -1727698914119 427908.2 27 -1727698924462 427908.2 28 -1727698934840 427908.3 29 -1727698945140 427908.6 30 -1727698955366 427908.4 31 -1727698965639 427909.1 32 -1727698975910 427929.5 33 diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/metrics/system/disk_usage_percentage b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/metrics/system/disk_usage_percentage deleted file mode 100644 index f4f85de7c660b1b28848a9ad5247b57b65351eb7..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,34 +0,0 @@ -1727698634821 83.7 0 -1727698645156 83.7 1 -1727698655387 83.7 2 -1727698665700 83.7 3 -1727698675951 83.7 4 -1727698686202 83.7 5 -1727698696618 83.7 6 -1727698706853 83.7 7 -1727698717101 83.7 8 -1727698727484 83.7 9 -1727698737736 83.7 10 -1727698748138 83.7 11 -1727698758433 83.7 12 -1727698768884 83.7 13 -1727698779126 83.7 14 -1727698789394 83.7 15 -1727698799592 83.7 16 -1727698810631 83.7 17 -1727698820923 83.7 18 -1727698831262 83.7 19 -1727698841498 83.7 20 -1727698851866 83.7 21 -1727698862154 83.7 22 -1727698872429 83.7 23 -1727698882905 83.7 24 -1727698893468 83.7 25 -1727698903791 83.7 26 -1727698914119 83.7 27 -1727698924462 83.7 28 -1727698934840 83.7 29 -1727698945140 83.7 30 -1727698955366 83.7 31 -1727698965639 83.7 32 -1727698975910 83.7 33 diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index 0b7538f566511bb0ebb6b93b7ba9e9351eece91b..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,34 +0,0 @@ -1727698634821 266.8 0 -1727698645156 317.7 1 -1727698655387 319.0 2 -1727698665700 317.8 3 -1727698675951 292.2 4 -1727698686202 357.8 5 -1727698696618 321.5 6 -1727698706853 293.7 7 -1727698717101 296.3 8 -1727698727484 302.9 9 -1727698737736 278.9 10 -1727698748138 271.5 11 -1727698758433 269.8 12 -1727698768884 242.6 13 -1727698779126 248.6 14 -1727698789394 239.0 15 -1727698799592 254.1 16 -1727698810631 269.2 17 -1727698820923 268.7 18 -1727698831262 298.6 19 -1727698841498 259.9 20 -1727698851866 257.6 21 -1727698862154 260.5 22 -1727698872429 241.9 23 -1727698882905 250.0 24 -1727698893468 243.3 25 -1727698903791 281.5 26 -1727698914119 255.5 27 -1727698924462 274.7 28 -1727698934840 281.3 29 -1727698945140 261.8 30 -1727698955366 289.1 31 -1727698965639 283.8 32 -1727698975910 265.6 33 diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/metrics/system/gpu_0_memory_usage_percentage b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index f8e82c479f5ff3211e422d3d257d4dc844c2cc1e..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,34 +0,0 @@ -1727698634821 12.4 0 -1727698645156 14.8 1 -1727698655387 14.9 2 -1727698665700 14.8 3 -1727698675951 13.6 4 -1727698686202 16.7 5 -1727698696618 15.0 6 -1727698706853 13.7 7 -1727698717101 13.8 8 -1727698727484 14.1 9 -1727698737736 13.0 10 -1727698748138 12.6 11 -1727698758433 12.6 12 -1727698768884 11.3 13 -1727698779126 11.6 14 -1727698789394 11.1 15 -1727698799592 11.8 16 -1727698810631 12.5 17 -1727698820923 12.5 18 -1727698831262 13.9 19 -1727698841498 12.1 20 -1727698851866 12.0 21 -1727698862154 12.1 22 -1727698872429 11.3 23 -1727698882905 11.6 24 -1727698893468 11.3 25 -1727698903791 13.1 26 -1727698914119 11.9 27 -1727698924462 12.8 28 -1727698934840 13.1 29 -1727698945140 12.2 30 -1727698955366 13.5 31 -1727698965639 13.2 32 -1727698975910 12.4 33 diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/metrics/system/gpu_0_utilization_percentage b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index 0d6613e5d423a1c6d7ac8de68602ce5f41595faf..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,34 +0,0 @@ -1727698634821 27.0 0 -1727698645156 16.0 1 -1727698655387 4.0 2 -1727698665700 4.0 3 -1727698675951 6.0 4 -1727698686202 32.0 5 -1727698696618 17.0 6 -1727698706853 11.0 7 -1727698717101 4.0 8 -1727698727484 10.0 9 -1727698737736 17.0 10 -1727698748138 23.0 11 -1727698758433 0.0 12 -1727698768884 8.0 13 -1727698779126 0.0 14 -1727698789394 14.0 15 -1727698799592 16.0 16 -1727698810631 3.0 17 -1727698820923 17.0 18 -1727698831262 11.0 19 -1727698841498 14.0 20 -1727698851866 21.0 21 -1727698862154 15.0 22 -1727698872429 15.0 23 -1727698882905 14.0 24 -1727698893468 24.0 25 -1727698903791 12.0 26 -1727698914119 13.0 27 -1727698924462 18.0 28 -1727698934840 8.0 29 -1727698945140 9.0 30 -1727698955366 16.0 31 -1727698965639 8.0 32 -1727698975910 12.0 33 diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/metrics/system/network_receive_megabytes b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/metrics/system/network_receive_megabytes deleted file mode 100644 index c2b5358e528091abaabdebbffb7ce5228aecd08d..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,34 +0,0 @@ -1727698634821 0.0 0 -1727698645156 0.04718399999990197 1 -1727698655387 0.05475099999989652 2 -1727698665700 0.05645599999991191 3 -1727698675951 0.0660809999999401 4 -1727698686202 0.33880599999997685 5 -1727698696618 0.9440039999999499 6 -1727698706853 1.5798619999999346 7 -1727698717101 1.9273399999999583 8 -1727698727484 1.9607709999999088 9 -1727698737736 2.034224999999992 10 -1727698748138 2.077199999999948 11 -1727698758433 2.084400999999957 12 -1727698768884 2.0969829999999092 13 -1727698779126 2.113271999999938 14 -1727698789394 2.113403999999946 15 -1727698799592 2.129793999999947 16 -1727698810631 2.2004029999999375 17 -1727698820923 2.7098669999999174 18 -1727698831262 2.847857999999974 19 -1727698841498 2.862276999999949 20 -1727698851866 2.9696859999999106 21 -1727698862154 5.497833999999898 22 -1727698872429 5.589041999999949 23 -1727698882905 5.643925999999965 24 -1727698893468 5.82818599999996 25 -1727698903791 5.990820999999983 26 -1727698914119 6.0107719999999745 27 -1727698924462 6.012145999999916 28 -1727698934840 6.144424999999956 29 -1727698945140 6.178694999999948 30 -1727698955366 6.339987999999948 31 -1727698965639 6.343868999999927 32 -1727698975910 6.392380000000003 33 diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/metrics/system/network_transmit_megabytes b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/metrics/system/network_transmit_megabytes deleted file mode 100644 index 5b3d6df10d231895bbbb8d8bee23dc07e63d9595..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,34 +0,0 @@ -1727698634821 0.0 0 -1727698645156 0.024710999999999927 1 -1727698655387 0.037718000000001695 2 -1727698665700 0.04242200000000196 3 -1727698675951 0.046690000000001675 4 -1727698686202 0.1354190000000024 5 -1727698696618 0.2099960000000003 6 -1727698706853 0.2617450000000012 7 -1727698717101 0.30183600000000155 8 -1727698727484 0.3108890000000031 9 -1727698737736 0.3349460000000022 10 -1727698748138 0.3596900000000005 11 -1727698758433 0.3632460000000002 12 -1727698768884 0.3681739999999998 13 -1727698779126 0.3832940000000029 14 -1727698789394 0.3834040000000023 15 -1727698799592 0.3906109999999998 16 -1727698810631 0.42362500000000125 17 -1727698820923 0.5010800000000017 18 -1727698831262 0.5291950000000014 19 -1727698841498 0.5438600000000022 20 -1727698851866 0.572332000000003 21 -1727698862154 0.660262000000003 22 -1727698872429 0.6861860000000028 23 -1727698882905 0.6991060000000004 24 -1727698893468 0.7432450000000017 25 -1727698903791 0.783334 26 -1727698914119 0.7927470000000021 27 -1727698924462 0.7958200000000026 28 -1727698934840 0.8437970000000021 29 -1727698945140 0.8561690000000013 30 -1727698955366 0.8932719999999996 31 -1727698965639 0.8990190000000027 32 -1727698975910 0.9276390000000028 33 diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/metrics/system/system_memory_usage_megabytes b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index 699300df6576849521dedd116b1e56faa926d850..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,34 +0,0 @@ -1727698634821 15731.5 0 -1727698645156 16129.2 1 -1727698655387 15927.0 2 -1727698665700 15885.1 3 -1727698675951 15900.1 4 -1727698686202 16038.5 5 -1727698696618 16241.0 6 -1727698706853 16301.7 7 -1727698717101 16390.5 8 -1727698727484 16296.7 9 -1727698737736 16338.8 10 -1727698748138 16564.0 11 -1727698758433 16311.5 12 -1727698768884 16399.3 13 -1727698779126 16200.3 14 -1727698789394 15963.4 15 -1727698799592 15944.1 16 -1727698810631 15984.8 17 -1727698820923 15992.5 18 -1727698831262 16142.2 19 -1727698841498 16078.4 20 -1727698851866 16114.5 21 -1727698862154 16012.1 22 -1727698872429 15832.7 23 -1727698882905 15847.9 24 -1727698893468 15929.0 25 -1727698903791 16102.2 26 -1727698914119 16289.0 27 -1727698924462 16239.0 28 -1727698934840 16240.4 29 -1727698945140 16278.3 30 -1727698955366 16301.0 31 -1727698965639 16125.3 32 -1727698975910 15939.0 33 diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/metrics/system/system_memory_usage_percentage b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/metrics/system/system_memory_usage_percentage deleted file mode 100644 index 8326de8d8b49352e0bbd65b67f3edf405c0a477e..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,34 +0,0 @@ -1727698634821 92.6 0 -1727698645156 95.0 1 -1727698655387 93.8 2 -1727698665700 93.5 3 -1727698675951 93.6 4 -1727698686202 94.4 5 -1727698696618 95.6 6 -1727698706853 96.0 7 -1727698717101 96.5 8 -1727698727484 95.9 9 -1727698737736 96.2 10 -1727698748138 97.5 11 -1727698758433 96.0 12 -1727698768884 96.6 13 -1727698779126 95.4 14 -1727698789394 94.0 15 -1727698799592 93.9 16 -1727698810631 94.1 17 -1727698820923 94.2 18 -1727698831262 95.0 19 -1727698841498 94.7 20 -1727698851866 94.9 21 -1727698862154 94.3 22 -1727698872429 93.2 23 -1727698882905 93.3 24 -1727698893468 93.8 25 -1727698903791 94.8 26 -1727698914119 95.9 27 -1727698924462 95.6 28 -1727698934840 95.6 29 -1727698945140 95.8 30 -1727698955366 96.0 31 -1727698965639 94.9 32 -1727698975910 93.8 33 diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/base_score b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/base_score deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/base_score +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/booster b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/booster deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/booster +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/colsample_bylevel b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/colsample_bylevel deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/colsample_bylevel +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/colsample_bynode b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/colsample_bynode deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/colsample_bynode +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/colsample_bytree b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/colsample_bytree deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/colsample_bytree +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/custom_metric b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/custom_metric deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/custom_metric +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/device b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/device deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/device +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/early_stopping_rounds b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/early_stopping_rounds deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/early_stopping_rounds +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/eval_metric b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/eval_metric deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/eval_metric +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/gamma b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/gamma deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/gamma +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/grow_policy b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/grow_policy deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/grow_policy +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/interaction_constraints b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/interaction_constraints deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/interaction_constraints +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/learning_rate b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/learning_rate deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/learning_rate +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/max_bin b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/max_bin deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/max_bin +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/max_cat_threshold b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/max_cat_threshold deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/max_cat_threshold +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/max_cat_to_onehot b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/max_cat_to_onehot deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/max_cat_to_onehot +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/max_delta_step b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/max_delta_step deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/max_delta_step +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/max_depth b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/max_leaves b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/max_leaves deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/max_leaves +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/maximize b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/maximize deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/maximize +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/min_child_weight b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/min_child_weight deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/min_child_weight +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/monotone_constraints b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/monotone_constraints deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/monotone_constraints +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/multi_strategy b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/multi_strategy deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/multi_strategy +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/n_jobs b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/n_jobs deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/n_jobs +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/num_boost_round b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/num_boost_round deleted file mode 100644 index 105d7d9ad3afc7bb78a0dec4d829880831605dfb..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/num_boost_round +++ /dev/null @@ -1 +0,0 @@ -100 \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/num_parallel_tree b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/num_parallel_tree deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/num_parallel_tree +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/objective b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/objective deleted file mode 100644 index 2f5dba794ce239746ae5a5a58dfb33aa48e7a050..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/objective +++ /dev/null @@ -1 +0,0 @@ -reg:squarederror \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/random_state b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/reg_alpha b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/reg_alpha deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/reg_alpha +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/reg_lambda b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/reg_lambda deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/reg_lambda +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/sampling_method b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/sampling_method deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/sampling_method +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/scale_pos_weight b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/scale_pos_weight deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/scale_pos_weight +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/subsample b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/subsample deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/subsample +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/tree_method b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/tree_method deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/tree_method +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/validate_parameters b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/validate_parameters deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/validate_parameters +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/verbose_eval b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/verbose_eval deleted file mode 100644 index 4791ed5559bd77f54e1520025768e2b368705876..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/verbose_eval +++ /dev/null @@ -1 +0,0 @@ -True \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/verbosity b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/verbosity deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/params/verbosity +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/tags/mlflow.autologging b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/tags/mlflow.autologging deleted file mode 100644 index adb4f9840874972f9c580b23aa343d7ca11b3289..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -xgboost \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/tags/mlflow.log-model.history b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/tags/mlflow.log-model.history deleted file mode 100644 index f357736710ea69e214adba47bdaeb15f3dfcc5c2..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "5da5a79d58cf46bb8d6496df6c8bc067", "artifact_path": "model", "utc_time_created": "2024-09-30 12:22:48.833671", "model_uuid": "ccfb5bbaecb042b38a2b828e2165d60f", "flavors": {"python_function": {"loader_module": "mlflow.xgboost", "python_version": "3.11.0", "data": "model.xgb", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "xgboost": {"xgb_version": "2.1.1", "data": "model.xgb", "model_class": "xgboost.sklearn.XGBRegressor", "model_format": "xgb", "code": null}}}] \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/tags/mlflow.runName b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/tags/mlflow.runName deleted file mode 100644 index 486a3686b7f85c701cdab24143a73cc0a7557649..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -brawny-grouse-593 \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/tags/mlflow.source.git.commit b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/tags/mlflow.source.git.commit deleted file mode 100644 index b9ea510318a74d958a9174bc540d8caf7ea139e5..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -2e3cee67a062d9b1790ae929ca7415c02604d303 \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/tags/mlflow.source.name b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/tags/mlflow.source.type b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/tags/mlflow.user b/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/5da5a79d58cf46bb8d6496df6c8bc067/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/inputs/9905b507d90af4116f7adeb8f77076e6/meta.yaml b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/inputs/9905b507d90af4116f7adeb8f77076e6/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/inputs/9905b507d90af4116f7adeb8f77076e6/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/inputs/cc625a74e8ad9c7d653b9129bd2c3e0f/meta.yaml b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/inputs/cc625a74e8ad9c7d653b9129bd2c3e0f/meta.yaml deleted file mode 100644 index 0723f98cc08a32c652ef5acce9e4e8384bb6d541..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/inputs/cc625a74e8ad9c7d653b9129bd2c3e0f/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 48179f7583d906f437293b4ed859818c -destination_type: RUN -source_id: 48179f7583d906f437293b4ed859818c -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/meta.yaml b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/meta.yaml deleted file mode 100644 index c792d9464647a8bdcf18dabd7dd642260d3d0e7a..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: mlflow-artifacts:/674375719018272828/613e592c317949abb0b86f18100a354c/artifacts -end_time: 1727642443930 -entry_point_name: '' -experiment_id: '674375719018272828' -lifecycle_stage: active -run_id: 613e592c317949abb0b86f18100a354c -run_name: stately-hound-180 -run_uuid: 613e592c317949abb0b86f18100a354c -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727642381677 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/metrics/system/cpu_utilization_percentage b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/metrics/system/cpu_utilization_percentage deleted file mode 100644 index 975a5824945dd5f8078cfab736be20d0212807c4..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,6 +0,0 @@ -1727642391868 90.7 0 -1727642402071 82.9 1 -1727642412263 99.9 2 -1727642422451 99.5 3 -1727642432610 99.9 4 -1727642442874 97.2 5 diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/metrics/system/disk_available_megabytes b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/metrics/system/disk_available_megabytes deleted file mode 100644 index 10ed598970aa8f5ed2731b2b21c49212bec09e69..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,6 +0,0 @@ -1727642391868 90945.7 0 -1727642402071 90945.6 1 -1727642412263 90944.6 2 -1727642422451 90945.7 3 -1727642432610 90945.7 4 -1727642442874 90945.7 5 diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/metrics/system/disk_usage_megabytes b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/metrics/system/disk_usage_megabytes deleted file mode 100644 index 1a5fff1ef29ab35b08e962ed23f17387dc52f52b..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,6 +0,0 @@ -1727642391868 420191.4 0 -1727642402071 420191.5 1 -1727642412263 420192.5 2 -1727642422451 420191.4 3 -1727642432610 420191.4 4 -1727642442874 420191.4 5 diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/metrics/system/disk_usage_percentage b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/metrics/system/disk_usage_percentage deleted file mode 100644 index dfbd0bd34a8a0c33c956aa78043f4172e99dda2b..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,6 +0,0 @@ -1727642391868 82.2 0 -1727642402071 82.2 1 -1727642412263 82.2 2 -1727642422451 82.2 3 -1727642432610 82.2 4 -1727642442874 82.2 5 diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index 64b2841473588b45a44d36cdc49318fa7155115f..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,6 +0,0 @@ -1727642391868 291.0 0 -1727642402071 296.2 1 -1727642412263 282.3 2 -1727642422451 290.4 3 -1727642432610 291.6 4 -1727642442874 288.3 5 diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/metrics/system/gpu_0_memory_usage_percentage b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index 1bd75480f50e041bdf2b7307c04a82e23a9bc72b..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,6 +0,0 @@ -1727642391868 13.6 0 -1727642402071 13.8 1 -1727642412263 13.1 2 -1727642422451 13.5 3 -1727642432610 13.6 4 -1727642442874 13.4 5 diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/metrics/system/gpu_0_utilization_percentage b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index a57d318717b284a9e169571b75d59b512d86e6cb..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,6 +0,0 @@ -1727642391868 4.0 0 -1727642402071 4.0 1 -1727642412263 20.0 2 -1727642422451 9.0 3 -1727642432610 4.0 4 -1727642442874 15.0 5 diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/metrics/system/network_receive_megabytes b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/metrics/system/network_receive_megabytes deleted file mode 100644 index 9531f2d7f017a82b8f4c5acc429bf6fe2797e421..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,6 +0,0 @@ -1727642391868 0.0 0 -1727642402071 0.08971199999999158 1 -1727642412263 0.2168969999999888 2 -1727642422451 0.25167600000000334 3 -1727642432610 0.29276400000000535 4 -1727642442874 0.43174700000000144 5 diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/metrics/system/network_transmit_megabytes b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/metrics/system/network_transmit_megabytes deleted file mode 100644 index 00b8cf7b5e87b914b9e69b0c4a16d0a1016a1d27..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,6 +0,0 @@ -1727642391868 0.0 0 -1727642402071 0.01751400000000558 1 -1727642412263 0.04149900000000173 2 -1727642422451 0.04655300000000295 3 -1727642432610 0.060159999999996217 4 -1727642442874 0.09777300000000366 5 diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/metrics/system/system_memory_usage_megabytes b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index 53d10f403ed39b694328ebc27e610780cc81cff2..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,6 +0,0 @@ -1727642391868 12010.2 0 -1727642402071 12174.4 1 -1727642412263 11973.6 2 -1727642422451 11959.9 3 -1727642432610 11854.7 4 -1727642442874 11725.1 5 diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/metrics/system/system_memory_usage_percentage b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/metrics/system/system_memory_usage_percentage deleted file mode 100644 index fe7920906b3323ad823823b3698666439b6a832b..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,6 +0,0 @@ -1727642391868 70.7 0 -1727642402071 71.7 1 -1727642412263 70.5 2 -1727642422451 70.4 3 -1727642432610 69.8 4 -1727642442874 69.0 5 diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/base_score b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/base_score deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/base_score +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/booster b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/booster deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/booster +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/colsample_bylevel b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/colsample_bylevel deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/colsample_bylevel +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/colsample_bynode b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/colsample_bynode deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/colsample_bynode +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/colsample_bytree b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/colsample_bytree deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/colsample_bytree +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/custom_metric b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/custom_metric deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/custom_metric +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/device b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/device deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/device +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/early_stopping_rounds b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/early_stopping_rounds deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/early_stopping_rounds +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/eval_metric b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/eval_metric deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/eval_metric +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/gamma b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/gamma deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/gamma +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/grow_policy b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/grow_policy deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/grow_policy +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/interaction_constraints b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/interaction_constraints deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/interaction_constraints +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/learning_rate b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/learning_rate deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/learning_rate +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/max_bin b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/max_bin deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/max_bin +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/max_cat_threshold b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/max_cat_threshold deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/max_cat_threshold +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/max_cat_to_onehot b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/max_cat_to_onehot deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/max_cat_to_onehot +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/max_delta_step b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/max_delta_step deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/max_delta_step +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/max_depth b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/max_leaves b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/max_leaves deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/max_leaves +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/maximize b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/maximize deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/maximize +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/min_child_weight b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/min_child_weight deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/min_child_weight +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/monotone_constraints b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/monotone_constraints deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/monotone_constraints +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/multi_strategy b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/multi_strategy deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/multi_strategy +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/n_jobs b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/n_jobs deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/n_jobs +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/num_boost_round b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/num_boost_round deleted file mode 100644 index 105d7d9ad3afc7bb78a0dec4d829880831605dfb..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/num_boost_round +++ /dev/null @@ -1 +0,0 @@ -100 \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/num_parallel_tree b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/num_parallel_tree deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/num_parallel_tree +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/objective b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/objective deleted file mode 100644 index 2f5dba794ce239746ae5a5a58dfb33aa48e7a050..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/objective +++ /dev/null @@ -1 +0,0 @@ -reg:squarederror \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/random_state b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/reg_alpha b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/reg_alpha deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/reg_alpha +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/reg_lambda b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/reg_lambda deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/reg_lambda +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/sampling_method b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/sampling_method deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/sampling_method +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/scale_pos_weight b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/scale_pos_weight deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/scale_pos_weight +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/subsample b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/subsample deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/subsample +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/tree_method b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/tree_method deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/tree_method +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/validate_parameters b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/validate_parameters deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/validate_parameters +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/verbose_eval b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/verbose_eval deleted file mode 100644 index 4791ed5559bd77f54e1520025768e2b368705876..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/verbose_eval +++ /dev/null @@ -1 +0,0 @@ -True \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/verbosity b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/verbosity deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/params/verbosity +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/tags/mlflow.autologging b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/tags/mlflow.autologging deleted file mode 100644 index adb4f9840874972f9c580b23aa343d7ca11b3289..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -xgboost \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/tags/mlflow.log-model.history b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/tags/mlflow.log-model.history deleted file mode 100644 index e30b9a653c24b9c8de4b0d34504ded455906bdba..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "613e592c317949abb0b86f18100a354c", "artifact_path": "model", "utc_time_created": "2024-09-29 20:40:34.164593", "model_uuid": "fa950ae2169a47128401ab637dab6f5c", "flavors": {"python_function": {"loader_module": "mlflow.xgboost", "python_version": "3.11.0", "data": "model.xgb", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "xgboost": {"xgb_version": "2.1.1", "data": "model.xgb", "model_class": "xgboost.sklearn.XGBRegressor", "model_format": "xgb", "code": null}}}] \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/tags/mlflow.runName b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/tags/mlflow.runName deleted file mode 100644 index c3afaedfc643a4d819fc26342bcc0009991d774e..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -stately-hound-180 \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/tags/mlflow.source.git.commit b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/tags/mlflow.source.git.commit deleted file mode 100644 index 38bea58d3eed4194d95922f337daa60cbc044a21..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -da08d56ac3b3131519322c57e8db01547d638865 \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/tags/mlflow.source.name b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/tags/mlflow.source.type b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/tags/mlflow.user b/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/613e592c317949abb0b86f18100a354c/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/674375719018272828/663dc55fee8a4646a5279d1517d3abf6/meta.yaml b/mlruns/674375719018272828/663dc55fee8a4646a5279d1517d3abf6/meta.yaml deleted file mode 100644 index 7fe21293f49b23852a7c04359faf98a506e049ca..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/663dc55fee8a4646a5279d1517d3abf6/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: mlflow-artifacts:/674375719018272828/663dc55fee8a4646a5279d1517d3abf6/artifacts -end_time: 1727702561633 -entry_point_name: '' -experiment_id: '674375719018272828' -lifecycle_stage: active -run_id: 663dc55fee8a4646a5279d1517d3abf6 -run_name: bouncy-kite-386 -run_uuid: 663dc55fee8a4646a5279d1517d3abf6 -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727702560014 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/674375719018272828/663dc55fee8a4646a5279d1517d3abf6/metrics/test_mse b/mlruns/674375719018272828/663dc55fee8a4646a5279d1517d3abf6/metrics/test_mse deleted file mode 100644 index 8d6f41c95b0aa6e757393705c82321733edaad4e..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/663dc55fee8a4646a5279d1517d3abf6/metrics/test_mse +++ /dev/null @@ -1 +0,0 @@ -1727702561492 41.83263932572466 0 diff --git a/mlruns/674375719018272828/663dc55fee8a4646a5279d1517d3abf6/metrics/test_rmse b/mlruns/674375719018272828/663dc55fee8a4646a5279d1517d3abf6/metrics/test_rmse deleted file mode 100644 index 56d952fb2c982ee2bd54ca51dcbfe4fcb4324ae1..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/663dc55fee8a4646a5279d1517d3abf6/metrics/test_rmse +++ /dev/null @@ -1 +0,0 @@ -1727702561593 6.096594279484485 0 diff --git a/mlruns/674375719018272828/663dc55fee8a4646a5279d1517d3abf6/tags/mlflow.runName b/mlruns/674375719018272828/663dc55fee8a4646a5279d1517d3abf6/tags/mlflow.runName deleted file mode 100644 index 5110df999a1293a9df1cba755fd8b53446659bf8..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/663dc55fee8a4646a5279d1517d3abf6/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -bouncy-kite-386 \ No newline at end of file diff --git a/mlruns/674375719018272828/663dc55fee8a4646a5279d1517d3abf6/tags/mlflow.source.git.commit b/mlruns/674375719018272828/663dc55fee8a4646a5279d1517d3abf6/tags/mlflow.source.git.commit deleted file mode 100644 index b9ea510318a74d958a9174bc540d8caf7ea139e5..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/663dc55fee8a4646a5279d1517d3abf6/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -2e3cee67a062d9b1790ae929ca7415c02604d303 \ No newline at end of file diff --git a/mlruns/674375719018272828/663dc55fee8a4646a5279d1517d3abf6/tags/mlflow.source.name b/mlruns/674375719018272828/663dc55fee8a4646a5279d1517d3abf6/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/663dc55fee8a4646a5279d1517d3abf6/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/674375719018272828/663dc55fee8a4646a5279d1517d3abf6/tags/mlflow.source.type b/mlruns/674375719018272828/663dc55fee8a4646a5279d1517d3abf6/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/663dc55fee8a4646a5279d1517d3abf6/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/674375719018272828/663dc55fee8a4646a5279d1517d3abf6/tags/mlflow.user b/mlruns/674375719018272828/663dc55fee8a4646a5279d1517d3abf6/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/663dc55fee8a4646a5279d1517d3abf6/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/meta.yaml b/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/meta.yaml deleted file mode 100644 index d59145a6ca3a6f55c4f0b0883c6935ca4043b77d..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: mlflow-artifacts:/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/artifacts -end_time: null -entry_point_name: '' -experiment_id: '674375719018272828' -lifecycle_stage: active -run_id: 76dbfe027b2f4eb8837a0d1ab60ded47 -run_name: Bayesian_Optimization_and_Eval -run_uuid: 76dbfe027b2f4eb8837a0d1ab60ded47 -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727712447416 -status: 1 -tags: [] -user_id: User diff --git a/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/metrics/system/cpu_utilization_percentage b/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/metrics/system/cpu_utilization_percentage deleted file mode 100644 index cf48379f3b61ba45bb38aad3aee10d7c3ae40b4a..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,5 +0,0 @@ -1727712458184 99.3 0 -1727712468447 99.9 1 -1727712479442 100.0 2 -1727712491487 100.0 3 -1727712502332 100.0 4 diff --git a/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/metrics/system/disk_available_megabytes b/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/metrics/system/disk_available_megabytes deleted file mode 100644 index f6b0d84279a907d0d676d253d5d468f92bc3c684..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,5 +0,0 @@ -1727712458184 83107.1 0 -1727712468447 83100.4 1 -1727712479442 83095.9 2 -1727712491487 83024.2 3 -1727712502332 83041.7 4 diff --git a/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/metrics/system/disk_usage_megabytes b/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/metrics/system/disk_usage_megabytes deleted file mode 100644 index 08d1a680279bd50d57b0f4280940b0e86aeb112b..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,5 +0,0 @@ -1727712458184 428030.0 0 -1727712468447 428036.7 1 -1727712479442 428041.2 2 -1727712491487 428112.9 3 -1727712502332 428095.3 4 diff --git a/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/metrics/system/disk_usage_percentage b/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/metrics/system/disk_usage_percentage deleted file mode 100644 index 06a8c4b3d2bc765c334dc0a4654318c8ce04c4ad..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,5 +0,0 @@ -1727712458184 83.7 0 -1727712468447 83.7 1 -1727712479442 83.7 2 -1727712491487 83.8 3 -1727712502332 83.8 4 diff --git a/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index 86bf6d97f2eb2e220fdd79d8bc08ca2d2df76381..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,5 +0,0 @@ -1727712458184 222.3 0 -1727712468447 241.4 1 -1727712479442 241.7 2 -1727712491487 243.2 3 -1727712502332 256.0 4 diff --git a/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/metrics/system/gpu_0_memory_usage_percentage b/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index 73094bb810d3885bb56f9cfc20f51feb6a9612d1..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,5 +0,0 @@ -1727712458184 10.4 0 -1727712468447 11.2 1 -1727712479442 11.3 2 -1727712491487 11.3 3 -1727712502332 11.9 4 diff --git a/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/metrics/system/gpu_0_utilization_percentage b/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index 3a29ce4f9c272d80720454785d30a82b56fbbaa0..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,5 +0,0 @@ -1727712458184 8.0 0 -1727712468447 22.0 1 -1727712479442 4.0 2 -1727712491487 1.0 3 -1727712502332 17.0 4 diff --git a/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/metrics/system/network_receive_megabytes b/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/metrics/system/network_receive_megabytes deleted file mode 100644 index a6aee8eb71c097e447f05f4757fba930d22fc9cb..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,5 +0,0 @@ -1727712458184 0.0 0 -1727712468447 0.009197000000000344 1 -1727712479442 0.25323099999999954 2 -1727712491487 0.280187999999999 3 -1727712502332 0.3627330000000004 4 diff --git a/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/metrics/system/network_transmit_megabytes b/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/metrics/system/network_transmit_megabytes deleted file mode 100644 index 2dcd23bf0b08f8092a6dec8d7b3f11b6f9091fbb..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,5 +0,0 @@ -1727712458184 0.0 0 -1727712468447 0.00029800000000035354 1 -1727712479442 0.05999500000000024 2 -1727712491487 0.06228900000000026 3 -1727712502332 0.07611400000000001 4 diff --git a/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/metrics/system/system_memory_usage_megabytes b/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index aaddae60db9d9c0d24cd409e2997a8c276902e88..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,5 +0,0 @@ -1727712458184 16537.5 0 -1727712468447 16642.0 1 -1727712479442 16650.7 2 -1727712491487 16705.0 3 -1727712502332 16741.0 4 diff --git a/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/metrics/system/system_memory_usage_percentage b/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/metrics/system/system_memory_usage_percentage deleted file mode 100644 index 9e9e7f2f2644b0baf8bb2da422412802c3033439..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,5 +0,0 @@ -1727712458184 97.4 0 -1727712468447 98.0 1 -1727712479442 98.0 2 -1727712491487 98.4 3 -1727712502332 98.6 4 diff --git a/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/tags/mlflow.runName b/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/tags/mlflow.runName deleted file mode 100644 index 0a543536bfdc22059fc5afc9c8848751ac9721ff..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -Bayesian_Optimization_and_Eval \ No newline at end of file diff --git a/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/tags/mlflow.source.git.commit b/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/tags/mlflow.source.git.commit deleted file mode 100644 index b9ea510318a74d958a9174bc540d8caf7ea139e5..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -2e3cee67a062d9b1790ae929ca7415c02604d303 \ No newline at end of file diff --git a/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/tags/mlflow.source.name b/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/tags/mlflow.source.type b/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/tags/mlflow.user b/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/76dbfe027b2f4eb8837a0d1ab60ded47/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/inputs/41919d199a5fd4ff1fae79f360c114d2/meta.yaml b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/inputs/41919d199a5fd4ff1fae79f360c114d2/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/inputs/41919d199a5fd4ff1fae79f360c114d2/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/inputs/8ce1a1763be842ad9f5307814ee49423/meta.yaml b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/inputs/8ce1a1763be842ad9f5307814ee49423/meta.yaml deleted file mode 100644 index 0723f98cc08a32c652ef5acce9e4e8384bb6d541..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/inputs/8ce1a1763be842ad9f5307814ee49423/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 48179f7583d906f437293b4ed859818c -destination_type: RUN -source_id: 48179f7583d906f437293b4ed859818c -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/meta.yaml b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/meta.yaml deleted file mode 100644 index 1c5ab2d04cd4bf2b9efbb876e16e219e27e2b8ba..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: mlflow-artifacts:/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/artifacts -end_time: 1727713518745 -entry_point_name: '' -experiment_id: '674375719018272828' -lifecycle_stage: active -run_id: 976bcbfebc774af6b12bc6785df91a9c -run_name: Bayesian_Optimization_Training_and_Eval -run_uuid: 976bcbfebc774af6b12bc6785df91a9c -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727713131233 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/Correct Test MSE b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/Correct Test MSE deleted file mode 100644 index 98e8ef059eaff7d7c8c2406ee948cdb2afdf7f1c..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/Correct Test MSE +++ /dev/null @@ -1 +0,0 @@ -1727713518689 41.83263932572466 0 diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/Correct Test RMSE b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/Correct Test RMSE deleted file mode 100644 index 153fffd3a885382d339d660783aa173294611f8b..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/Correct Test RMSE +++ /dev/null @@ -1 +0,0 @@ -1727713518722 6.096594279484485 0 diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/Correct Train MSE b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/Correct Train MSE deleted file mode 100644 index 04296b5733e04f6e4f9b8b6bc7a9949440b925fd..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/Correct Train MSE +++ /dev/null @@ -1 +0,0 @@ -1727713518438 44.85552771963209 0 diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/system/cpu_utilization_percentage b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/system/cpu_utilization_percentage deleted file mode 100644 index 7a92914f4097c0792a717d4d339f4bd9a7263adc..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,36 +0,0 @@ -1727713141625 91.8 0 -1727713152031 100.0 1 -1727713162308 100.0 2 -1727713172980 100.0 3 -1727713183550 100.0 4 -1727713193816 100.0 5 -1727713203987 100.0 6 -1727713214314 100.0 7 -1727713224682 100.0 8 -1727713235107 100.0 9 -1727713245289 100.0 10 -1727713255512 100.0 11 -1727713265761 100.0 12 -1727713276077 100.0 13 -1727713286323 99.7 14 -1727713296594 99.7 15 -1727713306815 100.0 16 -1727713317091 100.0 17 -1727713327385 100.0 18 -1727713337646 100.0 19 -1727713347880 100.0 20 -1727713358131 100.0 21 -1727713368674 100.0 22 -1727713378991 100.0 23 -1727713389316 100.0 24 -1727713399707 100.0 25 -1727713410063 100.0 26 -1727713420517 100.0 27 -1727713430748 100.0 28 -1727713441116 100.0 29 -1727713456271 100.0 30 -1727713466573 100.0 31 -1727713476822 100.0 32 -1727713487460 100.0 33 -1727713497692 100.0 34 -1727713507918 100.0 35 diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/system/disk_available_megabytes b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/system/disk_available_megabytes deleted file mode 100644 index 946bcbcb41a3c68bdc4c66b3dc1387f136052597..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,36 +0,0 @@ -1727713141625 83041.7 0 -1727713152031 83041.7 1 -1727713162308 83041.5 2 -1727713172980 83041.5 3 -1727713183550 83036.7 4 -1727713193816 83032.3 5 -1727713203987 83032.3 6 -1727713214314 83032.1 7 -1727713224682 83028.7 8 -1727713235107 83031.5 9 -1727713245289 83031.3 10 -1727713255512 83028.0 11 -1727713265761 83035.9 12 -1727713276077 83012.4 13 -1727713286323 83030.1 14 -1727713296594 83033.8 15 -1727713306815 83020.8 16 -1727713317091 83033.8 17 -1727713327385 83031.6 18 -1727713337646 83017.9 19 -1727713347880 83016.2 20 -1727713358131 82995.9 21 -1727713368674 83011.8 22 -1727713378991 83001.4 23 -1727713389316 83012.3 24 -1727713399707 82972.1 25 -1727713410063 82994.1 26 -1727713420517 82976.8 27 -1727713430748 82975.8 28 -1727713441116 83025.8 29 -1727713456271 83014.9 30 -1727713466573 83028.3 31 -1727713476822 83028.4 32 -1727713487460 83027.9 33 -1727713497692 83027.6 34 -1727713507918 83027.7 35 diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/system/disk_usage_megabytes b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/system/disk_usage_megabytes deleted file mode 100644 index 07fde9452313fb13c09d516234f269a344109111..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,36 +0,0 @@ -1727713141625 428095.4 0 -1727713152031 428095.4 1 -1727713162308 428095.6 2 -1727713172980 428095.6 3 -1727713183550 428100.4 4 -1727713193816 428104.8 5 -1727713203987 428104.8 6 -1727713214314 428105.0 7 -1727713224682 428108.4 8 -1727713235107 428105.6 9 -1727713245289 428105.8 10 -1727713255512 428109.1 11 -1727713265761 428101.2 12 -1727713276077 428124.7 13 -1727713286323 428107.0 14 -1727713296594 428103.3 15 -1727713306815 428116.3 16 -1727713317091 428103.3 17 -1727713327385 428105.5 18 -1727713337646 428119.2 19 -1727713347880 428120.9 20 -1727713358131 428141.2 21 -1727713368674 428125.3 22 -1727713378991 428135.6 23 -1727713389316 428124.8 24 -1727713399707 428165.0 25 -1727713410063 428142.9 26 -1727713420517 428160.3 27 -1727713430748 428161.3 28 -1727713441116 428111.3 29 -1727713456271 428122.2 30 -1727713466573 428108.7 31 -1727713476822 428108.7 32 -1727713487460 428109.1 33 -1727713497692 428109.5 34 -1727713507918 428109.4 35 diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/system/disk_usage_percentage b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/system/disk_usage_percentage deleted file mode 100644 index 540bb90416e1e4f6edc0ec12f6b07e64d0598993..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,36 +0,0 @@ -1727713141625 83.8 0 -1727713152031 83.8 1 -1727713162308 83.8 2 -1727713172980 83.8 3 -1727713183550 83.8 4 -1727713193816 83.8 5 -1727713203987 83.8 6 -1727713214314 83.8 7 -1727713224682 83.8 8 -1727713235107 83.8 9 -1727713245289 83.8 10 -1727713255512 83.8 11 -1727713265761 83.8 12 -1727713276077 83.8 13 -1727713286323 83.8 14 -1727713296594 83.8 15 -1727713306815 83.8 16 -1727713317091 83.8 17 -1727713327385 83.8 18 -1727713337646 83.8 19 -1727713347880 83.8 20 -1727713358131 83.8 21 -1727713368674 83.8 22 -1727713378991 83.8 23 -1727713389316 83.8 24 -1727713399707 83.8 25 -1727713410063 83.8 26 -1727713420517 83.8 27 -1727713430748 83.8 28 -1727713441116 83.8 29 -1727713456271 83.8 30 -1727713466573 83.8 31 -1727713476822 83.8 32 -1727713487460 83.8 33 -1727713497692 83.8 34 -1727713507918 83.8 35 diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index 4dd3b1bb6102a3659737470050f6a58fb1b35756..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,36 +0,0 @@ -1727713141625 256.6 0 -1727713152031 247.4 1 -1727713162308 259.7 2 -1727713172980 246.6 3 -1727713183550 258.8 4 -1727713193816 235.1 5 -1727713203987 260.1 6 -1727713214314 284.1 7 -1727713224682 254.2 8 -1727713235107 275.6 9 -1727713245289 310.3 10 -1727713255512 295.9 11 -1727713265761 309.7 12 -1727713276077 289.0 13 -1727713286323 296.9 14 -1727713296594 305.2 15 -1727713306815 292.0 16 -1727713317091 309.9 17 -1727713327385 303.6 18 -1727713337646 272.1 19 -1727713347880 252.7 20 -1727713358131 251.4 21 -1727713368674 236.6 22 -1727713378991 245.9 23 -1727713389316 244.0 24 -1727713399707 246.4 25 -1727713410063 231.6 26 -1727713420517 259.1 27 -1727713430748 229.5 28 -1727713441116 259.7 29 -1727713456271 256.3 30 -1727713466573 274.2 31 -1727713476822 229.7 32 -1727713487460 300.5 33 -1727713497692 284.4 34 -1727713507918 316.7 35 diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/system/gpu_0_memory_usage_percentage b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index bce9ec006a5b8b06a1ec6f0ed50470d4f966450a..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,36 +0,0 @@ -1727713141625 11.9 0 -1727713152031 11.5 1 -1727713162308 12.1 2 -1727713172980 11.5 3 -1727713183550 12.0 4 -1727713193816 10.9 5 -1727713203987 12.1 6 -1727713214314 13.2 7 -1727713224682 11.8 8 -1727713235107 12.8 9 -1727713245289 14.5 10 -1727713255512 13.8 11 -1727713265761 14.4 12 -1727713276077 13.5 13 -1727713286323 13.8 14 -1727713296594 14.2 15 -1727713306815 13.6 16 -1727713317091 14.4 17 -1727713327385 14.1 18 -1727713337646 12.7 19 -1727713347880 11.8 20 -1727713358131 11.7 21 -1727713368674 11.0 22 -1727713378991 11.5 23 -1727713389316 11.4 24 -1727713399707 11.5 25 -1727713410063 10.8 26 -1727713420517 12.1 27 -1727713430748 10.7 28 -1727713441116 12.1 29 -1727713456271 11.9 30 -1727713466573 12.8 31 -1727713476822 10.7 32 -1727713487460 14.0 33 -1727713497692 13.2 34 -1727713507918 14.7 35 diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/system/gpu_0_utilization_percentage b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index 4184f926a5d1c254c19be70f008159f1c702bd53..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,36 +0,0 @@ -1727713141625 15.0 0 -1727713152031 14.0 1 -1727713162308 0.0 2 -1727713172980 15.0 3 -1727713183550 6.0 4 -1727713193816 15.0 5 -1727713203987 8.0 6 -1727713214314 6.0 7 -1727713224682 29.0 8 -1727713235107 11.0 9 -1727713245289 16.0 10 -1727713255512 5.0 11 -1727713265761 15.0 12 -1727713276077 4.0 13 -1727713286323 8.0 14 -1727713296594 15.0 15 -1727713306815 9.0 16 -1727713317091 15.0 17 -1727713327385 7.0 18 -1727713337646 12.0 19 -1727713347880 7.0 20 -1727713358131 6.0 21 -1727713368674 5.0 22 -1727713378991 16.0 23 -1727713389316 5.0 24 -1727713399707 16.0 25 -1727713410063 0.0 26 -1727713420517 14.0 27 -1727713430748 15.0 28 -1727713441116 4.0 29 -1727713456271 4.0 30 -1727713466573 4.0 31 -1727713476822 11.0 32 -1727713487460 6.0 33 -1727713497692 6.0 34 -1727713507918 6.0 35 diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/system/network_receive_megabytes b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/system/network_receive_megabytes deleted file mode 100644 index eab7561991f11871e3f027e6d0bb6bdd10d2c7d5..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,36 +0,0 @@ -1727713141625 9.199999999864872e-05 0 -1727713152031 0.040155999999999636 1 -1727713162308 0.04536600000000135 2 -1727713172980 0.05363700000000193 3 -1727713183550 0.08303100000000185 4 -1727713193816 0.08492400000000089 5 -1727713203987 0.10096100000000163 6 -1727713214314 0.20697799999999944 7 -1727713224682 0.6586719999999993 8 -1727713235107 0.7859809999999996 9 -1727713245289 0.9597660000000019 10 -1727713255512 1.1182949999999998 11 -1727713265761 1.2437369999999994 12 -1727713276077 1.4620740000000012 13 -1727713286323 1.4832870000000007 14 -1727713296594 1.5246940000000002 15 -1727713306815 1.8297109999999996 16 -1727713317091 1.8825380000000003 17 -1727713327385 2.2793789999999987 18 -1727713337646 2.4758999999999993 19 -1727713347880 2.8906080000000003 20 -1727713358131 3.1162729999999996 21 -1727713368674 3.2057350000000007 22 -1727713378991 3.542822000000001 23 -1727713389316 3.931163999999999 24 -1727713399707 3.9948760000000014 25 -1727713410063 4.373615000000001 26 -1727713420517 4.5041769999999985 27 -1727713430748 4.639441999999999 28 -1727713441116 4.729248999999999 29 -1727713456271 4.924671 30 -1727713466573 4.929103999999999 31 -1727713476822 4.944053 32 -1727713487460 4.961328000000002 33 -1727713497692 4.974117 34 -1727713507918 4.9892129999999995 35 diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/system/network_transmit_megabytes b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/system/network_transmit_megabytes deleted file mode 100644 index a69bb61365fa39bef04b2c8a3880e26f518df524..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,36 +0,0 @@ -1727713141625 0.0 0 -1727713152031 0.002437999999999718 1 -1727713162308 0.002602999999999689 2 -1727713172980 0.002823000000000242 3 -1727713183550 0.011172000000000182 4 -1727713193816 0.011715999999999838 5 -1727713203987 0.020208999999999477 6 -1727713214314 0.05038199999999993 7 -1727713224682 0.11215900000000012 8 -1727713235107 0.1535169999999999 9 -1727713245289 0.20365300000000008 10 -1727713255512 0.28028799999999965 11 -1727713265761 0.3511730000000002 12 -1727713276077 0.4128400000000001 13 -1727713286323 0.4241140000000003 14 -1727713296594 0.43697499999999945 15 -1727713306815 0.5131639999999997 16 -1727713317091 0.5600529999999999 17 -1727713327385 0.6603630000000003 18 -1727713337646 0.6967369999999997 19 -1727713347880 0.8156470000000002 20 -1727713358131 0.8769270000000002 21 -1727713368674 0.9165450000000002 22 -1727713378991 1.0230059999999996 23 -1727713389316 1.1241219999999998 24 -1727713399707 1.1414270000000002 25 -1727713410063 1.247376 26 -1727713420517 1.2772300000000003 27 -1727713430748 1.317952 28 -1727713441116 1.346737 29 -1727713456271 1.3909570000000002 30 -1727713466573 1.3916339999999998 31 -1727713476822 1.3917989999999998 32 -1727713487460 1.3957689999999996 33 -1727713497692 1.4060160000000002 34 -1727713507918 1.4063879999999997 35 diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/system/system_memory_usage_megabytes b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index 42131064d91631a8345fdb47f9440b5c41618dc9..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,36 +0,0 @@ -1727713141625 15714.1 0 -1727713152031 16010.4 1 -1727713162308 16345.3 2 -1727713172980 16301.0 3 -1727713183550 16143.4 4 -1727713193816 16139.6 5 -1727713203987 16069.3 6 -1727713214314 16143.5 7 -1727713224682 16158.1 8 -1727713235107 16270.2 9 -1727713245289 15909.2 10 -1727713255512 15698.6 11 -1727713265761 15595.9 12 -1727713276077 15590.1 13 -1727713286323 15674.9 14 -1727713296594 15526.8 15 -1727713306815 15801.5 16 -1727713317091 15906.8 17 -1727713327385 15925.7 18 -1727713337646 15925.9 19 -1727713347880 15953.6 20 -1727713358131 16161.0 21 -1727713368674 16408.7 22 -1727713378991 16431.9 23 -1727713389316 16442.9 24 -1727713399707 16554.0 25 -1727713410063 16724.2 26 -1727713420517 16606.1 27 -1727713430748 16458.5 28 -1727713441116 16495.2 29 -1727713456271 16701.7 30 -1727713466573 16624.5 31 -1727713476822 16527.3 32 -1727713487460 16459.2 33 -1727713497692 16336.6 34 -1727713507918 16167.3 35 diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/system/system_memory_usage_percentage b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/system/system_memory_usage_percentage deleted file mode 100644 index fa0d9f9c35e45f913d7775ec6cde99c2b224b665..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,36 +0,0 @@ -1727713141625 92.5 0 -1727713152031 94.3 1 -1727713162308 96.2 2 -1727713172980 96.0 3 -1727713183550 95.0 4 -1727713193816 95.0 5 -1727713203987 94.6 6 -1727713214314 95.0 7 -1727713224682 95.1 8 -1727713235107 95.8 9 -1727713245289 93.7 10 -1727713255512 92.4 11 -1727713265761 91.8 12 -1727713276077 91.8 13 -1727713286323 92.3 14 -1727713296594 91.4 15 -1727713306815 93.0 16 -1727713317091 93.7 17 -1727713327385 93.8 18 -1727713337646 93.8 19 -1727713347880 93.9 20 -1727713358131 95.1 21 -1727713368674 96.6 22 -1727713378991 96.7 23 -1727713389316 96.8 24 -1727713399707 97.5 25 -1727713410063 98.5 26 -1727713420517 97.8 27 -1727713430748 96.9 28 -1727713441116 97.1 29 -1727713456271 98.3 30 -1727713466573 97.9 31 -1727713476822 97.3 32 -1727713487460 96.9 33 -1727713497692 96.2 34 -1727713507918 95.2 35 diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/base_score b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/base_score deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/base_score +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/booster b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/booster deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/booster +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/colsample_bylevel b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/colsample_bylevel deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/colsample_bylevel +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/colsample_bynode b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/colsample_bynode deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/colsample_bynode +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/colsample_bytree b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/colsample_bytree deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/colsample_bytree +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/custom_metric b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/custom_metric deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/custom_metric +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/device b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/device deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/device +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/early_stopping_rounds b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/early_stopping_rounds deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/early_stopping_rounds +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/eval_metric b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/eval_metric deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/eval_metric +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/gamma b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/gamma deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/gamma +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/grow_policy b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/grow_policy deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/grow_policy +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/interaction_constraints b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/interaction_constraints deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/interaction_constraints +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/learning_rate b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/learning_rate deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/learning_rate +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/max_bin b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/max_bin deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/max_bin +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/max_cat_threshold b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/max_cat_threshold deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/max_cat_threshold +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/max_cat_to_onehot b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/max_cat_to_onehot deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/max_cat_to_onehot +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/max_delta_step b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/max_delta_step deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/max_delta_step +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/max_depth b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/max_leaves b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/max_leaves deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/max_leaves +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/maximize b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/maximize deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/maximize +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/min_child_weight b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/min_child_weight deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/min_child_weight +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/monotone_constraints b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/monotone_constraints deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/monotone_constraints +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/multi_strategy b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/multi_strategy deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/multi_strategy +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/n_jobs b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/n_jobs deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/n_jobs +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/num_boost_round b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/num_boost_round deleted file mode 100644 index 105d7d9ad3afc7bb78a0dec4d829880831605dfb..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/num_boost_round +++ /dev/null @@ -1 +0,0 @@ -100 \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/num_parallel_tree b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/num_parallel_tree deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/num_parallel_tree +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/objective b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/objective deleted file mode 100644 index 2f5dba794ce239746ae5a5a58dfb33aa48e7a050..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/objective +++ /dev/null @@ -1 +0,0 @@ -reg:squarederror \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/random_state b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/reg_alpha b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/reg_alpha deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/reg_alpha +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/reg_lambda b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/reg_lambda deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/reg_lambda +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/sampling_method b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/sampling_method deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/sampling_method +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/scale_pos_weight b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/scale_pos_weight deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/scale_pos_weight +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/subsample b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/subsample deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/subsample +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/tree_method b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/tree_method deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/tree_method +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/validate_parameters b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/validate_parameters deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/validate_parameters +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/verbose_eval b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/verbose_eval deleted file mode 100644 index 4791ed5559bd77f54e1520025768e2b368705876..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/verbose_eval +++ /dev/null @@ -1 +0,0 @@ -True \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/verbosity b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/verbosity deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/params/verbosity +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/tags/mlflow.log-model.history b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/tags/mlflow.log-model.history deleted file mode 100644 index 9e80234739bd46083d3244678ba7f1de5d527d4b..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "976bcbfebc774af6b12bc6785df91a9c", "artifact_path": "model", "utc_time_created": "2024-09-30 16:25:07.964079", "model_uuid": "95d8f73e972b41e49e2291370f132bd9", "flavors": {"python_function": {"loader_module": "mlflow.xgboost", "python_version": "3.11.0", "data": "model.xgb", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "xgboost": {"xgb_version": "2.1.1", "data": "model.xgb", "model_class": "xgboost.sklearn.XGBRegressor", "model_format": "xgb", "code": null}}}] \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/tags/mlflow.runName b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/tags/mlflow.runName deleted file mode 100644 index 39c57e5e2445a0b5c78f476020799ebb5c99fb29..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -Bayesian_Optimization_Training_and_Eval \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/tags/mlflow.source.git.commit b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/tags/mlflow.source.git.commit deleted file mode 100644 index b9ea510318a74d958a9174bc540d8caf7ea139e5..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -2e3cee67a062d9b1790ae929ca7415c02604d303 \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/tags/mlflow.source.name b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/tags/mlflow.source.type b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/tags/mlflow.user b/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/976bcbfebc774af6b12bc6785df91a9c/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/inputs/0b2ca19f1cedc61dc81edd9f4d87aac1/meta.yaml b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/inputs/0b2ca19f1cedc61dc81edd9f4d87aac1/meta.yaml deleted file mode 100644 index 0723f98cc08a32c652ef5acce9e4e8384bb6d541..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/inputs/0b2ca19f1cedc61dc81edd9f4d87aac1/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 48179f7583d906f437293b4ed859818c -destination_type: RUN -source_id: 48179f7583d906f437293b4ed859818c -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/meta.yaml b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/meta.yaml deleted file mode 100644 index 73a3f0195cee764ca65459a58e8f885be5f033f8..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: mlflow-artifacts:/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/artifacts -end_time: null -entry_point_name: '' -experiment_id: '674375719018272828' -lifecycle_stage: active -run_id: 977a23aa01d64c1fba0855b2de9d3283 -run_name: dapper-dolphin-704 -run_uuid: 977a23aa01d64c1fba0855b2de9d3283 -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727641903876 -status: 1 -tags: [] -user_id: User diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/metrics/system/cpu_utilization_percentage b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/metrics/system/cpu_utilization_percentage deleted file mode 100644 index 3e8c3893f6d8338e31b1eb9d3ed4302158c99ee4..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,4 +0,0 @@ -1727641914029 75.3 0 -1727641924184 85.6 1 -1727641934351 99.8 2 -1727641944520 99.5 3 diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/metrics/system/disk_available_megabytes b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/metrics/system/disk_available_megabytes deleted file mode 100644 index 9d35ab771a7857d877f8cbda686e6950c09610a5..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,4 +0,0 @@ -1727641914029 91040.8 0 -1727641924184 91040.8 1 -1727641934351 91040.7 2 -1727641944520 91038.7 3 diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/metrics/system/disk_usage_megabytes b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/metrics/system/disk_usage_megabytes deleted file mode 100644 index 59b7e19e2a03e7605ed0c5d6537ece7acc4a5f75..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,4 +0,0 @@ -1727641914029 420096.3 0 -1727641924184 420096.3 1 -1727641934351 420096.3 2 -1727641944520 420098.4 3 diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/metrics/system/disk_usage_percentage b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/metrics/system/disk_usage_percentage deleted file mode 100644 index d1d2862fe037d12cc8c248a6e71f3ecece43c8d4..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,4 +0,0 @@ -1727641914029 82.2 0 -1727641924184 82.2 1 -1727641934351 82.2 2 -1727641944520 82.2 3 diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index fc9bdb8b524218799d8d1035774424f11e0cc70e..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,4 +0,0 @@ -1727641914029 224.8 0 -1727641924184 231.9 1 -1727641934351 235.4 2 -1727641944520 256.6 3 diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/metrics/system/gpu_0_memory_usage_percentage b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index 26d354de438202d52e63d11b8b89474482d9e560..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,4 +0,0 @@ -1727641914029 10.5 0 -1727641924184 10.8 1 -1727641934351 11.0 2 -1727641944520 11.9 3 diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/metrics/system/gpu_0_utilization_percentage b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index 84838aad5f6fe8ef7181895337d20d2b03d404a0..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,4 +0,0 @@ -1727641914029 17.0 0 -1727641924184 18.0 1 -1727641934351 8.0 2 -1727641944520 16.0 3 diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/metrics/system/network_receive_megabytes b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/metrics/system/network_receive_megabytes deleted file mode 100644 index e8575de5c3c12cf31d4772e76f239ed4f797e18f..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,4 +0,0 @@ -1727641914029 0.0 0 -1727641924184 0.013705000000015843 1 -1727641934351 0.06307200000000535 2 -1727641944520 0.1684020000000146 3 diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/metrics/system/network_transmit_megabytes b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/metrics/system/network_transmit_megabytes deleted file mode 100644 index 0eda0d7546758ea625ba6c02de23e477c3974fec..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,4 +0,0 @@ -1727641914029 0.0 0 -1727641924184 0.0012020000000063646 1 -1727641934351 0.0115949999999998 2 -1727641944520 0.074151999999998 3 diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/metrics/system/system_memory_usage_megabytes b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index 601b3a2c103853225d857fb4452dedc04862457f..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,4 +0,0 @@ -1727641914029 11118.7 0 -1727641924184 11248.8 1 -1727641934351 11128.4 2 -1727641944520 11127.3 3 diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/metrics/system/system_memory_usage_percentage b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/metrics/system/system_memory_usage_percentage deleted file mode 100644 index e83326076834a023a797f6d7b726fe6d195b75a9..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,4 +0,0 @@ -1727641914029 65.5 0 -1727641924184 66.2 1 -1727641934351 65.5 2 -1727641944520 65.5 3 diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/base_score b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/base_score deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/base_score +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/booster b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/booster deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/booster +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/colsample_bylevel b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/colsample_bylevel deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/colsample_bylevel +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/colsample_bynode b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/colsample_bynode deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/colsample_bynode +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/colsample_bytree b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/colsample_bytree deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/colsample_bytree +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/custom_metric b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/custom_metric deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/custom_metric +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/device b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/device deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/device +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/early_stopping_rounds b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/early_stopping_rounds deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/early_stopping_rounds +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/eval_metric b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/eval_metric deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/eval_metric +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/gamma b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/gamma deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/gamma +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/grow_policy b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/grow_policy deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/grow_policy +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/interaction_constraints b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/interaction_constraints deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/interaction_constraints +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/learning_rate b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/learning_rate deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/learning_rate +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/max_bin b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/max_bin deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/max_bin +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/max_cat_threshold b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/max_cat_threshold deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/max_cat_threshold +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/max_cat_to_onehot b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/max_cat_to_onehot deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/max_cat_to_onehot +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/max_delta_step b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/max_delta_step deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/max_delta_step +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/max_depth b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/max_leaves b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/max_leaves deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/max_leaves +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/maximize b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/maximize deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/maximize +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/min_child_weight b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/min_child_weight deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/min_child_weight +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/monotone_constraints b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/monotone_constraints deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/monotone_constraints +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/multi_strategy b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/multi_strategy deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/multi_strategy +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/n_jobs b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/n_jobs deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/n_jobs +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/num_boost_round b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/num_boost_round deleted file mode 100644 index 105d7d9ad3afc7bb78a0dec4d829880831605dfb..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/num_boost_round +++ /dev/null @@ -1 +0,0 @@ -100 \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/num_parallel_tree b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/num_parallel_tree deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/num_parallel_tree +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/objective b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/objective deleted file mode 100644 index 2f5dba794ce239746ae5a5a58dfb33aa48e7a050..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/objective +++ /dev/null @@ -1 +0,0 @@ -reg:squarederror \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/random_state b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/reg_alpha b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/reg_alpha deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/reg_alpha +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/reg_lambda b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/reg_lambda deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/reg_lambda +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/sampling_method b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/sampling_method deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/sampling_method +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/scale_pos_weight b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/scale_pos_weight deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/scale_pos_weight +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/subsample b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/subsample deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/subsample +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/tree_method b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/tree_method deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/tree_method +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/validate_parameters b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/validate_parameters deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/validate_parameters +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/verbose_eval b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/verbose_eval deleted file mode 100644 index 4791ed5559bd77f54e1520025768e2b368705876..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/verbose_eval +++ /dev/null @@ -1 +0,0 @@ -True \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/verbosity b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/verbosity deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/params/verbosity +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/tags/mlflow.autologging b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/tags/mlflow.autologging deleted file mode 100644 index adb4f9840874972f9c580b23aa343d7ca11b3289..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -xgboost \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/tags/mlflow.runName b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/tags/mlflow.runName deleted file mode 100644 index d1088233e1e633da486e3821780f9018ce2fdeeb..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -dapper-dolphin-704 \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/tags/mlflow.source.git.commit b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/tags/mlflow.source.git.commit deleted file mode 100644 index 38bea58d3eed4194d95922f337daa60cbc044a21..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -da08d56ac3b3131519322c57e8db01547d638865 \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/tags/mlflow.source.name b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/tags/mlflow.source.type b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/tags/mlflow.user b/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/977a23aa01d64c1fba0855b2de9d3283/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/inputs/7d94c0609b24a292ea8504bfebf9007c/meta.yaml b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/inputs/7d94c0609b24a292ea8504bfebf9007c/meta.yaml deleted file mode 100644 index 0723f98cc08a32c652ef5acce9e4e8384bb6d541..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/inputs/7d94c0609b24a292ea8504bfebf9007c/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 48179f7583d906f437293b4ed859818c -destination_type: RUN -source_id: 48179f7583d906f437293b4ed859818c -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/meta.yaml b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/meta.yaml deleted file mode 100644 index 0adcd1440f0e1c2bd15639733e996f5ca972810a..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: mlflow-artifacts:/674375719018272828/a3321e591531400c9a00f0fe51327369/artifacts -end_time: null -entry_point_name: '' -experiment_id: '674375719018272828' -lifecycle_stage: active -run_id: a3321e591531400c9a00f0fe51327369 -run_name: classy-smelt-812 -run_uuid: a3321e591531400c9a00f0fe51327369 -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727651696629 -status: 1 -tags: [] -user_id: User diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/metrics/system/cpu_utilization_percentage b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/metrics/system/cpu_utilization_percentage deleted file mode 100644 index 916c971426a081403c6c031c3da5cb0394e1878c..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,7 +0,0 @@ -1727651707475 99.3 0 -1727651717753 100.0 1 -1727651727985 100.0 2 -1727651738201 100.0 3 -1727651748473 100.0 4 -1727651758754 100.0 5 -1727651769049 100.0 6 diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/metrics/system/disk_available_megabytes b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/metrics/system/disk_available_megabytes deleted file mode 100644 index e524ec3d38a4675505c1e6bf7aeec54c8ac69b9d..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,7 +0,0 @@ -1727651707475 80295.1 0 -1727651717753 80283.7 1 -1727651727985 80221.8 2 -1727651738201 80216.8 3 -1727651748473 80212.6 4 -1727651758754 80206.5 5 -1727651769049 80199.9 6 diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/metrics/system/disk_usage_megabytes b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/metrics/system/disk_usage_megabytes deleted file mode 100644 index 662c9a4547b1c1d26e43ba8ee84f20fd31d59c1c..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,7 +0,0 @@ -1727651707475 430842.0 0 -1727651717753 430853.4 1 -1727651727985 430915.3 2 -1727651738201 430920.3 3 -1727651748473 430924.5 4 -1727651758754 430930.6 5 -1727651769049 430937.2 6 diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/metrics/system/disk_usage_percentage b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/metrics/system/disk_usage_percentage deleted file mode 100644 index fe277a43de721ca84180548aafccc0e5afc287b5..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,7 +0,0 @@ -1727651707475 84.3 0 -1727651717753 84.3 1 -1727651727985 84.3 2 -1727651738201 84.3 3 -1727651748473 84.3 4 -1727651758754 84.3 5 -1727651769049 84.3 6 diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index ac38b1a896f007769549ddbc9bfafecc3f22d051..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,7 +0,0 @@ -1727651707475 245.6 0 -1727651717753 236.7 1 -1727651727985 241.1 2 -1727651738201 237.2 3 -1727651748473 265.5 4 -1727651758754 262.5 5 -1727651769049 270.8 6 diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/metrics/system/gpu_0_memory_usage_percentage b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index 3a8b7fdd9aa109a085a0a712662dc25db36b8cf2..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,7 +0,0 @@ -1727651707475 11.4 0 -1727651717753 11.0 1 -1727651727985 11.2 2 -1727651738201 11.0 3 -1727651748473 12.4 4 -1727651758754 12.2 5 -1727651769049 12.6 6 diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/metrics/system/gpu_0_utilization_percentage b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index 3e7d317897739aeb00eef4bdf5ff87ac88d68979..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,7 +0,0 @@ -1727651707475 13.0 0 -1727651717753 30.0 1 -1727651727985 13.0 2 -1727651738201 26.0 3 -1727651748473 12.0 4 -1727651758754 0.0 5 -1727651769049 14.0 6 diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/metrics/system/network_receive_megabytes b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/metrics/system/network_receive_megabytes deleted file mode 100644 index 078c0b2679c963f957add95a9e1a19603e904c4f..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,7 +0,0 @@ -1727651707475 0.0 0 -1727651717753 0.009882999999945241 1 -1727651727985 0.013521000000082495 2 -1727651738201 0.025894000000107553 3 -1727651748473 0.03249299999993127 4 -1727651758754 0.05889799999999923 5 -1727651769049 0.061146000000007916 6 diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/metrics/system/network_transmit_megabytes b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/metrics/system/network_transmit_megabytes deleted file mode 100644 index 75dbcf35dcc9b0a67871fb208c4ee981567b0459..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,7 +0,0 @@ -1727651707475 0.0 0 -1727651717753 0.00359600000001592 1 -1727651727985 0.004592999999999847 2 -1727651738201 0.014270000000010441 3 -1727651748473 0.016960000000011632 4 -1727651758754 0.03867999999999938 5 -1727651769049 0.04510700000000156 6 diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/metrics/system/system_memory_usage_megabytes b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index 4f335cabb01524e15d3b9c02e9f01b3718f6077b..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,7 +0,0 @@ -1727651707475 15171.4 0 -1727651717753 15292.4 1 -1727651727985 15393.8 2 -1727651738201 15387.9 3 -1727651748473 15436.3 4 -1727651758754 15583.2 5 -1727651769049 15534.3 6 diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/metrics/system/system_memory_usage_percentage b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/metrics/system/system_memory_usage_percentage deleted file mode 100644 index 023ab2bd55d36762e9acba5f940d7575b5985660..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,7 +0,0 @@ -1727651707475 89.3 0 -1727651717753 90.0 1 -1727651727985 90.6 2 -1727651738201 90.6 3 -1727651748473 90.9 4 -1727651758754 91.7 5 -1727651769049 91.5 6 diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/base_score b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/base_score deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/base_score +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/booster b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/booster deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/booster +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/colsample_bylevel b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/colsample_bylevel deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/colsample_bylevel +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/colsample_bynode b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/colsample_bynode deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/colsample_bynode +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/colsample_bytree b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/colsample_bytree deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/colsample_bytree +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/custom_metric b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/custom_metric deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/custom_metric +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/device b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/device deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/device +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/early_stopping_rounds b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/early_stopping_rounds deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/early_stopping_rounds +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/eval_metric b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/eval_metric deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/eval_metric +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/gamma b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/gamma deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/gamma +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/grow_policy b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/grow_policy deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/grow_policy +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/interaction_constraints b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/interaction_constraints deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/interaction_constraints +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/learning_rate b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/learning_rate deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/learning_rate +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/max_bin b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/max_bin deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/max_bin +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/max_cat_threshold b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/max_cat_threshold deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/max_cat_threshold +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/max_cat_to_onehot b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/max_cat_to_onehot deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/max_cat_to_onehot +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/max_delta_step b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/max_delta_step deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/max_delta_step +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/max_depth b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/max_leaves b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/max_leaves deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/max_leaves +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/maximize b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/maximize deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/maximize +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/min_child_weight b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/min_child_weight deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/min_child_weight +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/monotone_constraints b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/monotone_constraints deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/monotone_constraints +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/multi_strategy b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/multi_strategy deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/multi_strategy +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/n_jobs b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/n_jobs deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/n_jobs +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/num_boost_round b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/num_boost_round deleted file mode 100644 index 105d7d9ad3afc7bb78a0dec4d829880831605dfb..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/num_boost_round +++ /dev/null @@ -1 +0,0 @@ -100 \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/num_parallel_tree b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/num_parallel_tree deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/num_parallel_tree +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/objective b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/objective deleted file mode 100644 index 2f5dba794ce239746ae5a5a58dfb33aa48e7a050..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/objective +++ /dev/null @@ -1 +0,0 @@ -reg:squarederror \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/random_state b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/reg_alpha b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/reg_alpha deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/reg_alpha +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/reg_lambda b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/reg_lambda deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/reg_lambda +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/sampling_method b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/sampling_method deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/sampling_method +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/scale_pos_weight b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/scale_pos_weight deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/scale_pos_weight +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/subsample b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/subsample deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/subsample +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/tree_method b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/tree_method deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/tree_method +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/validate_parameters b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/validate_parameters deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/validate_parameters +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/verbose_eval b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/verbose_eval deleted file mode 100644 index 4791ed5559bd77f54e1520025768e2b368705876..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/verbose_eval +++ /dev/null @@ -1 +0,0 @@ -True \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/verbosity b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/verbosity deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/params/verbosity +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/tags/mlflow.autologging b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/tags/mlflow.autologging deleted file mode 100644 index adb4f9840874972f9c580b23aa343d7ca11b3289..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -xgboost \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/tags/mlflow.runName b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/tags/mlflow.runName deleted file mode 100644 index a7f87b6b7f41bf69265330f9af2bea52dd9d0ccf..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -classy-smelt-812 \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/tags/mlflow.source.git.commit b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/tags/mlflow.source.git.commit deleted file mode 100644 index b9ea510318a74d958a9174bc540d8caf7ea139e5..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -2e3cee67a062d9b1790ae929ca7415c02604d303 \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/tags/mlflow.source.name b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/tags/mlflow.source.type b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/tags/mlflow.user b/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/a3321e591531400c9a00f0fe51327369/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/inputs/b48cfb5e23ddb84598046ed85b4350de/meta.yaml b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/inputs/b48cfb5e23ddb84598046ed85b4350de/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/inputs/b48cfb5e23ddb84598046ed85b4350de/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/inputs/f920d32cdc33cb5c102edba9ac827a20/meta.yaml b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/inputs/f920d32cdc33cb5c102edba9ac827a20/meta.yaml deleted file mode 100644 index 0723f98cc08a32c652ef5acce9e4e8384bb6d541..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/inputs/f920d32cdc33cb5c102edba9ac827a20/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 48179f7583d906f437293b4ed859818c -destination_type: RUN -source_id: 48179f7583d906f437293b4ed859818c -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/meta.yaml b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/meta.yaml deleted file mode 100644 index e9e9d2ed4a62d64ecf237f645ad23e1d6031a5dd..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: mlflow-artifacts:/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/artifacts -end_time: 1727696560327 -entry_point_name: '' -experiment_id: '674375719018272828' -lifecycle_stage: active -run_id: accdc880bb474188a8274ccfb0cf0d66 -run_name: inquisitive-asp-539 -run_uuid: accdc880bb474188a8274ccfb0cf0d66 -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727696450171 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/metrics/system/cpu_utilization_percentage b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/metrics/system/cpu_utilization_percentage deleted file mode 100644 index 3fa5bc0229d38b210cfa0807eaf9e73fc46f2a27..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,10 +0,0 @@ -1727696460465 91.6 0 -1727696470681 93.7 1 -1727696480913 99.9 2 -1727696491204 100.0 3 -1727696501458 100.0 4 -1727696511749 100.0 5 -1727696522112 100.0 6 -1727696532331 100.0 7 -1727696542559 100.0 8 -1727696552800 100.0 9 diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/metrics/system/disk_available_megabytes b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/metrics/system/disk_available_megabytes deleted file mode 100644 index cf17ec3dccda9b4773b297be7d4514dc97f1ba1f..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,10 +0,0 @@ -1727696460465 83381.3 0 -1727696470681 83381.3 1 -1727696480913 83381.3 2 -1727696491204 83379.7 3 -1727696501458 83379.7 4 -1727696511749 83379.6 5 -1727696522112 83377.9 6 -1727696532331 83375.4 7 -1727696542559 83375.3 8 -1727696552800 83375.2 9 diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/metrics/system/disk_usage_megabytes b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/metrics/system/disk_usage_megabytes deleted file mode 100644 index 681d312408a5de091c4cad54d2f5123cbf3e29d6..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,10 +0,0 @@ -1727696460465 427755.8 0 -1727696470681 427755.8 1 -1727696480913 427755.8 2 -1727696491204 427757.4 3 -1727696501458 427757.4 4 -1727696511749 427757.5 5 -1727696522112 427759.2 6 -1727696532331 427761.7 7 -1727696542559 427761.8 8 -1727696552800 427761.9 9 diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/metrics/system/disk_usage_percentage b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/metrics/system/disk_usage_percentage deleted file mode 100644 index 4c87fe6b55998db9310d68bb60c27f0c849d2def..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,10 +0,0 @@ -1727696460465 83.7 0 -1727696470681 83.7 1 -1727696480913 83.7 2 -1727696491204 83.7 3 -1727696501458 83.7 4 -1727696511749 83.7 5 -1727696522112 83.7 6 -1727696532331 83.7 7 -1727696542559 83.7 8 -1727696552800 83.7 9 diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index 4901fc51ff48a589875789b1b80068566a14e8af..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,10 +0,0 @@ -1727696460465 279.0 0 -1727696470681 284.3 1 -1727696480913 313.7 2 -1727696491204 244.7 3 -1727696501458 286.8 4 -1727696511749 283.1 5 -1727696522112 301.2 6 -1727696532331 303.3 7 -1727696542559 297.1 8 -1727696552800 255.6 9 diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/metrics/system/gpu_0_memory_usage_percentage b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index fac5706cd9895eec348f12189aa268eba2badf97..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,10 +0,0 @@ -1727696460465 13.0 0 -1727696470681 13.2 1 -1727696480913 14.6 2 -1727696491204 11.4 3 -1727696501458 13.4 4 -1727696511749 13.2 5 -1727696522112 14.0 6 -1727696532331 14.1 7 -1727696542559 13.8 8 -1727696552800 11.9 9 diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/metrics/system/gpu_0_utilization_percentage b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index e87a15ccd292b197a9c227b1642081bca289c0e1..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,10 +0,0 @@ -1727696460465 23.0 0 -1727696470681 6.0 1 -1727696480913 6.0 2 -1727696491204 11.0 3 -1727696501458 11.0 4 -1727696511749 10.0 5 -1727696522112 5.0 6 -1727696532331 8.0 7 -1727696542559 8.0 8 -1727696552800 22.0 9 diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/metrics/system/network_receive_megabytes b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/metrics/system/network_receive_megabytes deleted file mode 100644 index 6b1b340a9962f935b0b88f21dc13f36f2995049f..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,10 +0,0 @@ -1727696460465 0.0 0 -1727696470681 0.006286999999929321 1 -1727696480913 0.012182999999936328 2 -1727696491204 0.044549999999958345 3 -1727696501458 0.059992999999963104 4 -1727696511749 0.06093399999997473 5 -1727696522112 0.11992099999997663 6 -1727696532331 0.39477799999997387 7 -1727696542559 0.3968249999999216 8 -1727696552800 0.42557399999998324 9 diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/metrics/system/network_transmit_megabytes b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/metrics/system/network_transmit_megabytes deleted file mode 100644 index db42128ed9ab92136a51e24d76953ca229373ad4..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,10 +0,0 @@ -1727696460465 0.0 0 -1727696470681 0.009349999999999525 1 -1727696480913 0.012966999999999729 2 -1727696491204 0.039030999999999594 3 -1727696501458 0.0562579999999997 4 -1727696511749 0.05680200000000113 5 -1727696522112 0.06982299999999952 6 -1727696532331 0.10099500000000106 7 -1727696542559 0.10210700000000017 8 -1727696552800 0.12786600000000092 9 diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/metrics/system/system_memory_usage_megabytes b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index a960446e06b4399012d6346ecf73a06f43f8f07e..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,10 +0,0 @@ -1727696460465 14677.6 0 -1727696470681 14809.3 1 -1727696480913 14835.7 2 -1727696491204 15065.3 3 -1727696501458 15198.4 4 -1727696511749 15292.6 5 -1727696522112 15456.3 6 -1727696532331 15458.8 7 -1727696542559 15471.2 8 -1727696552800 15144.9 9 diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/metrics/system/system_memory_usage_percentage b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/metrics/system/system_memory_usage_percentage deleted file mode 100644 index 9bf2df8513aea0e5e71b343cac932e60c8ca02cf..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,10 +0,0 @@ -1727696460465 86.4 0 -1727696470681 87.2 1 -1727696480913 87.3 2 -1727696491204 88.7 3 -1727696501458 89.5 4 -1727696511749 90.0 5 -1727696522112 91.0 6 -1727696532331 91.0 7 -1727696542559 91.1 8 -1727696552800 89.2 9 diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/base_score b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/base_score deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/base_score +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/booster b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/booster deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/booster +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/colsample_bylevel b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/colsample_bylevel deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/colsample_bylevel +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/colsample_bynode b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/colsample_bynode deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/colsample_bynode +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/colsample_bytree b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/colsample_bytree deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/colsample_bytree +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/custom_metric b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/custom_metric deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/custom_metric +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/device b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/device deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/device +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/early_stopping_rounds b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/early_stopping_rounds deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/early_stopping_rounds +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/eval_metric b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/eval_metric deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/eval_metric +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/gamma b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/gamma deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/gamma +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/grow_policy b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/grow_policy deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/grow_policy +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/interaction_constraints b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/interaction_constraints deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/interaction_constraints +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/learning_rate b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/learning_rate deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/learning_rate +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/max_bin b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/max_bin deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/max_bin +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/max_cat_threshold b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/max_cat_threshold deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/max_cat_threshold +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/max_cat_to_onehot b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/max_cat_to_onehot deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/max_cat_to_onehot +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/max_delta_step b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/max_delta_step deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/max_delta_step +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/max_depth b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/max_leaves b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/max_leaves deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/max_leaves +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/maximize b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/maximize deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/maximize +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/min_child_weight b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/min_child_weight deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/min_child_weight +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/monotone_constraints b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/monotone_constraints deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/monotone_constraints +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/multi_strategy b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/multi_strategy deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/multi_strategy +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/n_jobs b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/n_jobs deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/n_jobs +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/num_boost_round b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/num_boost_round deleted file mode 100644 index 105d7d9ad3afc7bb78a0dec4d829880831605dfb..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/num_boost_round +++ /dev/null @@ -1 +0,0 @@ -100 \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/num_parallel_tree b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/num_parallel_tree deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/num_parallel_tree +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/objective b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/objective deleted file mode 100644 index 2f5dba794ce239746ae5a5a58dfb33aa48e7a050..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/objective +++ /dev/null @@ -1 +0,0 @@ -reg:squarederror \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/random_state b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/reg_alpha b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/reg_alpha deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/reg_alpha +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/reg_lambda b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/reg_lambda deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/reg_lambda +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/sampling_method b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/sampling_method deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/sampling_method +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/scale_pos_weight b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/scale_pos_weight deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/scale_pos_weight +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/subsample b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/subsample deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/subsample +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/tree_method b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/tree_method deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/tree_method +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/validate_parameters b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/validate_parameters deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/validate_parameters +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/verbose_eval b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/verbose_eval deleted file mode 100644 index 4791ed5559bd77f54e1520025768e2b368705876..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/verbose_eval +++ /dev/null @@ -1 +0,0 @@ -True \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/verbosity b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/verbosity deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/params/verbosity +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/tags/mlflow.autologging b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/tags/mlflow.autologging deleted file mode 100644 index adb4f9840874972f9c580b23aa343d7ca11b3289..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -xgboost \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/tags/mlflow.log-model.history b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/tags/mlflow.log-model.history deleted file mode 100644 index ea9bd5895fbf402c1786b8e4d9192d7feb952567..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "accdc880bb474188a8274ccfb0cf0d66", "artifact_path": "model", "utc_time_created": "2024-09-30 11:42:28.142214", "model_uuid": "e6fbedea3ece4da9ad5612e8efaf58b3", "flavors": {"python_function": {"loader_module": "mlflow.xgboost", "python_version": "3.11.0", "data": "model.xgb", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "xgboost": {"xgb_version": "2.1.1", "data": "model.xgb", "model_class": "xgboost.sklearn.XGBRegressor", "model_format": "xgb", "code": null}}}] \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/tags/mlflow.runName b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/tags/mlflow.runName deleted file mode 100644 index 292412eb64db6baf21425e391a7e47861d3d8ca0..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -inquisitive-asp-539 \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/tags/mlflow.source.git.commit b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/tags/mlflow.source.git.commit deleted file mode 100644 index b9ea510318a74d958a9174bc540d8caf7ea139e5..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -2e3cee67a062d9b1790ae929ca7415c02604d303 \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/tags/mlflow.source.name b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/tags/mlflow.source.type b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/tags/mlflow.user b/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/accdc880bb474188a8274ccfb0cf0d66/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/inputs/3c4c588b0178083d1bfe7bf2faa77dbc/meta.yaml b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/inputs/3c4c588b0178083d1bfe7bf2faa77dbc/meta.yaml deleted file mode 100644 index 0723f98cc08a32c652ef5acce9e4e8384bb6d541..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/inputs/3c4c588b0178083d1bfe7bf2faa77dbc/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 48179f7583d906f437293b4ed859818c -destination_type: RUN -source_id: 48179f7583d906f437293b4ed859818c -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/inputs/9fd37df9d73e9b534aa46c3b2ff01e9e/meta.yaml b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/inputs/9fd37df9d73e9b534aa46c3b2ff01e9e/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/inputs/9fd37df9d73e9b534aa46c3b2ff01e9e/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/meta.yaml b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/meta.yaml deleted file mode 100644 index 4ae0930db5617627284fec1bdffd774928c938a7..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: mlflow-artifacts:/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/artifacts -end_time: 1727647645166 -entry_point_name: '' -experiment_id: '674375719018272828' -lifecycle_stage: active -run_id: cd9988d7e06c48de83346b5b74c4bb2b -run_name: languid-conch-979 -run_uuid: cd9988d7e06c48de83346b5b74c4bb2b -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727647551952 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/metrics/system/cpu_utilization_percentage b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/metrics/system/cpu_utilization_percentage deleted file mode 100644 index 981e312f69722c7cc02cbd6417b9aa4df1128892..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,9 +0,0 @@ -1727647562199 81.1 0 -1727647572431 88.0 1 -1727647582657 99.6 2 -1727647592990 99.9 3 -1727647603255 99.9 4 -1727647613503 100.0 5 -1727647623806 100.0 6 -1727647634061 100.0 7 -1727647644211 100.0 8 diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/metrics/system/disk_available_megabytes b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/metrics/system/disk_available_megabytes deleted file mode 100644 index e5a921389d762cae4a4cf4fd93d64d1af89184e8..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,9 +0,0 @@ -1727647562199 91065.3 0 -1727647572431 91059.3 1 -1727647582657 91045.8 2 -1727647592990 91045.0 3 -1727647603255 91003.8 4 -1727647613503 91125.6 5 -1727647623806 91025.6 6 -1727647634061 91026.2 7 -1727647644211 91022.2 8 diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/metrics/system/disk_usage_megabytes b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/metrics/system/disk_usage_megabytes deleted file mode 100644 index 3edbcbc489511806c1fb67e51c4f01e5dd05a67a..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,9 +0,0 @@ -1727647562199 420071.8 0 -1727647572431 420077.8 1 -1727647582657 420091.3 2 -1727647592990 420092.1 3 -1727647603255 420133.3 4 -1727647613503 420011.5 5 -1727647623806 420111.5 6 -1727647634061 420110.9 7 -1727647644211 420114.9 8 diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/metrics/system/disk_usage_percentage b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/metrics/system/disk_usage_percentage deleted file mode 100644 index 13dbefc6084f4dd42ca4d86878a1e8882dbd09db..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,9 +0,0 @@ -1727647562199 82.2 0 -1727647572431 82.2 1 -1727647582657 82.2 2 -1727647592990 82.2 3 -1727647603255 82.2 4 -1727647613503 82.2 5 -1727647623806 82.2 6 -1727647634061 82.2 7 -1727647644211 82.2 8 diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index e97121b40aee920612179e6481674bcfb7246c25..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,9 +0,0 @@ -1727647562199 351.3 0 -1727647572431 450.1 1 -1727647582657 422.5 2 -1727647592990 437.3 3 -1727647603255 424.7 4 -1727647613503 461.9 5 -1727647623806 399.1 6 -1727647634061 406.3 7 -1727647644211 416.4 8 diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/metrics/system/gpu_0_memory_usage_percentage b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index f30aa30cbed15753e8a5a67f404873ee84a92dc4..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,9 +0,0 @@ -1727647562199 16.4 0 -1727647572431 21.0 1 -1727647582657 19.7 2 -1727647592990 20.4 3 -1727647603255 19.8 4 -1727647613503 21.5 5 -1727647623806 18.6 6 -1727647634061 18.9 7 -1727647644211 19.4 8 diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/metrics/system/gpu_0_utilization_percentage b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index 2420f36c79ba71f1cbf77930a8c6ed8e65f3463b..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,9 +0,0 @@ -1727647562199 9.0 0 -1727647572431 2.0 1 -1727647582657 8.0 2 -1727647592990 3.0 3 -1727647603255 19.0 4 -1727647613503 9.0 5 -1727647623806 6.0 6 -1727647634061 9.0 7 -1727647644211 1.0 8 diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/metrics/system/network_receive_megabytes b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/metrics/system/network_receive_megabytes deleted file mode 100644 index df087d36ce50067916910c731a38622735149053..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,9 +0,0 @@ -1727647562199 0.0 0 -1727647572431 0.3403069999999957 1 -1727647582657 1.26567399999999 2 -1727647592990 2.880952999999977 3 -1727647603255 3.0457079999999905 4 -1727647613503 3.061493999999982 5 -1727647623806 3.2564009999999826 6 -1727647634061 3.324202999999983 7 -1727647644211 3.3770489999999995 8 diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/metrics/system/network_transmit_megabytes b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/metrics/system/network_transmit_megabytes deleted file mode 100644 index 12b8cf36075e062d9a618fabd4b842455d25a277..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,9 +0,0 @@ -1727647562199 0.0 0 -1727647572431 0.12769200000001035 1 -1727647582657 0.3151289999999989 2 -1727647592990 0.4903630000000021 3 -1727647603255 0.6044660000000022 4 -1727647613503 0.6230680000000035 5 -1727647623806 0.6578860000000049 6 -1727647634061 0.6631739999999979 7 -1727647644211 0.68316200000001 8 diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/metrics/system/system_memory_usage_megabytes b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index 38869582b6efc1243fc9f98bece213622e0705ee..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,9 +0,0 @@ -1727647562199 11657.0 0 -1727647572431 12079.5 1 -1727647582657 12505.4 2 -1727647592990 13381.3 3 -1727647603255 13740.0 4 -1727647613503 14113.6 5 -1727647623806 13975.5 6 -1727647634061 14929.9 7 -1727647644211 15127.8 8 diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/metrics/system/system_memory_usage_percentage b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/metrics/system/system_memory_usage_percentage deleted file mode 100644 index 3eda3b91fb763c1a879abaa781f9c9945af963ff..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,9 +0,0 @@ -1727647562199 68.6 0 -1727647572431 71.1 1 -1727647582657 73.6 2 -1727647592990 78.8 3 -1727647603255 80.9 4 -1727647613503 83.1 5 -1727647623806 82.3 6 -1727647634061 87.9 7 -1727647644211 89.1 8 diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/base_score b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/base_score deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/base_score +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/booster b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/booster deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/booster +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/colsample_bylevel b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/colsample_bylevel deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/colsample_bylevel +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/colsample_bynode b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/colsample_bynode deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/colsample_bynode +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/colsample_bytree b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/colsample_bytree deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/colsample_bytree +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/custom_metric b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/custom_metric deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/custom_metric +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/device b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/device deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/device +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/early_stopping_rounds b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/early_stopping_rounds deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/early_stopping_rounds +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/eval_metric b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/eval_metric deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/eval_metric +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/gamma b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/gamma deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/gamma +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/grow_policy b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/grow_policy deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/grow_policy +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/interaction_constraints b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/interaction_constraints deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/interaction_constraints +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/learning_rate b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/learning_rate deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/learning_rate +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/max_bin b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/max_bin deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/max_bin +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/max_cat_threshold b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/max_cat_threshold deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/max_cat_threshold +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/max_cat_to_onehot b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/max_cat_to_onehot deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/max_cat_to_onehot +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/max_delta_step b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/max_delta_step deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/max_delta_step +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/max_depth b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/max_leaves b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/max_leaves deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/max_leaves +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/maximize b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/maximize deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/maximize +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/min_child_weight b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/min_child_weight deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/min_child_weight +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/monotone_constraints b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/monotone_constraints deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/monotone_constraints +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/multi_strategy b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/multi_strategy deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/multi_strategy +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/n_jobs b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/n_jobs deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/n_jobs +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/num_boost_round b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/num_boost_round deleted file mode 100644 index 105d7d9ad3afc7bb78a0dec4d829880831605dfb..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/num_boost_round +++ /dev/null @@ -1 +0,0 @@ -100 \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/num_parallel_tree b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/num_parallel_tree deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/num_parallel_tree +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/objective b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/objective deleted file mode 100644 index 2f5dba794ce239746ae5a5a58dfb33aa48e7a050..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/objective +++ /dev/null @@ -1 +0,0 @@ -reg:squarederror \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/random_state b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/reg_alpha b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/reg_alpha deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/reg_alpha +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/reg_lambda b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/reg_lambda deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/reg_lambda +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/sampling_method b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/sampling_method deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/sampling_method +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/scale_pos_weight b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/scale_pos_weight deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/scale_pos_weight +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/subsample b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/subsample deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/subsample +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/tree_method b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/tree_method deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/tree_method +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/validate_parameters b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/validate_parameters deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/validate_parameters +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/verbose_eval b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/verbose_eval deleted file mode 100644 index 4791ed5559bd77f54e1520025768e2b368705876..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/verbose_eval +++ /dev/null @@ -1 +0,0 @@ -True \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/verbosity b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/verbosity deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/params/verbosity +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/tags/mlflow.autologging b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/tags/mlflow.autologging deleted file mode 100644 index adb4f9840874972f9c580b23aa343d7ca11b3289..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -xgboost \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/tags/mlflow.log-model.history b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/tags/mlflow.log-model.history deleted file mode 100644 index 1e3c3632926f160d06e80ed7b21eb4446215c0b5..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "cd9988d7e06c48de83346b5b74c4bb2b", "artifact_path": "model", "utc_time_created": "2024-09-29 22:07:19.914112", "model_uuid": "396887145670421a8e9de946e780f70c", "flavors": {"python_function": {"loader_module": "mlflow.xgboost", "python_version": "3.11.0", "data": "model.xgb", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "xgboost": {"xgb_version": "2.1.1", "data": "model.xgb", "model_class": "xgboost.sklearn.XGBRegressor", "model_format": "xgb", "code": null}}}] \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/tags/mlflow.runName b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/tags/mlflow.runName deleted file mode 100644 index 5e0eb964ed20ce84e5fe0221ec1e8aba2bcb01a9..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -languid-conch-979 \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/tags/mlflow.source.git.commit b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/tags/mlflow.source.git.commit deleted file mode 100644 index 6a04567d482b95da916b8765e0e8616fdd6b913f..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -50f51da8088aa9c4731e2604257dd2f36c417b5d \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/tags/mlflow.source.name b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/tags/mlflow.source.type b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/tags/mlflow.user b/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/cd9988d7e06c48de83346b5b74c4bb2b/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/674375719018272828/datasets/19d2a1faf215ef44b979bbf135902c21/meta.yaml b/mlruns/674375719018272828/datasets/19d2a1faf215ef44b979bbf135902c21/meta.yaml deleted file mode 100644 index 65c48d4b56921221974bdde7eed83216fec87bc6..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/datasets/19d2a1faf215ef44b979bbf135902c21/meta.yaml +++ /dev/null @@ -1,9 +0,0 @@ -digest: 2ba3734a -name: dataset -profile: '{"features_shape": [1052, 33], "features_size": 34716, "features_nbytes": - 277728}' -schema: '{"mlflow_tensorspec": {"features": "[{\"type\": \"tensor\", \"tensor-spec\": - {\"dtype\": \"float64\", \"shape\": [-1, 33]}}]", "targets": null}}' -source: '{"tags": {"mlflow.user": "User", "mlflow.source.name": "c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py", - "mlflow.source.type": "LOCAL", "mlflow.source.git.commit": "da08d56ac3b3131519322c57e8db01547d638865"}}' -source_type: code diff --git a/mlruns/674375719018272828/datasets/48179f7583d906f437293b4ed859818c/meta.yaml b/mlruns/674375719018272828/datasets/48179f7583d906f437293b4ed859818c/meta.yaml deleted file mode 100644 index 5b8a12ac4033286e008682660914405fbeddf06d..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/datasets/48179f7583d906f437293b4ed859818c/meta.yaml +++ /dev/null @@ -1,9 +0,0 @@ -digest: 7c1fa8b3 -name: dataset -profile: '{"features_shape": [2452, 33], "features_size": 80916, "features_nbytes": - 323664}' -schema: '{"mlflow_tensorspec": {"features": "[{\"type\": \"tensor\", \"tensor-spec\": - {\"dtype\": \"float32\", \"shape\": [-1, 33]}}]", "targets": null}}' -source: '{"tags": {"mlflow.user": "User", "mlflow.source.name": "c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py", - "mlflow.source.type": "LOCAL", "mlflow.source.git.commit": "da08d56ac3b3131519322c57e8db01547d638865"}}' -source_type: code diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/inputs/7993fc6e3ad002749fbdcdf17ec5dae1/meta.yaml b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/inputs/7993fc6e3ad002749fbdcdf17ec5dae1/meta.yaml deleted file mode 100644 index 0723f98cc08a32c652ef5acce9e4e8384bb6d541..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/inputs/7993fc6e3ad002749fbdcdf17ec5dae1/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 48179f7583d906f437293b4ed859818c -destination_type: RUN -source_id: 48179f7583d906f437293b4ed859818c -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/meta.yaml b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/meta.yaml deleted file mode 100644 index 00f8bfdc5d29e8954c8a845fc09f60c67cf96d9e..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: mlflow-artifacts:/674375719018272828/dc13774a5146449589229dc4c270ec99/artifacts -end_time: null -entry_point_name: '' -experiment_id: '674375719018272828' -lifecycle_stage: active -run_id: dc13774a5146449589229dc4c270ec99 -run_name: adorable-lark-999 -run_uuid: dc13774a5146449589229dc4c270ec99 -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727645487386 -status: 1 -tags: [] -user_id: User diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/metrics/system/cpu_utilization_percentage b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/metrics/system/cpu_utilization_percentage deleted file mode 100644 index 4828e8040d067884215c047d7e2f16f0151ace4e..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,3 +0,0 @@ -1727645497575 74.8 0 -1727645507741 86.5 1 -1727645517908 99.7 2 diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/metrics/system/disk_available_megabytes b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/metrics/system/disk_available_megabytes deleted file mode 100644 index efac7c96dbf60de3d79f402c441a8b8a4f239d63..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727645497575 90901.7 0 -1727645507741 90905.2 1 -1727645517908 90908.7 2 diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/metrics/system/disk_usage_megabytes b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/metrics/system/disk_usage_megabytes deleted file mode 100644 index 227907966301a21f52feae6f8543f20dc8b94bb0..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727645497575 420235.4 0 -1727645507741 420231.9 1 -1727645517908 420228.4 2 diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/metrics/system/disk_usage_percentage b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/metrics/system/disk_usage_percentage deleted file mode 100644 index 735b9bddee3b31c2ffdeb430016d1f0b013eacb3..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,3 +0,0 @@ -1727645497575 82.2 0 -1727645507741 82.2 1 -1727645517908 82.2 2 diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index 072660cc77b88f69d96ab5309fb8f94b056fb8a2..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727645497575 477.5 0 -1727645507741 483.6 1 -1727645517908 481.5 2 diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/metrics/system/gpu_0_memory_usage_percentage b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index 1c55696f569b560868039cde2e746236d26bcdfb..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,3 +0,0 @@ -1727645497575 22.2 0 -1727645507741 22.5 1 -1727645517908 22.4 2 diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/metrics/system/gpu_0_utilization_percentage b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index 445a9759ef708470a51ef1a15c78263992acca33..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,3 +0,0 @@ -1727645497575 27.0 0 -1727645507741 0.0 1 -1727645517908 3.0 2 diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/metrics/system/network_receive_megabytes b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/metrics/system/network_receive_megabytes deleted file mode 100644 index ab2ee9fd648fe8d1276c354a18e8559dc0ef495c..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727645497575 0.007486000000000104 0 -1727645507741 0.05609699999999407 1 -1727645517908 0.08591999999998734 2 diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/metrics/system/network_transmit_megabytes b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/metrics/system/network_transmit_megabytes deleted file mode 100644 index 7ab5ab264bcc42f1afc6c2d06583df8f275a6697..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727645497575 0.00027000000000043656 0 -1727645507741 0.019467000000005896 1 -1727645517908 0.03589399999999898 2 diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/metrics/system/system_memory_usage_megabytes b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index efef16dbdfb90bb72ee2b3c8d01d0cae9980942d..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727645497575 12160.9 0 -1727645507741 12298.2 1 -1727645517908 12339.8 2 diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/metrics/system/system_memory_usage_percentage b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/metrics/system/system_memory_usage_percentage deleted file mode 100644 index 2cfdc3285af1e2faeab5dcb8992aaad29e51ce57..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,3 +0,0 @@ -1727645497575 71.6 0 -1727645507741 72.4 1 -1727645517908 72.7 2 diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/base_score b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/base_score deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/base_score +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/booster b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/booster deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/booster +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/colsample_bylevel b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/colsample_bylevel deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/colsample_bylevel +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/colsample_bynode b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/colsample_bynode deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/colsample_bynode +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/colsample_bytree b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/colsample_bytree deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/colsample_bytree +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/custom_metric b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/custom_metric deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/custom_metric +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/device b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/device deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/device +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/early_stopping_rounds b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/early_stopping_rounds deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/early_stopping_rounds +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/eval_metric b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/eval_metric deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/eval_metric +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/gamma b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/gamma deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/gamma +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/grow_policy b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/grow_policy deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/grow_policy +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/interaction_constraints b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/interaction_constraints deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/interaction_constraints +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/learning_rate b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/learning_rate deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/learning_rate +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/max_bin b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/max_bin deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/max_bin +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/max_cat_threshold b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/max_cat_threshold deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/max_cat_threshold +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/max_cat_to_onehot b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/max_cat_to_onehot deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/max_cat_to_onehot +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/max_delta_step b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/max_delta_step deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/max_delta_step +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/max_depth b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/max_leaves b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/max_leaves deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/max_leaves +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/maximize b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/maximize deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/maximize +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/min_child_weight b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/min_child_weight deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/min_child_weight +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/monotone_constraints b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/monotone_constraints deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/monotone_constraints +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/multi_strategy b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/multi_strategy deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/multi_strategy +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/n_jobs b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/n_jobs deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/n_jobs +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/num_boost_round b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/num_boost_round deleted file mode 100644 index 105d7d9ad3afc7bb78a0dec4d829880831605dfb..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/num_boost_round +++ /dev/null @@ -1 +0,0 @@ -100 \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/num_parallel_tree b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/num_parallel_tree deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/num_parallel_tree +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/objective b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/objective deleted file mode 100644 index 2f5dba794ce239746ae5a5a58dfb33aa48e7a050..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/objective +++ /dev/null @@ -1 +0,0 @@ -reg:squarederror \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/random_state b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/reg_alpha b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/reg_alpha deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/reg_alpha +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/reg_lambda b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/reg_lambda deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/reg_lambda +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/sampling_method b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/sampling_method deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/sampling_method +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/scale_pos_weight b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/scale_pos_weight deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/scale_pos_weight +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/subsample b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/subsample deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/subsample +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/tree_method b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/tree_method deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/tree_method +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/validate_parameters b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/validate_parameters deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/validate_parameters +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/verbose_eval b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/verbose_eval deleted file mode 100644 index 4791ed5559bd77f54e1520025768e2b368705876..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/verbose_eval +++ /dev/null @@ -1 +0,0 @@ -True \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/verbosity b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/verbosity deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/params/verbosity +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/tags/mlflow.autologging b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/tags/mlflow.autologging deleted file mode 100644 index adb4f9840874972f9c580b23aa343d7ca11b3289..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -xgboost \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/tags/mlflow.runName b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/tags/mlflow.runName deleted file mode 100644 index 1f90ef59bb047df2265864e463f0f73764b0ba5f..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -adorable-lark-999 \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/tags/mlflow.source.git.commit b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/tags/mlflow.source.git.commit deleted file mode 100644 index 13593e120ddb8c0612e12480032be1ba081001d6..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -0977a438d571c78eb0abbdcda591bbc53211680a \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/tags/mlflow.source.name b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/tags/mlflow.source.type b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/tags/mlflow.user b/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/dc13774a5146449589229dc4c270ec99/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/inputs/1fcef7972194d38dee7928c67463d979/meta.yaml b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/inputs/1fcef7972194d38dee7928c67463d979/meta.yaml deleted file mode 100644 index 0723f98cc08a32c652ef5acce9e4e8384bb6d541..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/inputs/1fcef7972194d38dee7928c67463d979/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 48179f7583d906f437293b4ed859818c -destination_type: RUN -source_id: 48179f7583d906f437293b4ed859818c -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/inputs/e03f8492be47d80c81ba3a9f438e207a/meta.yaml b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/inputs/e03f8492be47d80c81ba3a9f438e207a/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/inputs/e03f8492be47d80c81ba3a9f438e207a/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/meta.yaml b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/meta.yaml deleted file mode 100644 index ffd3c850096d995b16323fd05e8d1c3c7bc89342..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: mlflow-artifacts:/674375719018272828/f431bc7dfc364411bfea5e73327458d1/artifacts -end_time: 1727702559063 -entry_point_name: '' -experiment_id: '674375719018272828' -lifecycle_stage: active -run_id: f431bc7dfc364411bfea5e73327458d1 -run_name: capable-steed-954 -run_uuid: f431bc7dfc364411bfea5e73327458d1 -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727702412743 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/metrics/system/cpu_utilization_percentage b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/metrics/system/cpu_utilization_percentage deleted file mode 100644 index 5650c8da5418a3c97707f6e7645d18592a726777..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,14 +0,0 @@ -1727702423278 99.8 0 -1727702433672 99.7 1 -1727702443900 100.0 2 -1727702454151 100.0 3 -1727702464524 100.0 4 -1727702475107 100.0 5 -1727702485584 100.0 6 -1727702495815 100.0 7 -1727702506060 100.0 8 -1727702516717 100.0 9 -1727702527023 100.0 10 -1727702537458 100.0 11 -1727702547750 100.0 12 -1727702558067 100.0 13 diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/metrics/system/disk_available_megabytes b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/metrics/system/disk_available_megabytes deleted file mode 100644 index f5144661a82ca468a37103b8ed99299325cb521b..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,14 +0,0 @@ -1727702423278 83132.2 0 -1727702433672 83132.1 1 -1727702443900 83131.4 2 -1727702454151 83131.2 3 -1727702464524 83104.5 4 -1727702475107 83104.3 5 -1727702485584 83107.3 6 -1727702495815 83106.9 7 -1727702506060 83106.9 8 -1727702516717 83106.5 9 -1727702527023 83106.5 10 -1727702537458 83106.2 11 -1727702547750 83110.0 12 -1727702558067 83097.1 13 diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/metrics/system/disk_usage_megabytes b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/metrics/system/disk_usage_megabytes deleted file mode 100644 index d0e8010647c72611f835854bb2bd08057d6f43ae..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,14 +0,0 @@ -1727702423278 428004.9 0 -1727702433672 428005.0 1 -1727702443900 428005.7 2 -1727702454151 428005.9 3 -1727702464524 428032.6 4 -1727702475107 428032.8 5 -1727702485584 428029.8 6 -1727702495815 428030.2 7 -1727702506060 428030.2 8 -1727702516717 428030.6 9 -1727702527023 428030.6 10 -1727702537458 428030.9 11 -1727702547750 428027.1 12 -1727702558067 428040.0 13 diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/metrics/system/disk_usage_percentage b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/metrics/system/disk_usage_percentage deleted file mode 100644 index 76a99d8a9039d4c3099004a67ca1be1e3b763801..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,14 +0,0 @@ -1727702423278 83.7 0 -1727702433672 83.7 1 -1727702443900 83.7 2 -1727702454151 83.7 3 -1727702464524 83.7 4 -1727702475107 83.7 5 -1727702485584 83.7 6 -1727702495815 83.7 7 -1727702506060 83.7 8 -1727702516717 83.7 9 -1727702527023 83.7 10 -1727702537458 83.7 11 -1727702547750 83.7 12 -1727702558067 83.7 13 diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index fd6922aca2c15384bdb805540372a8a64a84d506..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,14 +0,0 @@ -1727702423278 211.9 0 -1727702433672 232.3 1 -1727702443900 233.1 2 -1727702454151 235.2 3 -1727702464524 222.2 4 -1727702475107 256.1 5 -1727702485584 222.3 6 -1727702495815 220.1 7 -1727702506060 229.4 8 -1727702516717 213.4 9 -1727702527023 204.4 10 -1727702537458 209.5 11 -1727702547750 220.7 12 -1727702558067 235.8 13 diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/metrics/system/gpu_0_memory_usage_percentage b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index 50ab10099727f0417d63ee0a6bec7cff28be09cf..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,14 +0,0 @@ -1727702423278 9.9 0 -1727702433672 10.8 1 -1727702443900 10.9 2 -1727702454151 11.0 3 -1727702464524 10.3 4 -1727702475107 11.9 5 -1727702485584 10.4 6 -1727702495815 10.3 7 -1727702506060 10.7 8 -1727702516717 9.9 9 -1727702527023 9.5 10 -1727702537458 9.8 11 -1727702547750 10.3 12 -1727702558067 11.0 13 diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/metrics/system/gpu_0_utilization_percentage b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index 75c5e3c98bff60db94e1cdef0a14af2a5bf316a8..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,14 +0,0 @@ -1727702423278 8.0 0 -1727702433672 10.0 1 -1727702443900 0.0 2 -1727702454151 15.0 3 -1727702464524 15.0 4 -1727702475107 15.0 5 -1727702485584 16.0 6 -1727702495815 14.0 7 -1727702506060 0.0 8 -1727702516717 3.0 9 -1727702527023 2.0 10 -1727702537458 6.0 11 -1727702547750 0.0 12 -1727702558067 15.0 13 diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/metrics/system/network_receive_megabytes b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/metrics/system/network_receive_megabytes deleted file mode 100644 index 12d719ca3f752360dd415cef2d16d714951b6562..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,14 +0,0 @@ -1727702423278 0.0 0 -1727702433672 0.0614620000000059 1 -1727702443900 0.1140100000000075 2 -1727702454151 0.12584400000002915 3 -1727702464524 0.12611600000002454 4 -1727702475107 0.13112599999999475 5 -1727702485584 0.34008799999992334 6 -1727702495815 0.3922569999999723 7 -1727702506060 0.46121499999992466 8 -1727702516717 0.46178199999997105 9 -1727702527023 0.6165379999999914 10 -1727702537458 0.6516589999999951 11 -1727702547750 0.6519889999999577 12 -1727702558067 0.6762119999999641 13 diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/metrics/system/network_transmit_megabytes b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/metrics/system/network_transmit_megabytes deleted file mode 100644 index dbfb39f80a9799911bbf228c6d9cf400b493ce98..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,14 +0,0 @@ -1727702423278 5.499999998903604e-05 0 -1727702433672 0.04821499999999901 1 -1727702443900 0.08729499999999746 2 -1727702454151 0.0933469999999943 3 -1727702464524 0.09356499999999812 4 -1727702475107 0.10258299999999565 5 -1727702485584 0.11687099999998907 6 -1727702495815 0.1232959999999963 7 -1727702506060 0.13900999999999897 8 -1727702516717 0.1395869999999917 9 -1727702527023 0.18348899999999446 10 -1727702537458 0.20648199999999406 11 -1727702547750 0.20675699999999608 12 -1727702558067 0.2260789999999986 13 diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/metrics/system/system_memory_usage_megabytes b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index cc8c54e52a87cc198bb4d59fd7e00e3adad20e88..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,14 +0,0 @@ -1727702423278 16222.8 0 -1727702433672 16310.6 1 -1727702443900 16302.7 2 -1727702454151 16426.4 3 -1727702464524 16255.0 4 -1727702475107 16233.2 5 -1727702485584 16257.2 6 -1727702495815 16302.2 7 -1727702506060 16413.8 8 -1727702516717 16259.3 9 -1727702527023 16444.3 10 -1727702537458 16285.8 11 -1727702547750 15761.1 12 -1727702558067 16291.2 13 diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/metrics/system/system_memory_usage_percentage b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/metrics/system/system_memory_usage_percentage deleted file mode 100644 index 00bad6ee48b899795a1b3fd856de05499f6f7eb1..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,14 +0,0 @@ -1727702423278 95.5 0 -1727702433672 96.0 1 -1727702443900 96.0 2 -1727702454151 96.7 3 -1727702464524 95.7 4 -1727702475107 95.6 5 -1727702485584 95.7 6 -1727702495815 96.0 7 -1727702506060 96.6 8 -1727702516717 95.7 9 -1727702527023 96.8 10 -1727702537458 95.9 11 -1727702547750 92.8 12 -1727702558067 95.9 13 diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/base_score b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/base_score deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/base_score +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/booster b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/booster deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/booster +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/colsample_bylevel b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/colsample_bylevel deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/colsample_bylevel +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/colsample_bynode b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/colsample_bynode deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/colsample_bynode +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/colsample_bytree b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/colsample_bytree deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/colsample_bytree +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/custom_metric b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/custom_metric deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/custom_metric +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/device b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/device deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/device +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/early_stopping_rounds b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/early_stopping_rounds deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/early_stopping_rounds +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/eval_metric b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/eval_metric deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/eval_metric +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/gamma b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/gamma deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/gamma +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/grow_policy b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/grow_policy deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/grow_policy +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/interaction_constraints b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/interaction_constraints deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/interaction_constraints +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/learning_rate b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/learning_rate deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/learning_rate +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/max_bin b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/max_bin deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/max_bin +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/max_cat_threshold b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/max_cat_threshold deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/max_cat_threshold +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/max_cat_to_onehot b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/max_cat_to_onehot deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/max_cat_to_onehot +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/max_delta_step b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/max_delta_step deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/max_delta_step +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/max_depth b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/max_leaves b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/max_leaves deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/max_leaves +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/maximize b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/maximize deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/maximize +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/min_child_weight b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/min_child_weight deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/min_child_weight +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/monotone_constraints b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/monotone_constraints deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/monotone_constraints +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/multi_strategy b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/multi_strategy deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/multi_strategy +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/n_jobs b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/n_jobs deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/n_jobs +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/num_boost_round b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/num_boost_round deleted file mode 100644 index 105d7d9ad3afc7bb78a0dec4d829880831605dfb..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/num_boost_round +++ /dev/null @@ -1 +0,0 @@ -100 \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/num_parallel_tree b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/num_parallel_tree deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/num_parallel_tree +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/objective b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/objective deleted file mode 100644 index 2f5dba794ce239746ae5a5a58dfb33aa48e7a050..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/objective +++ /dev/null @@ -1 +0,0 @@ -reg:squarederror \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/random_state b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/reg_alpha b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/reg_alpha deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/reg_alpha +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/reg_lambda b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/reg_lambda deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/reg_lambda +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/sampling_method b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/sampling_method deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/sampling_method +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/scale_pos_weight b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/scale_pos_weight deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/scale_pos_weight +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/subsample b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/subsample deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/subsample +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/tree_method b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/tree_method deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/tree_method +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/validate_parameters b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/validate_parameters deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/validate_parameters +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/verbose_eval b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/verbose_eval deleted file mode 100644 index 4791ed5559bd77f54e1520025768e2b368705876..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/verbose_eval +++ /dev/null @@ -1 +0,0 @@ -True \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/verbosity b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/verbosity deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/params/verbosity +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/tags/mlflow.autologging b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/tags/mlflow.autologging deleted file mode 100644 index adb4f9840874972f9c580b23aa343d7ca11b3289..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -xgboost \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/tags/mlflow.log-model.history b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/tags/mlflow.log-model.history deleted file mode 100644 index 0cfc7b001cbba4e97201037c230b156fef20a227..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "f431bc7dfc364411bfea5e73327458d1", "artifact_path": "model", "utc_time_created": "2024-09-30 13:22:22.959048", "model_uuid": "e6dbc474179049ceaf181dcb2d2477ba", "flavors": {"python_function": {"loader_module": "mlflow.xgboost", "python_version": "3.11.0", "data": "model.xgb", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "xgboost": {"xgb_version": "2.1.1", "data": "model.xgb", "model_class": "xgboost.sklearn.XGBRegressor", "model_format": "xgb", "code": null}}}] \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/tags/mlflow.runName b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/tags/mlflow.runName deleted file mode 100644 index fddfdacefe1e1fefc9236d0f7117340d443ca50d..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -capable-steed-954 \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/tags/mlflow.source.git.commit b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/tags/mlflow.source.git.commit deleted file mode 100644 index b9ea510318a74d958a9174bc540d8caf7ea139e5..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -2e3cee67a062d9b1790ae929ca7415c02604d303 \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/tags/mlflow.source.name b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/tags/mlflow.source.type b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/tags/mlflow.user b/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/f431bc7dfc364411bfea5e73327458d1/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/674375719018272828/meta.yaml b/mlruns/674375719018272828/meta.yaml deleted file mode 100644 index 09439db0f6ae16ae0fca4fd3c0dfdb6922accc1f..0000000000000000000000000000000000000000 --- a/mlruns/674375719018272828/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -artifact_location: mlflow-artifacts:/674375719018272828 -creation_time: 1727641837813 -experiment_id: '674375719018272828' -last_update_time: 1727641837813 -lifecycle_stage: active -name: XGBoost-BayesianOptimization diff --git a/mlruns/831635215727137506/159e8ceb9ebf420badd6e7c87b889be6/meta.yaml b/mlruns/831635215727137506/159e8ceb9ebf420badd6e7c87b889be6/meta.yaml deleted file mode 100644 index da3bcd8a45daa0999a35903d0e9243bab00834b6..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/159e8ceb9ebf420badd6e7c87b889be6/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: file:///C:/Users/User/ML4I/air-quality-forecast/mlruns/831635215727137506/159e8ceb9ebf420badd6e7c87b889be6/artifacts -end_time: 1727701966464 -entry_point_name: '' -experiment_id: '831635215727137506' -lifecycle_stage: active -run_id: 159e8ceb9ebf420badd6e7c87b889be6 -run_name: tasteful-whale-565 -run_uuid: 159e8ceb9ebf420badd6e7c87b889be6 -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727701965676 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/831635215727137506/159e8ceb9ebf420badd6e7c87b889be6/metrics/test_mse b/mlruns/831635215727137506/159e8ceb9ebf420badd6e7c87b889be6/metrics/test_mse deleted file mode 100644 index b5724348fee1b5570ee231af98be88b5945545b3..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/159e8ceb9ebf420badd6e7c87b889be6/metrics/test_mse +++ /dev/null @@ -1 +0,0 @@ -1727701966231 68.4960392902408 0 diff --git a/mlruns/831635215727137506/159e8ceb9ebf420badd6e7c87b889be6/metrics/test_rmse b/mlruns/831635215727137506/159e8ceb9ebf420badd6e7c87b889be6/metrics/test_rmse deleted file mode 100644 index 66b3e958adec02a8bffa1d06f142fc5a5f88f72a..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/159e8ceb9ebf420badd6e7c87b889be6/metrics/test_rmse +++ /dev/null @@ -1 +0,0 @@ -1727701966415 7.797716661543197 0 diff --git a/mlruns/831635215727137506/159e8ceb9ebf420badd6e7c87b889be6/tags/mlflow.runName b/mlruns/831635215727137506/159e8ceb9ebf420badd6e7c87b889be6/tags/mlflow.runName deleted file mode 100644 index 20af6243e01768f017ed34ce5793e69843f6b198..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/159e8ceb9ebf420badd6e7c87b889be6/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -tasteful-whale-565 \ No newline at end of file diff --git a/mlruns/831635215727137506/159e8ceb9ebf420badd6e7c87b889be6/tags/mlflow.source.git.commit b/mlruns/831635215727137506/159e8ceb9ebf420badd6e7c87b889be6/tags/mlflow.source.git.commit deleted file mode 100644 index b9ea510318a74d958a9174bc540d8caf7ea139e5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/159e8ceb9ebf420badd6e7c87b889be6/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -2e3cee67a062d9b1790ae929ca7415c02604d303 \ No newline at end of file diff --git a/mlruns/831635215727137506/159e8ceb9ebf420badd6e7c87b889be6/tags/mlflow.source.name b/mlruns/831635215727137506/159e8ceb9ebf420badd6e7c87b889be6/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/159e8ceb9ebf420badd6e7c87b889be6/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/831635215727137506/159e8ceb9ebf420badd6e7c87b889be6/tags/mlflow.source.type b/mlruns/831635215727137506/159e8ceb9ebf420badd6e7c87b889be6/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/159e8ceb9ebf420badd6e7c87b889be6/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/831635215727137506/159e8ceb9ebf420badd6e7c87b889be6/tags/mlflow.user b/mlruns/831635215727137506/159e8ceb9ebf420badd6e7c87b889be6/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/159e8ceb9ebf420badd6e7c87b889be6/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/artifacts/estimator.html b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/artifacts/estimator.html deleted file mode 100644 index 3fc41a3a590b59a9dec14b08bcecb41d251da967..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
DecisionTreeRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/artifacts/model/conda.yaml b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/artifacts/model/conda.yaml deleted file mode 100644 index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - cloudpickle==3.0.0 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 -name: mlflow-env diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/artifacts/model/model.pkl b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/artifacts/model/model.pkl deleted file mode 100644 index 9b3b592eff076b921155eefa4f6a7ef2112c8313..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f808d090ecf31cbaa063890df5144c205ee913b0a3b37d2f99a17b66dbd436b3 -size 550214 diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/artifacts/model/python_env.yaml b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/artifacts/model/requirements.txt b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/artifacts/model/requirements.txt deleted file mode 100644 index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -cloudpickle==3.0.0 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/inputs/625b281ee951af96e35c092f48d0d8b8/meta.yaml b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/inputs/625b281ee951af96e35c092f48d0d8b8/meta.yaml deleted file mode 100644 index 17c34ad08903a4ce3ec908a63642f36f025e6715..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/inputs/625b281ee951af96e35c092f48d0d8b8/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: dd4d89a524510f8914834c3bc9cd9e95 -destination_type: RUN -source_id: dd4d89a524510f8914834c3bc9cd9e95 -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/inputs/ce5dd354998aa6fa9a6eaa466b6a3457/meta.yaml b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/inputs/ce5dd354998aa6fa9a6eaa466b6a3457/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/inputs/ce5dd354998aa6fa9a6eaa466b6a3457/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/meta.yaml b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/meta.yaml deleted file mode 100644 index 7d29c6b9f34adcfc75b2fd5b59618ea3e3e5173e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: file:///C:/Users/User/ML4I/air-quality-forecast/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/artifacts -end_time: 1727713129985 -entry_point_name: '' -experiment_id: '831635215727137506' -lifecycle_stage: active -run_id: 19e5a64124e94737ab2ac4556d99a4d6 -run_name: Bayesian_Optimization_Training_and_Eval -run_uuid: 19e5a64124e94737ab2ac4556d99a4d6 -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727713060705 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/Correct Test MSE b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/Correct Test MSE deleted file mode 100644 index 4805740e4e81c46fa07494d2429b038abbea08ac..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/Correct Test MSE +++ /dev/null @@ -1 +0,0 @@ -1727713129922 68.4960392902408 0 diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/Correct Test RMSE b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/Correct Test RMSE deleted file mode 100644 index a8f593ed14082e402672d343b85b1c375a997ac7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/Correct Test RMSE +++ /dev/null @@ -1 +0,0 @@ -1727713129957 7.797716661543197 0 diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/Correct Train MSE b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/Correct Train MSE deleted file mode 100644 index 5de52afe47306c34d075458f0b6cdf74b64f3ea2..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/Correct Train MSE +++ /dev/null @@ -1 +0,0 @@ -1727713129770 78.00375816993463 0 diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/system/cpu_utilization_percentage b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/system/cpu_utilization_percentage deleted file mode 100644 index eb799c1f70214a1bdcc63f7a0f6d470ac27d3662..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,5 +0,0 @@ -1727713086988 92.2 0 -1727713097449 99.9 1 -1727713107883 100.0 2 -1727713118258 100.0 3 -1727713128463 97.0 4 diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/system/disk_available_megabytes b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/system/disk_available_megabytes deleted file mode 100644 index 4c11b58e2e0c259b9548f6d1997faf9e7f864235..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,5 +0,0 @@ -1727713086988 83044.2 0 -1727713097449 83044.2 1 -1727713107883 83043.6 2 -1727713118258 83041.8 3 -1727713128463 83041.8 4 diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/system/disk_usage_megabytes b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/system/disk_usage_megabytes deleted file mode 100644 index b71fe34313162f5f894216ed60508126e22a41f4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,5 +0,0 @@ -1727713086988 428092.8 0 -1727713097449 428092.9 1 -1727713107883 428093.5 2 -1727713118258 428095.3 3 -1727713128463 428095.3 4 diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/system/disk_usage_percentage b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/system/disk_usage_percentage deleted file mode 100644 index fb2488ef99ef2b77c923d349bcf3ecb4a0790929..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,5 +0,0 @@ -1727713086988 83.8 0 -1727713097449 83.8 1 -1727713107883 83.8 2 -1727713118258 83.8 3 -1727713128463 83.8 4 diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index 5ba1846c44c1666400c1c923cdcde159e2e71790..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,5 +0,0 @@ -1727713086988 221.9 0 -1727713097449 229.9 1 -1727713107883 225.9 2 -1727713118258 223.6 3 -1727713128463 218.4 4 diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/system/gpu_0_memory_usage_percentage b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index ff15c0f5520dfe74ec1fb74d6698ab7c6d0c9949..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,5 +0,0 @@ -1727713086988 10.3 0 -1727713097449 10.7 1 -1727713107883 10.5 2 -1727713118258 10.4 3 -1727713128463 10.2 4 diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/system/gpu_0_utilization_percentage b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index e60a74e5e1ff06db156f41407de174e43f1e53fc..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,5 +0,0 @@ -1727713086988 10.0 0 -1727713097449 16.0 1 -1727713107883 8.0 2 -1727713118258 6.0 3 -1727713128463 13.0 4 diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/system/network_receive_megabytes b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/system/network_receive_megabytes deleted file mode 100644 index 6715ffee28931427cd9317b17f9e48166029caa0..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,5 +0,0 @@ -1727713086988 9.199999999864872e-05 0 -1727713097449 0.020029000000000963 1 -1727713107883 0.042591999999999075 2 -1727713118258 0.12215099999999879 3 -1727713128463 0.14575900000000175 4 diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/system/network_transmit_megabytes b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/system/network_transmit_megabytes deleted file mode 100644 index 268a527030cc5690d5bbb5445e048a7cd0e9bec5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,5 +0,0 @@ -1727713086988 0.0 0 -1727713097449 0.019754999999999967 1 -1727713107883 0.028243000000000684 2 -1727713118258 0.061665000000000525 3 -1727713128463 0.07075000000000031 4 diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/system/system_memory_usage_megabytes b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index e29148c55debfaa668c8e6515a0abfbebf2ced3d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,5 +0,0 @@ -1727713086988 14881.1 0 -1727713097449 15368.4 1 -1727713107883 15484.0 2 -1727713118258 15651.2 3 -1727713128463 15735.0 4 diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/system/system_memory_usage_percentage b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/system/system_memory_usage_percentage deleted file mode 100644 index 05908d030df9928e369b8910cf6619f4040bc02c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,5 +0,0 @@ -1727713086988 87.6 0 -1727713097449 90.5 1 -1727713107883 91.2 2 -1727713118258 92.1 3 -1727713128463 92.6 4 diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/training_mean_absolute_error b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/training_mean_absolute_error deleted file mode 100644 index 9130fe49e0973faf6585be07af57d0c1aae8c4be..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727713103128 0.03072321914083741 0 diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/training_mean_squared_error b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/training_mean_squared_error deleted file mode 100644 index 03efb06d9c994bfbf3ad873fd337ee7c63d96fdd..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727713103128 0.18529091897770525 0 diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/training_r2_score b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/training_r2_score deleted file mode 100644 index 5dbf56a63a0c889d6d099cb47eadcac4f2c229ac..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727713103128 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/training_root_mean_squared_error b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/training_root_mean_squared_error deleted file mode 100644 index 1e6e1c9e9da5e83d6c994923b0b85548062f7223..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727713103128 0.4304543169462995 0 diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/training_score b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/training_score deleted file mode 100644 index 5bb96c424e42bb6d692c6026f1654ec2fa012ce0..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727713103134 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/ccp_alpha b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/criterion b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/max_depth b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/max_features b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/max_features deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/max_features +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/max_leaf_nodes b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/min_impurity_decrease b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/min_samples_leaf b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/min_samples_split b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/min_samples_split deleted file mode 100644 index d8263ee9860594d2806b0dfd1bfd17528b0ba2a4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/min_samples_split +++ /dev/null @@ -1 +0,0 @@ -2 \ No newline at end of file diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/min_weight_fraction_leaf b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/monotonic_cst b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/random_state b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/splitter b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/splitter deleted file mode 100644 index e173194bb34f3a5b7fb4ca66c137c36492cdb60e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/params/splitter +++ /dev/null @@ -1 +0,0 @@ -best \ No newline at end of file diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/tags/estimator_class b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/tags/estimator_class deleted file mode 100644 index e049541749d94d9d1c082a3495fc52a31e663a30..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.tree._classes.DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/tags/estimator_name b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/tags/estimator_name deleted file mode 100644 index 133de2e2ca4faccc3c53cd6fc5a81c142569960d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/tags/mlflow.log-model.history b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/tags/mlflow.log-model.history deleted file mode 100644 index 5bf056a62ac749b49f1ddc7dffc31424067063f3..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "19e5a64124e94737ab2ac4556d99a4d6", "artifact_path": "model", "utc_time_created": "2024-09-30 16:18:23.966394", "model_uuid": "a20fa37538e841fab3d8994d453d714b", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/tags/mlflow.runName b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/tags/mlflow.runName deleted file mode 100644 index 39c57e5e2445a0b5c78f476020799ebb5c99fb29..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -Bayesian_Optimization_Training_and_Eval \ No newline at end of file diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/tags/mlflow.source.git.commit b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/tags/mlflow.source.git.commit deleted file mode 100644 index b9ea510318a74d958a9174bc540d8caf7ea139e5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -2e3cee67a062d9b1790ae929ca7415c02604d303 \ No newline at end of file diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/tags/mlflow.source.name b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/tags/mlflow.source.type b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/tags/mlflow.user b/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/831635215727137506/221cf6df8f7548d2938fa0bcc01ea5be/meta.yaml b/mlruns/831635215727137506/221cf6df8f7548d2938fa0bcc01ea5be/meta.yaml deleted file mode 100644 index 4ed5cb0c6979015a930948f117087bea6e13a006..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/221cf6df8f7548d2938fa0bcc01ea5be/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: file:///C:/Users/User/ML4I/air-quality-forecast/mlruns/831635215727137506/221cf6df8f7548d2938fa0bcc01ea5be/artifacts -end_time: 1727702201105 -entry_point_name: '' -experiment_id: '831635215727137506' -lifecycle_stage: active -run_id: 221cf6df8f7548d2938fa0bcc01ea5be -run_name: legendary-ram-432 -run_uuid: 221cf6df8f7548d2938fa0bcc01ea5be -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727702200749 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/831635215727137506/221cf6df8f7548d2938fa0bcc01ea5be/metrics/test_mse b/mlruns/831635215727137506/221cf6df8f7548d2938fa0bcc01ea5be/metrics/test_mse deleted file mode 100644 index b60be46f59bef311c4e5552dad8b598783cb6955..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/221cf6df8f7548d2938fa0bcc01ea5be/metrics/test_mse +++ /dev/null @@ -1 +0,0 @@ -1727702201018 68.4960392902408 0 diff --git a/mlruns/831635215727137506/221cf6df8f7548d2938fa0bcc01ea5be/metrics/test_rmse b/mlruns/831635215727137506/221cf6df8f7548d2938fa0bcc01ea5be/metrics/test_rmse deleted file mode 100644 index ae649ff6d20abdb7ddcbc17fce93cadb2c0e1f82..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/221cf6df8f7548d2938fa0bcc01ea5be/metrics/test_rmse +++ /dev/null @@ -1 +0,0 @@ -1727702201065 7.797716661543197 0 diff --git a/mlruns/831635215727137506/221cf6df8f7548d2938fa0bcc01ea5be/tags/mlflow.runName b/mlruns/831635215727137506/221cf6df8f7548d2938fa0bcc01ea5be/tags/mlflow.runName deleted file mode 100644 index 96d191a13651d855dedaed5ed2399fd60c6fc0ba..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/221cf6df8f7548d2938fa0bcc01ea5be/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -legendary-ram-432 \ No newline at end of file diff --git a/mlruns/831635215727137506/221cf6df8f7548d2938fa0bcc01ea5be/tags/mlflow.source.git.commit b/mlruns/831635215727137506/221cf6df8f7548d2938fa0bcc01ea5be/tags/mlflow.source.git.commit deleted file mode 100644 index b9ea510318a74d958a9174bc540d8caf7ea139e5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/221cf6df8f7548d2938fa0bcc01ea5be/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -2e3cee67a062d9b1790ae929ca7415c02604d303 \ No newline at end of file diff --git a/mlruns/831635215727137506/221cf6df8f7548d2938fa0bcc01ea5be/tags/mlflow.source.name b/mlruns/831635215727137506/221cf6df8f7548d2938fa0bcc01ea5be/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/221cf6df8f7548d2938fa0bcc01ea5be/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/831635215727137506/221cf6df8f7548d2938fa0bcc01ea5be/tags/mlflow.source.type b/mlruns/831635215727137506/221cf6df8f7548d2938fa0bcc01ea5be/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/221cf6df8f7548d2938fa0bcc01ea5be/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/831635215727137506/221cf6df8f7548d2938fa0bcc01ea5be/tags/mlflow.user b/mlruns/831635215727137506/221cf6df8f7548d2938fa0bcc01ea5be/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/221cf6df8f7548d2938fa0bcc01ea5be/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/artifacts/estimator.html b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/artifacts/estimator.html deleted file mode 100644 index 3fc41a3a590b59a9dec14b08bcecb41d251da967..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
DecisionTreeRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/artifacts/model/MLmodel b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/artifacts/model/MLmodel deleted file mode 100644 index 6ce616220c78876fd31017fa94b08f52fb02797f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.sklearn - model_path: model.pkl - predict_fn: predict - python_version: 3.11.0 - sklearn: - code: null - pickled_model: model.pkl - serialization_format: cloudpickle - sklearn_version: 1.5.2 -mlflow_version: 2.16.2 -model_size_bytes: 550214 -model_uuid: 2945a5a813b746b4bec2363e2a7b5279 -run_id: 2418ba9f46594028a7399c1be3e79c80 -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-30 11:38:06.312245' diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/artifacts/model/conda.yaml b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/artifacts/model/conda.yaml deleted file mode 100644 index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - cloudpickle==3.0.0 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 -name: mlflow-env diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/artifacts/model/model.pkl b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/artifacts/model/model.pkl deleted file mode 100644 index 9b3b592eff076b921155eefa4f6a7ef2112c8313..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f808d090ecf31cbaa063890df5144c205ee913b0a3b37d2f99a17b66dbd436b3 -size 550214 diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/artifacts/model/python_env.yaml b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/artifacts/model/requirements.txt b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/artifacts/model/requirements.txt deleted file mode 100644 index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -cloudpickle==3.0.0 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/inputs/b4994d72eb2fd10141eb8489e9cf6db9/meta.yaml b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/inputs/b4994d72eb2fd10141eb8489e9cf6db9/meta.yaml deleted file mode 100644 index 17c34ad08903a4ce3ec908a63642f36f025e6715..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/inputs/b4994d72eb2fd10141eb8489e9cf6db9/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: dd4d89a524510f8914834c3bc9cd9e95 -destination_type: RUN -source_id: dd4d89a524510f8914834c3bc9cd9e95 -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/inputs/bbe231a955461b1122cf8304912a941a/meta.yaml b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/inputs/bbe231a955461b1122cf8304912a941a/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/inputs/bbe231a955461b1122cf8304912a941a/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/meta.yaml b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/meta.yaml deleted file mode 100644 index ce1c74d1fff11a0905d784015cedb294bd140c40..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: file:///C:/Users/User/ML4I/air-quality-forecast/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/artifacts -end_time: 1727696364364 -entry_point_name: '' -experiment_id: '831635215727137506' -lifecycle_stage: active -run_id: 2418ba9f46594028a7399c1be3e79c80 -run_name: calm-newt-701 -run_uuid: 2418ba9f46594028a7399c1be3e79c80 -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727696270912 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/system/cpu_utilization_percentage b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/system/cpu_utilization_percentage deleted file mode 100644 index 93c0f189e4131e2e757b34a629ee1d642450455b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,7 +0,0 @@ -1727696289267 89.0 0 -1727696303609 84.8 1 -1727696313872 70.4 2 -1727696324180 100.0 3 -1727696334448 99.8 4 -1727696344665 100.0 5 -1727696354839 95.5 6 diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/system/disk_available_megabytes b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/system/disk_available_megabytes deleted file mode 100644 index 08e19b96e7bdf5a42e5e27a97a7aaf1e8ec8c8ac..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,7 +0,0 @@ -1727696289267 78679.7 0 -1727696303609 78678.6 1 -1727696313872 78678.2 2 -1727696324180 82504.5 3 -1727696334448 83387.0 4 -1727696344665 83379.5 5 -1727696354839 83378.1 6 diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/system/disk_usage_megabytes b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/system/disk_usage_megabytes deleted file mode 100644 index 983685436b5d877251114d6a7f3bf2f5d4a6a213..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,7 +0,0 @@ -1727696289267 432457.4 0 -1727696303609 432458.4 1 -1727696313872 432458.9 2 -1727696324180 428632.6 3 -1727696334448 427750.1 4 -1727696344665 427757.6 5 -1727696354839 427759.0 6 diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/system/disk_usage_percentage b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/system/disk_usage_percentage deleted file mode 100644 index 3c104ee9f396c685c4e6f1799b1caf80fb66cdf6..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,7 +0,0 @@ -1727696289267 84.6 0 -1727696303609 84.6 1 -1727696313872 84.6 2 -1727696324180 83.9 3 -1727696334448 83.7 4 -1727696344665 83.7 5 -1727696354839 83.7 6 diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index dc8446f8a22b1e38878319f1d8a5b6f5b543bbbe..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,7 +0,0 @@ -1727696289267 290.9 0 -1727696303609 239.7 1 -1727696313872 282.4 2 -1727696324180 263.6 3 -1727696334448 242.9 4 -1727696344665 253.0 5 -1727696354839 287.2 6 diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/system/gpu_0_memory_usage_percentage b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index 34c4bfb430193bdb797dbf2f12c19311a4d908c3..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,7 +0,0 @@ -1727696289267 13.5 0 -1727696303609 11.2 1 -1727696313872 13.2 2 -1727696324180 12.3 3 -1727696334448 11.3 4 -1727696344665 11.8 5 -1727696354839 13.4 6 diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/system/gpu_0_utilization_percentage b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index 60dcbdc50cf1b7e1fc9c20ec3bfe0db3cde9f794..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,7 +0,0 @@ -1727696289267 26.0 0 -1727696303609 0.0 1 -1727696313872 5.0 2 -1727696324180 6.0 3 -1727696334448 10.0 4 -1727696344665 16.0 5 -1727696354839 8.0 6 diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/system/network_receive_megabytes b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/system/network_receive_megabytes deleted file mode 100644 index bd56037d0e5b4ece6966b7a7ea233dc7be9e2159..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,7 +0,0 @@ -1727696289267 0.0 0 -1727696303609 0.005378000000064276 1 -1727696313872 0.05309900000008838 2 -1727696324180 0.12174900000002253 3 -1727696334448 1.5795270000000983 4 -1727696344665 2.179328000000055 5 -1727696354839 2.4363650000000234 6 diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/system/network_transmit_megabytes b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/system/network_transmit_megabytes deleted file mode 100644 index f080b9d7019682fba4ed7ae2621b45ca25369a31..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,7 +0,0 @@ -1727696289267 0.00015100000000067837 0 -1727696303609 0.00853000000000037 1 -1727696313872 0.0444230000000001 2 -1727696324180 0.07182099999999991 3 -1727696334448 0.16967200000000027 4 -1727696344665 0.21432300000000026 5 -1727696354839 0.2846650000000004 6 diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/system/system_memory_usage_megabytes b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index ead5caf82f57619d05df3aa673720b2730a4e6ff..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,7 +0,0 @@ -1727696289267 16840.7 0 -1727696303609 16781.2 1 -1727696313872 16506.8 2 -1727696324180 15964.9 3 -1727696334448 14806.4 4 -1727696344665 15215.4 5 -1727696354839 15450.5 6 diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/system/system_memory_usage_percentage b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/system/system_memory_usage_percentage deleted file mode 100644 index 00e032157bf2012266382111469ed597f0cac7b4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,7 +0,0 @@ -1727696289267 99.2 0 -1727696303609 98.8 1 -1727696313872 97.2 2 -1727696324180 94.0 3 -1727696334448 87.2 4 -1727696344665 89.6 5 -1727696354839 91.0 6 diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/training_mean_absolute_error b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/training_mean_absolute_error deleted file mode 100644 index de173b2e370c37c2190038bc1c1da5d907d442ea..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727696279711 0.03072321914083741 0 diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/training_mean_squared_error b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/training_mean_squared_error deleted file mode 100644 index 166cfdbb54840b4204e7c7c2d9840b932b94471c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727696279711 0.18529091897770525 0 diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/training_r2_score b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/training_r2_score deleted file mode 100644 index 88c8915a62d8bc6b56437fa8d38e3e9724972b54..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727696279711 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/training_root_mean_squared_error b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/training_root_mean_squared_error deleted file mode 100644 index c5081bcc38432d89995a42cb59399f3577153259..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727696279711 0.4304543169462995 0 diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/training_score b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/training_score deleted file mode 100644 index 365327cd398073a9f555ef0d7f1d29a7a1a6c519..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727696279719 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/ccp_alpha b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/criterion b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/max_depth b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/max_features b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/max_features deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/max_features +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/max_leaf_nodes b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/min_impurity_decrease b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/min_samples_leaf b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/min_samples_split b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/min_samples_split deleted file mode 100644 index d8263ee9860594d2806b0dfd1bfd17528b0ba2a4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/min_samples_split +++ /dev/null @@ -1 +0,0 @@ -2 \ No newline at end of file diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/min_weight_fraction_leaf b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/monotonic_cst b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/random_state b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/splitter b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/splitter deleted file mode 100644 index e173194bb34f3a5b7fb4ca66c137c36492cdb60e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/params/splitter +++ /dev/null @@ -1 +0,0 @@ -best \ No newline at end of file diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/tags/estimator_class b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/tags/estimator_class deleted file mode 100644 index e049541749d94d9d1c082a3495fc52a31e663a30..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.tree._classes.DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/tags/estimator_name b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/tags/estimator_name deleted file mode 100644 index 133de2e2ca4faccc3c53cd6fc5a81c142569960d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/tags/mlflow.autologging b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/tags/mlflow.autologging deleted file mode 100644 index 044bdd758636edf2ee49b03917cb416d76a71de4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -sklearn \ No newline at end of file diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/tags/mlflow.log-model.history b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/tags/mlflow.log-model.history deleted file mode 100644 index 479a80b1f67816053acab4e113941b0e64ea7633..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "2418ba9f46594028a7399c1be3e79c80", "artifact_path": "model", "utc_time_created": "2024-09-30 11:38:06.312245", "model_uuid": "2945a5a813b746b4bec2363e2a7b5279", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/tags/mlflow.runName b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/tags/mlflow.runName deleted file mode 100644 index 79f258d0bc70e7b5cd52e6c4c5e9bc929628f52e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -calm-newt-701 \ No newline at end of file diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/tags/mlflow.source.git.commit b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/tags/mlflow.source.git.commit deleted file mode 100644 index b9ea510318a74d958a9174bc540d8caf7ea139e5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -2e3cee67a062d9b1790ae929ca7415c02604d303 \ No newline at end of file diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/tags/mlflow.source.name b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/tags/mlflow.source.type b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/tags/mlflow.user b/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2418ba9f46594028a7399c1be3e79c80/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/artifacts/estimator.html b/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/artifacts/estimator.html deleted file mode 100644 index 3fc41a3a590b59a9dec14b08bcecb41d251da967..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
DecisionTreeRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/inputs/37cd3a56e67a5a9ab2b5cf9443d5a37a/meta.yaml b/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/inputs/37cd3a56e67a5a9ab2b5cf9443d5a37a/meta.yaml deleted file mode 100644 index 17c34ad08903a4ce3ec908a63642f36f025e6715..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/inputs/37cd3a56e67a5a9ab2b5cf9443d5a37a/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: dd4d89a524510f8914834c3bc9cd9e95 -destination_type: RUN -source_id: dd4d89a524510f8914834c3bc9cd9e95 -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/meta.yaml b/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/meta.yaml deleted file mode 100644 index 8256b3ebd46c7d87223b683330f3ca7ba364e6e3..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: file:///C:/Users/User/ML4I/air-quality-forecast/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/artifacts -end_time: null -entry_point_name: '' -experiment_id: '831635215727137506' -lifecycle_stage: active -run_id: 24a5589027bb41f8b316a9ecd2a2125e -run_name: sincere-jay-99 -run_uuid: 24a5589027bb41f8b316a9ecd2a2125e -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727645091515 -status: 1 -tags: [] -user_id: User diff --git a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/ccp_alpha b/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/criterion b/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/max_depth b/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/max_features b/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/max_features deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/max_features +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/max_leaf_nodes b/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/min_impurity_decrease b/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/min_samples_leaf b/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/min_samples_split b/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/min_samples_split deleted file mode 100644 index d8263ee9860594d2806b0dfd1bfd17528b0ba2a4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/min_samples_split +++ /dev/null @@ -1 +0,0 @@ -2 \ No newline at end of file diff --git a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/min_weight_fraction_leaf b/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/monotonic_cst b/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/random_state b/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/splitter b/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/splitter deleted file mode 100644 index e173194bb34f3a5b7fb4ca66c137c36492cdb60e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/params/splitter +++ /dev/null @@ -1 +0,0 @@ -best \ No newline at end of file diff --git a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/tags/estimator_class b/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/tags/estimator_class deleted file mode 100644 index e049541749d94d9d1c082a3495fc52a31e663a30..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.tree._classes.DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/tags/estimator_name b/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/tags/estimator_name deleted file mode 100644 index 133de2e2ca4faccc3c53cd6fc5a81c142569960d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/tags/mlflow.autologging b/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/tags/mlflow.autologging deleted file mode 100644 index 044bdd758636edf2ee49b03917cb416d76a71de4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -sklearn \ No newline at end of file diff --git a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/tags/mlflow.runName b/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/tags/mlflow.runName deleted file mode 100644 index 320b339936757dd3c45d0ffef250135264640c5c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -sincere-jay-99 \ No newline at end of file diff --git a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/tags/mlflow.source.git.commit b/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/tags/mlflow.source.git.commit deleted file mode 100644 index 13593e120ddb8c0612e12480032be1ba081001d6..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -0977a438d571c78eb0abbdcda591bbc53211680a \ No newline at end of file diff --git a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/tags/mlflow.source.name b/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/tags/mlflow.source.type b/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/tags/mlflow.user b/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/24a5589027bb41f8b316a9ecd2a2125e/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/artifacts/estimator.html b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/artifacts/estimator.html deleted file mode 100644 index 41076e74a6b15ab13e2a2158dbb423fb6a49e382..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
DecisionTreeRegressor(max_depth=17)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/artifacts/model/MLmodel b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/artifacts/model/MLmodel deleted file mode 100644 index 2e2b023ab752df32d3bbb846915e1b64323df8cb..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.sklearn - model_path: model.pkl - predict_fn: predict - python_version: 3.11.0 - sklearn: - code: null - pickled_model: model.pkl - serialization_format: cloudpickle - sklearn_version: 1.5.2 -mlflow_version: 2.16.2 -model_size_bytes: 457478 -model_uuid: c35eec65e21d483ab8160eb31f245ed1 -run_id: 2e762b8af7f44cbe992719f2db84a6fe -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-29 20:20:41.434277' diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/artifacts/model/conda.yaml b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/artifacts/model/conda.yaml deleted file mode 100644 index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - cloudpickle==3.0.0 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 -name: mlflow-env diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/artifacts/model/model.pkl b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/artifacts/model/model.pkl deleted file mode 100644 index d8a2bfae961f7136206088e2d865149d58d895dc..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:91993ee7cb6967644f1b896f7ebd770d91349ae3ef02e2a6daf6b1aae64d5bba -size 457478 diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/artifacts/model/python_env.yaml b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/artifacts/model/requirements.txt b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/artifacts/model/requirements.txt deleted file mode 100644 index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -cloudpickle==3.0.0 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/inputs/13875978899bb64a29351ee6aadbee37/meta.yaml b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/inputs/13875978899bb64a29351ee6aadbee37/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/inputs/13875978899bb64a29351ee6aadbee37/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/inputs/79ef9d6bda22c077a0ea25e3648042ad/meta.yaml b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/inputs/79ef9d6bda22c077a0ea25e3648042ad/meta.yaml deleted file mode 100644 index 17c34ad08903a4ce3ec908a63642f36f025e6715..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/inputs/79ef9d6bda22c077a0ea25e3648042ad/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: dd4d89a524510f8914834c3bc9cd9e95 -destination_type: RUN -source_id: dd4d89a524510f8914834c3bc9cd9e95 -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/meta.yaml b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/meta.yaml deleted file mode 100644 index 5a47f4440f011ada94d162f3146866de0bfe2d69..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: file:///C:/Users/User/ML4I/air-quality-forecast/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/artifacts -end_time: 1727641252479 -entry_point_name: '' -experiment_id: '831635215727137506' -lifecycle_stage: active -run_id: 2e762b8af7f44cbe992719f2db84a6fe -run_name: judicious-hound-816 -run_uuid: 2e762b8af7f44cbe992719f2db84a6fe -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727641236795 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/system/cpu_utilization_percentage b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/system/cpu_utilization_percentage deleted file mode 100644 index c4ef43468691248d2437d589b289574d5d8c2578..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1 +0,0 @@ -1727641250954 69.1 0 diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/system/disk_available_megabytes b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/system/disk_available_megabytes deleted file mode 100644 index 3449c350ea96f9b5b689a5e2e1504a907e263fd2..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/system/disk_available_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727641250954 91104.5 0 diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/system/disk_usage_megabytes b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/system/disk_usage_megabytes deleted file mode 100644 index af9a7fbb0aa6c303c0076b133203b1204fd311a0..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727641250954 420032.6 0 diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/system/disk_usage_percentage b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/system/disk_usage_percentage deleted file mode 100644 index 5cece41fc517e7466a84d4f44e68655f9c9ccfe7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/system/disk_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727641250954 82.2 0 diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index c23ca846f63009824488e338fb0cd8fb88c343d7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727641250954 260.2 0 diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/system/gpu_0_memory_usage_percentage b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index cd1088eea251b975b19e799cf666d5c91e14627d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727641250954 12.1 0 diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/system/gpu_0_utilization_percentage b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index 654666eaf19a1479e9e6da95200fa530cbc067e9..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1 +0,0 @@ -1727641250954 11.0 0 diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/system/network_receive_megabytes b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/system/network_receive_megabytes deleted file mode 100644 index 7b7f1f639c917be8c95ca8b96c4cff4815bc77e4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/system/network_receive_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727641250954 0.0 0 diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/system/network_transmit_megabytes b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/system/network_transmit_megabytes deleted file mode 100644 index 7b7f1f639c917be8c95ca8b96c4cff4815bc77e4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727641250954 0.0 0 diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/system/system_memory_usage_megabytes b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index 01ab22869ca1d1feaeac2dabb9fe2b9a3748ed77..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727641250954 10747.6 0 diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/system/system_memory_usage_percentage b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/system/system_memory_usage_percentage deleted file mode 100644 index 1e9ca5f30598480aac02f7358f99d9656626b5f4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727641250954 63.3 0 diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/training_mean_absolute_error b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/training_mean_absolute_error deleted file mode 100644 index ed62ac072600ac4552be610d58e861d464ce3f17..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727641241271 0.4314554749703463 0 diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/training_mean_squared_error b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/training_mean_squared_error deleted file mode 100644 index 69bbd831db9e77aa8424660ccbf9d25ab714477f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727641241271 1.6102412167857991 0 diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/training_r2_score b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/training_r2_score deleted file mode 100644 index 69a86f1afc729a5724eb860de6c756363532f5df..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727641241271 0.9705458310296714 0 diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/training_root_mean_squared_error b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/training_root_mean_squared_error deleted file mode 100644 index 21e51ba28bd71e89b101ea241a69bfff5309d63b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727641241271 1.2689528032144455 0 diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/training_score b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/training_score deleted file mode 100644 index b04d9ee0ec72b074042311bd2a2c1baf486a6e49..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727641241276 0.9705458310296714 0 diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/ccp_alpha b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/criterion b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/max_depth b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/max_depth deleted file mode 100644 index 8e2afd342773582f9484b796cdc0b84736e8194e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -17 \ No newline at end of file diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/max_features b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/max_features deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/max_features +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/max_leaf_nodes b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/min_impurity_decrease b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/min_samples_leaf b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/min_samples_split b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/min_samples_split deleted file mode 100644 index d8263ee9860594d2806b0dfd1bfd17528b0ba2a4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/min_samples_split +++ /dev/null @@ -1 +0,0 @@ -2 \ No newline at end of file diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/min_weight_fraction_leaf b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/monotonic_cst b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/random_state b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/splitter b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/splitter deleted file mode 100644 index e173194bb34f3a5b7fb4ca66c137c36492cdb60e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/params/splitter +++ /dev/null @@ -1 +0,0 @@ -best \ No newline at end of file diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/tags/estimator_class b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/tags/estimator_class deleted file mode 100644 index e049541749d94d9d1c082a3495fc52a31e663a30..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.tree._classes.DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/tags/estimator_name b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/tags/estimator_name deleted file mode 100644 index 133de2e2ca4faccc3c53cd6fc5a81c142569960d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/tags/mlflow.autologging b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/tags/mlflow.autologging deleted file mode 100644 index 044bdd758636edf2ee49b03917cb416d76a71de4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -sklearn \ No newline at end of file diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/tags/mlflow.log-model.history b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/tags/mlflow.log-model.history deleted file mode 100644 index 926333968d28e03661f02d8941d848cc3858af34..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "2e762b8af7f44cbe992719f2db84a6fe", "artifact_path": "model", "utc_time_created": "2024-09-29 20:20:41.434277", "model_uuid": "c35eec65e21d483ab8160eb31f245ed1", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/tags/mlflow.runName b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/tags/mlflow.runName deleted file mode 100644 index 38e2c869baadb4d092481c3e3b647d2a7d70ddfb..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -judicious-hound-816 \ No newline at end of file diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/tags/mlflow.source.git.commit b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/tags/mlflow.source.git.commit deleted file mode 100644 index 38bea58d3eed4194d95922f337daa60cbc044a21..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -da08d56ac3b3131519322c57e8db01547d638865 \ No newline at end of file diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/tags/mlflow.source.name b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/tags/mlflow.source.type b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/tags/mlflow.user b/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/2e762b8af7f44cbe992719f2db84a6fe/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/artifacts/estimator.html b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/artifacts/estimator.html deleted file mode 100644 index 3fc41a3a590b59a9dec14b08bcecb41d251da967..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
DecisionTreeRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/artifacts/model/MLmodel b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/artifacts/model/MLmodel deleted file mode 100644 index 74867f993b416858eb6cab4e28ab4c0472df3123..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.sklearn - model_path: model.pkl - predict_fn: predict - python_version: 3.11.0 - sklearn: - code: null - pickled_model: model.pkl - serialization_format: cloudpickle - sklearn_version: 1.5.2 -mlflow_version: 2.16.2 -model_size_bytes: 550214 -model_uuid: f576fe333cc84bc7a752cebc35bb857b -run_id: 31a67b3aa3c14934967fbe60268a537f -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-29 21:30:11.290414' diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/artifacts/model/conda.yaml b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/artifacts/model/conda.yaml deleted file mode 100644 index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - cloudpickle==3.0.0 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 -name: mlflow-env diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/artifacts/model/model.pkl b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/artifacts/model/model.pkl deleted file mode 100644 index 9b3b592eff076b921155eefa4f6a7ef2112c8313..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f808d090ecf31cbaa063890df5144c205ee913b0a3b37d2f99a17b66dbd436b3 -size 550214 diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/artifacts/model/python_env.yaml b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/artifacts/model/requirements.txt b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/artifacts/model/requirements.txt deleted file mode 100644 index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -cloudpickle==3.0.0 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/inputs/61488a9add0da341318e7cdbd60e0ad8/meta.yaml b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/inputs/61488a9add0da341318e7cdbd60e0ad8/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/inputs/61488a9add0da341318e7cdbd60e0ad8/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/inputs/8a541bef88f3d6e97187679d96da0309/meta.yaml b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/inputs/8a541bef88f3d6e97187679d96da0309/meta.yaml deleted file mode 100644 index 17c34ad08903a4ce3ec908a63642f36f025e6715..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/inputs/8a541bef88f3d6e97187679d96da0309/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: dd4d89a524510f8914834c3bc9cd9e95 -destination_type: RUN -source_id: dd4d89a524510f8914834c3bc9cd9e95 -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/meta.yaml b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/meta.yaml deleted file mode 100644 index 1d40f57769c653258b8c906c72b99f959dd7ffec..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: file:///C:/Users/User/ML4I/air-quality-forecast/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/artifacts -end_time: 1727645419877 -entry_point_name: '' -experiment_id: '831635215727137506' -lifecycle_stage: active -run_id: 31a67b3aa3c14934967fbe60268a537f -run_name: zealous-rook-998 -run_uuid: 31a67b3aa3c14934967fbe60268a537f -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727645408823 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/metrics/training_mean_absolute_error b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/metrics/training_mean_absolute_error deleted file mode 100644 index 7641bfd67f0e008c2fc4e70ec9245ed5538e4ce1..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727645411236 0.03072321914083741 0 diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/metrics/training_mean_squared_error b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/metrics/training_mean_squared_error deleted file mode 100644 index f307953c6c1034f41c41e254a8b24c38377e8176..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727645411236 0.18529091897770525 0 diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/metrics/training_r2_score b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/metrics/training_r2_score deleted file mode 100644 index 40b802d425df52d0b2ee9a43d70ddf93b6d6f810..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727645411236 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/metrics/training_root_mean_squared_error b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/metrics/training_root_mean_squared_error deleted file mode 100644 index 32d4d5c55f1f2566c3f10cb786fb481746423352..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727645411236 0.4304543169462995 0 diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/metrics/training_score b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/metrics/training_score deleted file mode 100644 index 5974b8985b11636609b70e51a3ab1db2e198f53b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727645411239 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/ccp_alpha b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/criterion b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/max_depth b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/max_features b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/max_features deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/max_features +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/max_leaf_nodes b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/min_impurity_decrease b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/min_samples_leaf b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/min_samples_split b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/min_samples_split deleted file mode 100644 index d8263ee9860594d2806b0dfd1bfd17528b0ba2a4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/min_samples_split +++ /dev/null @@ -1 +0,0 @@ -2 \ No newline at end of file diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/min_weight_fraction_leaf b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/monotonic_cst b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/random_state b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/splitter b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/splitter deleted file mode 100644 index e173194bb34f3a5b7fb4ca66c137c36492cdb60e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/params/splitter +++ /dev/null @@ -1 +0,0 @@ -best \ No newline at end of file diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/tags/estimator_class b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/tags/estimator_class deleted file mode 100644 index e049541749d94d9d1c082a3495fc52a31e663a30..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.tree._classes.DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/tags/estimator_name b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/tags/estimator_name deleted file mode 100644 index 133de2e2ca4faccc3c53cd6fc5a81c142569960d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/tags/mlflow.autologging b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/tags/mlflow.autologging deleted file mode 100644 index 044bdd758636edf2ee49b03917cb416d76a71de4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -sklearn \ No newline at end of file diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/tags/mlflow.log-model.history b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/tags/mlflow.log-model.history deleted file mode 100644 index 294da8a2d4258621ed1b7aa22f20f73706d4c415..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "31a67b3aa3c14934967fbe60268a537f", "artifact_path": "model", "utc_time_created": "2024-09-29 21:30:11.290414", "model_uuid": "f576fe333cc84bc7a752cebc35bb857b", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/tags/mlflow.runName b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/tags/mlflow.runName deleted file mode 100644 index f635e4af174361bb21f63d462db16b8795623b47..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -zealous-rook-998 \ No newline at end of file diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/tags/mlflow.source.git.commit b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/tags/mlflow.source.git.commit deleted file mode 100644 index 13593e120ddb8c0612e12480032be1ba081001d6..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -0977a438d571c78eb0abbdcda591bbc53211680a \ No newline at end of file diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/tags/mlflow.source.name b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/tags/mlflow.source.type b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/tags/mlflow.user b/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/31a67b3aa3c14934967fbe60268a537f/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/artifacts/estimator.html b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/artifacts/estimator.html deleted file mode 100644 index 3fc41a3a590b59a9dec14b08bcecb41d251da967..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
DecisionTreeRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/artifacts/model/MLmodel b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/artifacts/model/MLmodel deleted file mode 100644 index 0b0e8e2efdbc5d1185cdb0aa9554c9e0e1a49411..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.sklearn - model_path: model.pkl - predict_fn: predict - python_version: 3.11.0 - sklearn: - code: null - pickled_model: model.pkl - serialization_format: cloudpickle - sklearn_version: 1.5.2 -mlflow_version: 2.16.2 -model_size_bytes: 550214 -model_uuid: 1d0a90ac27514bc1a835bb186a33ad2a -run_id: 44390138286443c89d4aec190792d243 -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-29 20:32:56.124924' diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/artifacts/model/conda.yaml b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/artifacts/model/conda.yaml deleted file mode 100644 index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - cloudpickle==3.0.0 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 -name: mlflow-env diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/artifacts/model/model.pkl b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/artifacts/model/model.pkl deleted file mode 100644 index 86a3491c6d8203b0d2cfec99dfdf419ae6006154..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1f64033c1c049b19c45e25e3d4a4b2cffac4761b7cacd49127eae40e8292777d -size 550214 diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/artifacts/model/python_env.yaml b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/artifacts/model/requirements.txt b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/artifacts/model/requirements.txt deleted file mode 100644 index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -cloudpickle==3.0.0 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/inputs/d2829eba7a701113d5d23c05e38f471a/meta.yaml b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/inputs/d2829eba7a701113d5d23c05e38f471a/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/inputs/d2829eba7a701113d5d23c05e38f471a/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/inputs/d49e66714b53abfcd7a693201403ae0c/meta.yaml b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/inputs/d49e66714b53abfcd7a693201403ae0c/meta.yaml deleted file mode 100644 index 17c34ad08903a4ce3ec908a63642f36f025e6715..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/inputs/d49e66714b53abfcd7a693201403ae0c/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: dd4d89a524510f8914834c3bc9cd9e95 -destination_type: RUN -source_id: dd4d89a524510f8914834c3bc9cd9e95 -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/meta.yaml b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/meta.yaml deleted file mode 100644 index f45a1e7b71961bfbc310c09dc20b0d893a179a99..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: file:///C:/Users/User/ML4I/air-quality-forecast/mlruns/831635215727137506/44390138286443c89d4aec190792d243/artifacts -end_time: 1727641988050 -entry_point_name: '' -experiment_id: '831635215727137506' -lifecycle_stage: active -run_id: 44390138286443c89d4aec190792d243 -run_name: awesome-bee-67 -run_uuid: 44390138286443c89d4aec190792d243 -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727641973732 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/system/cpu_utilization_percentage b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/system/cpu_utilization_percentage deleted file mode 100644 index 8a7d1b29eb062293722a7912be40a4ef427be09d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1 +0,0 @@ -1727641985985 56.4 0 diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/system/disk_available_megabytes b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/system/disk_available_megabytes deleted file mode 100644 index 75161c83b22dc6f1717f0ca78ac72a363c424c1f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/system/disk_available_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727641985985 91039.0 0 diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/system/disk_usage_megabytes b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/system/disk_usage_megabytes deleted file mode 100644 index 84b26bae0a8ce213b2e6722d630f32917f019952..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727641985985 420098.1 0 diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/system/disk_usage_percentage b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/system/disk_usage_percentage deleted file mode 100644 index 7c68c5dece0217f93189fc8a17b83e7cd4b73d95..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/system/disk_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727641985985 82.2 0 diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index 3499aa2133e79c1ca50bde260ce833ae9ea32361..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727641985985 309.8 0 diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/system/gpu_0_memory_usage_percentage b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index 56fe187e67ead48e83ced17a0152bf4ca583908c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727641985985 14.4 0 diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/system/gpu_0_utilization_percentage b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index 955f38ed4954f2d5e42e596e8f7f9bc456788749..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1 +0,0 @@ -1727641985985 0.0 0 diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/system/network_receive_megabytes b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/system/network_receive_megabytes deleted file mode 100644 index 955f38ed4954f2d5e42e596e8f7f9bc456788749..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/system/network_receive_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727641985985 0.0 0 diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/system/network_transmit_megabytes b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/system/network_transmit_megabytes deleted file mode 100644 index 955f38ed4954f2d5e42e596e8f7f9bc456788749..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727641985985 0.0 0 diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/system/system_memory_usage_megabytes b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index 0b544f69cf5a24042a48641345a5a72dc54897ba..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727641985985 11271.3 0 diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/system/system_memory_usage_percentage b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/system/system_memory_usage_percentage deleted file mode 100644 index 54e21ef478d662953e97bc7d7fab9dcee1879602..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727641985985 66.4 0 diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/training_mean_absolute_error b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/training_mean_absolute_error deleted file mode 100644 index 88c9b56a20646700b12abe7581cf424e4f2e9173..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727641976084 0.03969548667754215 0 diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/training_mean_squared_error b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/training_mean_squared_error deleted file mode 100644 index 64dd6c3477094aa4e3313cb068ee98bdf52936fd..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727641976084 0.3667754214246874 0 diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/training_r2_score b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/training_r2_score deleted file mode 100644 index f2791b3f4dd3344f9321e558368de71ee013eeb0..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727641976084 0.9957990578120758 0 diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/training_root_mean_squared_error b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/training_root_mean_squared_error deleted file mode 100644 index fc281db079c387d339f612311cbe9ec12a1eaca6..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727641976084 0.6056198654475325 0 diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/training_score b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/training_score deleted file mode 100644 index d10478bab6aeb5a32eb17c3238d87412c914114a..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727641976086 0.9957990578120758 0 diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/ccp_alpha b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/criterion b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/max_depth b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/max_features b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/max_features deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/max_features +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/max_leaf_nodes b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/min_impurity_decrease b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/min_samples_leaf b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/min_samples_split b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/min_samples_split deleted file mode 100644 index d8263ee9860594d2806b0dfd1bfd17528b0ba2a4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/min_samples_split +++ /dev/null @@ -1 +0,0 @@ -2 \ No newline at end of file diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/min_weight_fraction_leaf b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/monotonic_cst b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/random_state b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/splitter b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/splitter deleted file mode 100644 index e173194bb34f3a5b7fb4ca66c137c36492cdb60e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/params/splitter +++ /dev/null @@ -1 +0,0 @@ -best \ No newline at end of file diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/tags/estimator_class b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/tags/estimator_class deleted file mode 100644 index e049541749d94d9d1c082a3495fc52a31e663a30..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.tree._classes.DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/tags/estimator_name b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/tags/estimator_name deleted file mode 100644 index 133de2e2ca4faccc3c53cd6fc5a81c142569960d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/tags/mlflow.autologging b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/tags/mlflow.autologging deleted file mode 100644 index 044bdd758636edf2ee49b03917cb416d76a71de4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -sklearn \ No newline at end of file diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/tags/mlflow.log-model.history b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/tags/mlflow.log-model.history deleted file mode 100644 index 1cc6c619441ab82049219807f6309fa6a9a80af5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "44390138286443c89d4aec190792d243", "artifact_path": "model", "utc_time_created": "2024-09-29 20:32:56.124924", "model_uuid": "1d0a90ac27514bc1a835bb186a33ad2a", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/tags/mlflow.runName b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/tags/mlflow.runName deleted file mode 100644 index f47b471201f2e28162cae1791502440e8f91c353..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -awesome-bee-67 \ No newline at end of file diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/tags/mlflow.source.git.commit b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/tags/mlflow.source.git.commit deleted file mode 100644 index 38bea58d3eed4194d95922f337daa60cbc044a21..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -da08d56ac3b3131519322c57e8db01547d638865 \ No newline at end of file diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/tags/mlflow.source.name b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/tags/mlflow.source.type b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/tags/mlflow.user b/mlruns/831635215727137506/44390138286443c89d4aec190792d243/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/44390138286443c89d4aec190792d243/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/artifacts/estimator.html b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/artifacts/estimator.html deleted file mode 100644 index 3fc41a3a590b59a9dec14b08bcecb41d251da967..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
DecisionTreeRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/artifacts/model/MLmodel b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/artifacts/model/MLmodel deleted file mode 100644 index 9d21feaf0b10ae473f7af0514221a482f8d3bfcb..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.sklearn - model_path: model.pkl - predict_fn: predict - python_version: 3.11.0 - sklearn: - code: null - pickled_model: model.pkl - serialization_format: cloudpickle - sklearn_version: 1.5.2 -mlflow_version: 2.16.2 -model_size_bytes: 550214 -model_uuid: f28489aa8e4946dbb7153fc3bb92a131 -run_id: 49d1b33045a645f498461518b44fe6ef -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-30 12:06:07.028778' diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/artifacts/model/conda.yaml b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/artifacts/model/conda.yaml deleted file mode 100644 index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - cloudpickle==3.0.0 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 -name: mlflow-env diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/artifacts/model/model.pkl b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/artifacts/model/model.pkl deleted file mode 100644 index 9b3b592eff076b921155eefa4f6a7ef2112c8313..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f808d090ecf31cbaa063890df5144c205ee913b0a3b37d2f99a17b66dbd436b3 -size 550214 diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/artifacts/model/python_env.yaml b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/artifacts/model/requirements.txt b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/artifacts/model/requirements.txt deleted file mode 100644 index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -cloudpickle==3.0.0 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/inputs/0e497971968b89c48b2676f7830391d6/meta.yaml b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/inputs/0e497971968b89c48b2676f7830391d6/meta.yaml deleted file mode 100644 index 17c34ad08903a4ce3ec908a63642f36f025e6715..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/inputs/0e497971968b89c48b2676f7830391d6/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: dd4d89a524510f8914834c3bc9cd9e95 -destination_type: RUN -source_id: dd4d89a524510f8914834c3bc9cd9e95 -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/inputs/679a998d6b8f081a981fdedbf40b5518/meta.yaml b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/inputs/679a998d6b8f081a981fdedbf40b5518/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/inputs/679a998d6b8f081a981fdedbf40b5518/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/meta.yaml b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/meta.yaml deleted file mode 100644 index 5ae7ec2017f293af9cf5c428d6e009fc26db92eb..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: file:///C:/Users/User/ML4I/air-quality-forecast/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/artifacts -end_time: 1727698001468 -entry_point_name: '' -experiment_id: '831635215727137506' -lifecycle_stage: active -run_id: 49d1b33045a645f498461518b44fe6ef -run_name: beautiful-ox-416 -run_uuid: 49d1b33045a645f498461518b44fe6ef -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727697957193 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/system/cpu_utilization_percentage b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/system/cpu_utilization_percentage deleted file mode 100644 index 16a02f915fbb7a7e6ce858fe2af0fd5538067b0c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,3 +0,0 @@ -1727697975711 100.0 0 -1727697986079 100.0 1 -1727697996402 98.5 2 diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/system/disk_available_megabytes b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/system/disk_available_megabytes deleted file mode 100644 index 745c3fec48a9ec05b453b4b8b2865e72e9e2da1d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727697975711 83311.4 0 -1727697986079 83317.6 1 -1727697996402 83316.1 2 diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/system/disk_usage_megabytes b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/system/disk_usage_megabytes deleted file mode 100644 index d190d934ceb8f37d179171c34b4a6c76c64465f4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727697975711 427825.7 0 -1727697986079 427819.5 1 -1727697996402 427821.0 2 diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/system/disk_usage_percentage b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/system/disk_usage_percentage deleted file mode 100644 index 37a6a9c00810172a3f232f6f284a96e16fc962e5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,3 +0,0 @@ -1727697975711 83.7 0 -1727697986079 83.7 1 -1727697996402 83.7 2 diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index 79ed08a536c420014e145b752cd2e838124bed83..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727697975711 298.7 0 -1727697986079 302.4 1 -1727697996402 331.8 2 diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/system/gpu_0_memory_usage_percentage b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index 4aadbb9092b7ca6e6dfe977630c72be2256560e3..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,3 +0,0 @@ -1727697975711 13.9 0 -1727697986079 14.1 1 -1727697996402 15.5 2 diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/system/gpu_0_utilization_percentage b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index 118b661ed22bcafd47e4120f41988db43c672007..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,3 +0,0 @@ -1727697975711 6.0 0 -1727697986079 15.0 1 -1727697996402 15.0 2 diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/system/network_receive_megabytes b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/system/network_receive_megabytes deleted file mode 100644 index 1a2f6607eff2aa801c9a11af3639d060781855ee..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727697975711 0.0 0 -1727697986079 0.05249500000002172 1 -1727697996402 0.07438500000000658 2 diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/system/network_transmit_megabytes b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/system/network_transmit_megabytes deleted file mode 100644 index 7243d8220dbb7e2dcbba0e225a265f1a98ce5f99..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727697975711 0.0 0 -1727697986079 0.018993000000000038 1 -1727697996402 0.03571800000000103 2 diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/system/system_memory_usage_megabytes b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index 3b27c6d9a9b3b1b351e227da63629b315886d820..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727697975711 15888.7 0 -1727697986079 16130.8 1 -1727697996402 16304.4 2 diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/system/system_memory_usage_percentage b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/system/system_memory_usage_percentage deleted file mode 100644 index 189f20e0888e38f208540b2ecd0a883c0258d59e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,3 +0,0 @@ -1727697975711 93.5 0 -1727697986079 95.0 1 -1727697996402 96.0 2 diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/training_mean_absolute_error b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/training_mean_absolute_error deleted file mode 100644 index 7578b9e7dc89a34eda673169eb2ad11fbfee0bb1..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727697966641 0.03072321914083741 0 diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/training_mean_squared_error b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/training_mean_squared_error deleted file mode 100644 index fe78e2fe971555d2b2d45dc0ad2d939bb8b42cf8..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727697966641 0.18529091897770525 0 diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/training_r2_score b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/training_r2_score deleted file mode 100644 index a50bcb9991408073ee625b8967f5cabe2c1353b2..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727697966641 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/training_root_mean_squared_error b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/training_root_mean_squared_error deleted file mode 100644 index d30df908d5112f16c09e6e377c6bbd7c1b5644f7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727697966641 0.4304543169462995 0 diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/training_score b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/training_score deleted file mode 100644 index ea178a1338a031393547f37017bcfc9f5c0f15af..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727697966652 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/ccp_alpha b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/criterion b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/max_depth b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/max_features b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/max_features deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/max_features +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/max_leaf_nodes b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/min_impurity_decrease b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/min_samples_leaf b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/min_samples_split b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/min_samples_split deleted file mode 100644 index d8263ee9860594d2806b0dfd1bfd17528b0ba2a4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/min_samples_split +++ /dev/null @@ -1 +0,0 @@ -2 \ No newline at end of file diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/min_weight_fraction_leaf b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/monotonic_cst b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/random_state b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/splitter b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/splitter deleted file mode 100644 index e173194bb34f3a5b7fb4ca66c137c36492cdb60e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/params/splitter +++ /dev/null @@ -1 +0,0 @@ -best \ No newline at end of file diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/tags/estimator_class b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/tags/estimator_class deleted file mode 100644 index e049541749d94d9d1c082a3495fc52a31e663a30..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.tree._classes.DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/tags/estimator_name b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/tags/estimator_name deleted file mode 100644 index 133de2e2ca4faccc3c53cd6fc5a81c142569960d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/tags/mlflow.autologging b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/tags/mlflow.autologging deleted file mode 100644 index 044bdd758636edf2ee49b03917cb416d76a71de4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -sklearn \ No newline at end of file diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/tags/mlflow.log-model.history b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/tags/mlflow.log-model.history deleted file mode 100644 index e7e991f8e9bceefbb13f1b7e203ec7d9663da39e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "49d1b33045a645f498461518b44fe6ef", "artifact_path": "model", "utc_time_created": "2024-09-30 12:06:07.028778", "model_uuid": "f28489aa8e4946dbb7153fc3bb92a131", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/tags/mlflow.runName b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/tags/mlflow.runName deleted file mode 100644 index 3763ea367200860728609400700a467bc53a4fbd..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -beautiful-ox-416 \ No newline at end of file diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/tags/mlflow.source.git.commit b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/tags/mlflow.source.git.commit deleted file mode 100644 index b9ea510318a74d958a9174bc540d8caf7ea139e5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -2e3cee67a062d9b1790ae929ca7415c02604d303 \ No newline at end of file diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/tags/mlflow.source.name b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/tags/mlflow.source.type b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/tags/mlflow.user b/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/49d1b33045a645f498461518b44fe6ef/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/artifacts/estimator.html b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/artifacts/estimator.html deleted file mode 100644 index 3fc41a3a590b59a9dec14b08bcecb41d251da967..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
DecisionTreeRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/artifacts/model/MLmodel b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/artifacts/model/MLmodel deleted file mode 100644 index 3253f59c7ae08b4627ebc4e2ab034f3593139f88..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.sklearn - model_path: model.pkl - predict_fn: predict - python_version: 3.11.0 - sklearn: - code: null - pickled_model: model.pkl - serialization_format: cloudpickle - sklearn_version: 1.5.2 -mlflow_version: 2.16.2 -model_size_bytes: 550214 -model_uuid: 60e19f115a344668a92b83a917f0cd72 -run_id: 5b2b2ddc9fa543f39debeebdda25937e -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-30 11:57:58.521847' diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/artifacts/model/conda.yaml b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/artifacts/model/conda.yaml deleted file mode 100644 index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - cloudpickle==3.0.0 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 -name: mlflow-env diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/artifacts/model/model.pkl b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/artifacts/model/model.pkl deleted file mode 100644 index 9b3b592eff076b921155eefa4f6a7ef2112c8313..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f808d090ecf31cbaa063890df5144c205ee913b0a3b37d2f99a17b66dbd436b3 -size 550214 diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/artifacts/model/python_env.yaml b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/artifacts/model/requirements.txt b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/artifacts/model/requirements.txt deleted file mode 100644 index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -cloudpickle==3.0.0 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/inputs/9fcec3a812fcd5fc2d2b06d0e7c2bc65/meta.yaml b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/inputs/9fcec3a812fcd5fc2d2b06d0e7c2bc65/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/inputs/9fcec3a812fcd5fc2d2b06d0e7c2bc65/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/inputs/fae141de94e9390b3cccfe565e38c50d/meta.yaml b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/inputs/fae141de94e9390b3cccfe565e38c50d/meta.yaml deleted file mode 100644 index 17c34ad08903a4ce3ec908a63642f36f025e6715..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/inputs/fae141de94e9390b3cccfe565e38c50d/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: dd4d89a524510f8914834c3bc9cd9e95 -destination_type: RUN -source_id: dd4d89a524510f8914834c3bc9cd9e95 -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/meta.yaml b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/meta.yaml deleted file mode 100644 index 3ac90aeccae28de9ff6664e3f265282532f8907e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: file:///C:/Users/User/ML4I/air-quality-forecast/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/artifacts -end_time: 1727697499494 -entry_point_name: '' -experiment_id: '831635215727137506' -lifecycle_stage: active -run_id: 5b2b2ddc9fa543f39debeebdda25937e -run_name: traveling-duck-674 -run_uuid: 5b2b2ddc9fa543f39debeebdda25937e -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727697474469 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/system/cpu_utilization_percentage b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/system/cpu_utilization_percentage deleted file mode 100644 index 4b761b65e1b3d3c61bacf6e4ea8946250f65c808..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,2 +0,0 @@ -1727697488564 90.7 0 -1727697498936 87.4 1 diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/system/disk_available_megabytes b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/system/disk_available_megabytes deleted file mode 100644 index d9536866b23f713f698b74d683b2ee9cc8d881fd..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727697488564 83326.5 0 -1727697498936 83322.3 1 diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/system/disk_usage_megabytes b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/system/disk_usage_megabytes deleted file mode 100644 index a2f98d00f9f26120971d69d560a26471df9b4d6c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727697488564 427810.6 0 -1727697498936 427814.8 1 diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/system/disk_usage_percentage b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/system/disk_usage_percentage deleted file mode 100644 index 33ccdfb0aabdd1a3b01db2e7caee8ff0bf9f27dd..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,2 +0,0 @@ -1727697488564 83.7 0 -1727697498936 83.7 1 diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index d19540b00685151bb73810f765b4fe3aeedebc6b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727697488564 270.1 0 -1727697498936 298.6 1 diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/system/gpu_0_memory_usage_percentage b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index a8a605a8725578a0c6bb2ec3006d1ab83763ac99..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,2 +0,0 @@ -1727697488564 12.6 0 -1727697498936 13.9 1 diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/system/gpu_0_utilization_percentage b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index ba7bc6a5b4d9d05629e1e189794fe93623b1aed8..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,2 +0,0 @@ -1727697488564 7.0 0 -1727697498936 24.0 1 diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/system/network_receive_megabytes b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/system/network_receive_megabytes deleted file mode 100644 index 0468672b92820c194450316e67f5f95c579195c2..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727697488564 0.0 0 -1727697498936 0.012686999999914406 1 diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/system/network_transmit_megabytes b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/system/network_transmit_megabytes deleted file mode 100644 index 4580e463684fc9ca1ee4e5588d1491ec3ac0ef1a..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727697488564 0.00062400000000018 0 -1727697498936 0.006658000000001607 1 diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/system/system_memory_usage_megabytes b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index a096316e3839df8d7b963ab3fc0aa18a23945d53..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727697488564 15449.4 0 -1727697498936 15608.4 1 diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/system/system_memory_usage_percentage b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/system/system_memory_usage_percentage deleted file mode 100644 index 2c7236090abdfcacc27d0958241d4c4d54238ae6..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,2 +0,0 @@ -1727697488564 91.0 0 -1727697498936 91.9 1 diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/training_mean_absolute_error b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/training_mean_absolute_error deleted file mode 100644 index 1b899a2c4ce0a48486f80715df7a2bf3945c902a..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727697478366 0.03072321914083741 0 diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/training_mean_squared_error b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/training_mean_squared_error deleted file mode 100644 index 021d193dcae508585a34c54d493b704f57e97c60..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727697478366 0.18529091897770525 0 diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/training_r2_score b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/training_r2_score deleted file mode 100644 index efbb8d4545d25eb630eec29d03f145c369b0b5c4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727697478366 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/training_root_mean_squared_error b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/training_root_mean_squared_error deleted file mode 100644 index 4145b05e3cc69e9b1ba533170ff73d94bd4f7c7e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727697478366 0.4304543169462995 0 diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/training_score b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/training_score deleted file mode 100644 index 4c51014590b3466ffb4825a9e0f106679427d355..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727697478373 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/ccp_alpha b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/criterion b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/max_depth b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/max_features b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/max_features deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/max_features +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/max_leaf_nodes b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/min_impurity_decrease b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/min_samples_leaf b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/min_samples_split b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/min_samples_split deleted file mode 100644 index d8263ee9860594d2806b0dfd1bfd17528b0ba2a4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/min_samples_split +++ /dev/null @@ -1 +0,0 @@ -2 \ No newline at end of file diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/min_weight_fraction_leaf b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/monotonic_cst b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/random_state b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/splitter b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/splitter deleted file mode 100644 index e173194bb34f3a5b7fb4ca66c137c36492cdb60e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/params/splitter +++ /dev/null @@ -1 +0,0 @@ -best \ No newline at end of file diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/tags/estimator_class b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/tags/estimator_class deleted file mode 100644 index e049541749d94d9d1c082a3495fc52a31e663a30..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.tree._classes.DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/tags/estimator_name b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/tags/estimator_name deleted file mode 100644 index 133de2e2ca4faccc3c53cd6fc5a81c142569960d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/tags/mlflow.autologging b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/tags/mlflow.autologging deleted file mode 100644 index 044bdd758636edf2ee49b03917cb416d76a71de4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -sklearn \ No newline at end of file diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/tags/mlflow.log-model.history b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/tags/mlflow.log-model.history deleted file mode 100644 index 7b2b949c14bc3048a0a11d6e540c5bb1c4d80a11..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "5b2b2ddc9fa543f39debeebdda25937e", "artifact_path": "model", "utc_time_created": "2024-09-30 11:57:58.521847", "model_uuid": "60e19f115a344668a92b83a917f0cd72", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/tags/mlflow.runName b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/tags/mlflow.runName deleted file mode 100644 index 63b7fa64c1cdf798c8ea9601614527b82d85cb3c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -traveling-duck-674 \ No newline at end of file diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/tags/mlflow.source.git.commit b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/tags/mlflow.source.git.commit deleted file mode 100644 index b9ea510318a74d958a9174bc540d8caf7ea139e5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -2e3cee67a062d9b1790ae929ca7415c02604d303 \ No newline at end of file diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/tags/mlflow.source.name b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/tags/mlflow.source.type b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/tags/mlflow.user b/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/5b2b2ddc9fa543f39debeebdda25937e/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/artifacts/estimator.html b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/artifacts/estimator.html deleted file mode 100644 index 3fc41a3a590b59a9dec14b08bcecb41d251da967..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
DecisionTreeRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/artifacts/model/MLmodel b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/artifacts/model/MLmodel deleted file mode 100644 index 02fdf741f8f16ee8d2ff649cab29c566ac05d10a..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.sklearn - model_path: model.pkl - predict_fn: predict - python_version: 3.11.0 - sklearn: - code: null - pickled_model: model.pkl - serialization_format: cloudpickle - sklearn_version: 1.5.2 -mlflow_version: 2.16.2 -model_size_bytes: 550214 -model_uuid: aa012494d3c542af91bac9a8db544781 -run_id: 62278ae48e16447dace88687df13bdfd -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-29 20:30:28.368807' diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/artifacts/model/conda.yaml b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/artifacts/model/conda.yaml deleted file mode 100644 index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - cloudpickle==3.0.0 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 -name: mlflow-env diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/artifacts/model/model.pkl b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/artifacts/model/model.pkl deleted file mode 100644 index f17384b3a9fc16d81c86ff9eff50c52f037a3e8e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:90fc9baabb27d9ac286a168b49fa31bea0a707a5f866a34851aec2337eeeeeee -size 550214 diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/artifacts/model/python_env.yaml b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/artifacts/model/requirements.txt b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/artifacts/model/requirements.txt deleted file mode 100644 index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -cloudpickle==3.0.0 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/inputs/465db9e45d9d786ea85014577f2d5916/meta.yaml b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/inputs/465db9e45d9d786ea85014577f2d5916/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/inputs/465db9e45d9d786ea85014577f2d5916/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/inputs/68477ed5af400e864ab9efa7796245e9/meta.yaml b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/inputs/68477ed5af400e864ab9efa7796245e9/meta.yaml deleted file mode 100644 index 17c34ad08903a4ce3ec908a63642f36f025e6715..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/inputs/68477ed5af400e864ab9efa7796245e9/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: dd4d89a524510f8914834c3bc9cd9e95 -destination_type: RUN -source_id: dd4d89a524510f8914834c3bc9cd9e95 -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/meta.yaml b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/meta.yaml deleted file mode 100644 index b93a803b7fbf20f63fa31069f19ba02b01d7574f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: file:///C:/Users/User/ML4I/air-quality-forecast/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/artifacts -end_time: 1727641837592 -entry_point_name: '' -experiment_id: '831635215727137506' -lifecycle_stage: active -run_id: 62278ae48e16447dace88687df13bdfd -run_name: upset-slug-692 -run_uuid: 62278ae48e16447dace88687df13bdfd -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727641825807 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/metrics/training_mean_absolute_error b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/metrics/training_mean_absolute_error deleted file mode 100644 index 4cf919f950d4b64fdb808db2ccfc30060feb53cf..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727641828325 0.05328983143012508 0 diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/metrics/training_mean_squared_error b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/metrics/training_mean_squared_error deleted file mode 100644 index 828ace80df826e8aa1d09f91c685ddbb67b537a2..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727641828325 0.6014138118542687 0 diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/metrics/training_r2_score b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/metrics/training_r2_score deleted file mode 100644 index a35e9d946a263dc7156f1c0c0f63b65d529aa735..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727641828325 0.9922279906269879 0 diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/metrics/training_root_mean_squared_error b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/metrics/training_root_mean_squared_error deleted file mode 100644 index ce8fde60e87809fc4c769362c091d1fa0e6e394c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727641828325 0.7755087438928517 0 diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/metrics/training_score b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/metrics/training_score deleted file mode 100644 index ba18bd13c6e7f7e2bbab0a5a2473841868f275cb..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727641828327 0.9922279906269879 0 diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/ccp_alpha b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/criterion b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/max_depth b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/max_features b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/max_features deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/max_features +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/max_leaf_nodes b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/min_impurity_decrease b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/min_samples_leaf b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/min_samples_split b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/min_samples_split deleted file mode 100644 index d8263ee9860594d2806b0dfd1bfd17528b0ba2a4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/min_samples_split +++ /dev/null @@ -1 +0,0 @@ -2 \ No newline at end of file diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/min_weight_fraction_leaf b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/monotonic_cst b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/random_state b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/splitter b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/splitter deleted file mode 100644 index e173194bb34f3a5b7fb4ca66c137c36492cdb60e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/params/splitter +++ /dev/null @@ -1 +0,0 @@ -best \ No newline at end of file diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/tags/estimator_class b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/tags/estimator_class deleted file mode 100644 index e049541749d94d9d1c082a3495fc52a31e663a30..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.tree._classes.DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/tags/estimator_name b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/tags/estimator_name deleted file mode 100644 index 133de2e2ca4faccc3c53cd6fc5a81c142569960d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/tags/mlflow.autologging b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/tags/mlflow.autologging deleted file mode 100644 index 044bdd758636edf2ee49b03917cb416d76a71de4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -sklearn \ No newline at end of file diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/tags/mlflow.log-model.history b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/tags/mlflow.log-model.history deleted file mode 100644 index da243902b998b462a67125930ced4a531311f592..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "62278ae48e16447dace88687df13bdfd", "artifact_path": "model", "utc_time_created": "2024-09-29 20:30:28.368807", "model_uuid": "aa012494d3c542af91bac9a8db544781", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/tags/mlflow.runName b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/tags/mlflow.runName deleted file mode 100644 index c232789c2a5cc3e07832b394fb864b5e7e247881..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -upset-slug-692 \ No newline at end of file diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/tags/mlflow.source.git.commit b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/tags/mlflow.source.git.commit deleted file mode 100644 index 38bea58d3eed4194d95922f337daa60cbc044a21..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -da08d56ac3b3131519322c57e8db01547d638865 \ No newline at end of file diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/tags/mlflow.source.name b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/tags/mlflow.source.type b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/tags/mlflow.user b/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/62278ae48e16447dace88687df13bdfd/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/artifacts/estimator.html b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/artifacts/estimator.html deleted file mode 100644 index 3fc41a3a590b59a9dec14b08bcecb41d251da967..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
DecisionTreeRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/artifacts/model/MLmodel b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/artifacts/model/MLmodel deleted file mode 100644 index 65a8ffbffe8bcd971af5abbfb4481687e39a4a02..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.sklearn - model_path: model.pkl - predict_fn: predict - python_version: 3.11.0 - sklearn: - code: null - pickled_model: model.pkl - serialization_format: cloudpickle - sklearn_version: 1.5.2 -mlflow_version: 2.16.2 -model_size_bytes: 550214 -model_uuid: b9c26e2707b04fa3847959d3bb53ea3a -run_id: 6b40a86c2f544fbd854d6307ce148da8 -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-29 20:25:19.605423' diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/artifacts/model/conda.yaml b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/artifacts/model/conda.yaml deleted file mode 100644 index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - cloudpickle==3.0.0 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 -name: mlflow-env diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/artifacts/model/model.pkl b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/artifacts/model/model.pkl deleted file mode 100644 index 343368d0622c120ee65bc986c047b3c662323a22..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0a7e6d68f1409ab76a59a25bfd7fe1562a5e91259afaa1b469885516de900000 -size 550214 diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/artifacts/model/python_env.yaml b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/artifacts/model/requirements.txt b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/artifacts/model/requirements.txt deleted file mode 100644 index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -cloudpickle==3.0.0 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/inputs/7bae44c1a4b9d3bceeb6848ee2595841/meta.yaml b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/inputs/7bae44c1a4b9d3bceeb6848ee2595841/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/inputs/7bae44c1a4b9d3bceeb6848ee2595841/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/inputs/b6e47fe9da2b85f26cc6c7040967e7c4/meta.yaml b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/inputs/b6e47fe9da2b85f26cc6c7040967e7c4/meta.yaml deleted file mode 100644 index 17c34ad08903a4ce3ec908a63642f36f025e6715..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/inputs/b6e47fe9da2b85f26cc6c7040967e7c4/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: dd4d89a524510f8914834c3bc9cd9e95 -destination_type: RUN -source_id: dd4d89a524510f8914834c3bc9cd9e95 -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/meta.yaml b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/meta.yaml deleted file mode 100644 index e42e1ce3ea1893b45a8f24fd400f2747f9ea694c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: file:///C:/Users/User/ML4I/air-quality-forecast/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/artifacts -end_time: 1727641528473 -entry_point_name: '' -experiment_id: '831635215727137506' -lifecycle_stage: active -run_id: 6b40a86c2f544fbd854d6307ce148da8 -run_name: glamorous-crab-909 -run_uuid: 6b40a86c2f544fbd854d6307ce148da8 -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727641517233 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/metrics/training_mean_absolute_error b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/metrics/training_mean_absolute_error deleted file mode 100644 index 9611cc2cb0486c2b1888f44563d741884916372a..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727641519569 0.033374116367591085 0 diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/metrics/training_mean_squared_error b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/metrics/training_mean_squared_error deleted file mode 100644 index 93cefcdeb79b270804ba65cd21635c2398e04f63..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727641519569 0.22804513322457856 0 diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/metrics/training_r2_score b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/metrics/training_r2_score deleted file mode 100644 index d27bd5da81b134507b483be032358658c4825698..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727641519569 0.9969374628203612 0 diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/metrics/training_root_mean_squared_error b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/metrics/training_root_mean_squared_error deleted file mode 100644 index d736a33f2b2bcf76b784ed34ded1393069182463..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727641519569 0.4775407136826959 0 diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/metrics/training_score b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/metrics/training_score deleted file mode 100644 index 092b14c5159834d456a7ebdd76120a83188ca92b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727641519570 0.9969374628203612 0 diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/ccp_alpha b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/criterion b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/max_depth b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/max_features b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/max_features deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/max_features +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/max_leaf_nodes b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/min_impurity_decrease b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/min_samples_leaf b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/min_samples_split b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/min_samples_split deleted file mode 100644 index d8263ee9860594d2806b0dfd1bfd17528b0ba2a4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/min_samples_split +++ /dev/null @@ -1 +0,0 @@ -2 \ No newline at end of file diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/min_weight_fraction_leaf b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/monotonic_cst b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/random_state b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/splitter b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/splitter deleted file mode 100644 index e173194bb34f3a5b7fb4ca66c137c36492cdb60e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/params/splitter +++ /dev/null @@ -1 +0,0 @@ -best \ No newline at end of file diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/tags/estimator_class b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/tags/estimator_class deleted file mode 100644 index e049541749d94d9d1c082a3495fc52a31e663a30..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.tree._classes.DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/tags/estimator_name b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/tags/estimator_name deleted file mode 100644 index 133de2e2ca4faccc3c53cd6fc5a81c142569960d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/tags/mlflow.autologging b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/tags/mlflow.autologging deleted file mode 100644 index 044bdd758636edf2ee49b03917cb416d76a71de4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -sklearn \ No newline at end of file diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/tags/mlflow.log-model.history b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/tags/mlflow.log-model.history deleted file mode 100644 index e93fde4117b99a462897911b10b3d08b32239824..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "6b40a86c2f544fbd854d6307ce148da8", "artifact_path": "model", "utc_time_created": "2024-09-29 20:25:19.605423", "model_uuid": "b9c26e2707b04fa3847959d3bb53ea3a", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/tags/mlflow.runName b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/tags/mlflow.runName deleted file mode 100644 index 52d3bc2854c18d88da7e86c6491c2eb996e8c291..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -glamorous-crab-909 \ No newline at end of file diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/tags/mlflow.source.git.commit b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/tags/mlflow.source.git.commit deleted file mode 100644 index 38bea58d3eed4194d95922f337daa60cbc044a21..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -da08d56ac3b3131519322c57e8db01547d638865 \ No newline at end of file diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/tags/mlflow.source.name b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/tags/mlflow.source.type b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/tags/mlflow.user b/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6b40a86c2f544fbd854d6307ce148da8/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/artifacts/estimator.html b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/artifacts/estimator.html deleted file mode 100644 index 3fc41a3a590b59a9dec14b08bcecb41d251da967..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
DecisionTreeRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/artifacts/model/MLmodel b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/artifacts/model/MLmodel deleted file mode 100644 index 6b825d6f15f1416f70dc890836b3e90c8fa9a99c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.sklearn - model_path: model.pkl - predict_fn: predict - python_version: 3.11.0 - sklearn: - code: null - pickled_model: model.pkl - serialization_format: cloudpickle - sklearn_version: 1.5.2 -mlflow_version: 2.16.2 -model_size_bytes: 550214 -model_uuid: 72d98bbf18634cf9ac88375acc0ad2f8 -run_id: 6c145fd0bdb34882adf24ae3a34d652a -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-30 13:16:14.575082' diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/artifacts/model/conda.yaml b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/artifacts/model/conda.yaml deleted file mode 100644 index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - cloudpickle==3.0.0 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 -name: mlflow-env diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/artifacts/model/model.pkl b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/artifacts/model/model.pkl deleted file mode 100644 index 9b3b592eff076b921155eefa4f6a7ef2112c8313..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f808d090ecf31cbaa063890df5144c205ee913b0a3b37d2f99a17b66dbd436b3 -size 550214 diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/artifacts/model/python_env.yaml b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/artifacts/model/requirements.txt b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/artifacts/model/requirements.txt deleted file mode 100644 index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -cloudpickle==3.0.0 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/inputs/9e714b165b5a0c934ea302e8534890af/meta.yaml b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/inputs/9e714b165b5a0c934ea302e8534890af/meta.yaml deleted file mode 100644 index 17c34ad08903a4ce3ec908a63642f36f025e6715..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/inputs/9e714b165b5a0c934ea302e8534890af/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: dd4d89a524510f8914834c3bc9cd9e95 -destination_type: RUN -source_id: dd4d89a524510f8914834c3bc9cd9e95 -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/inputs/b4664c382735670ad883f195ab555c0c/meta.yaml b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/inputs/b4664c382735670ad883f195ab555c0c/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/inputs/b4664c382735670ad883f195ab555c0c/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/meta.yaml b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/meta.yaml deleted file mode 100644 index f11854edfde6147ff08373d288e79d74ca071518..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: file:///C:/Users/User/ML4I/air-quality-forecast/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/artifacts -end_time: 1727702200049 -entry_point_name: '' -experiment_id: '831635215727137506' -lifecycle_stage: active -run_id: 6c145fd0bdb34882adf24ae3a34d652a -run_name: kindly-toad-194 -run_uuid: 6c145fd0bdb34882adf24ae3a34d652a -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727702169976 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/system/cpu_utilization_percentage b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/system/cpu_utilization_percentage deleted file mode 100644 index 2faa41e4ba9cd05d2c936294bfa1d0d6874da8dd..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,2 +0,0 @@ -1727702183974 97.1 0 -1727702194755 76.4 1 diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/system/disk_available_megabytes b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/system/disk_available_megabytes deleted file mode 100644 index 8ead9264480c695b909e381eb352e090d186ffdf..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727702183974 83160.3 0 -1727702194755 83153.3 1 diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/system/disk_usage_megabytes b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/system/disk_usage_megabytes deleted file mode 100644 index 8802d74f1d4fef20b729b003704d1a2a6c484a82..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727702183974 427976.8 0 -1727702194755 427983.8 1 diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/system/disk_usage_percentage b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/system/disk_usage_percentage deleted file mode 100644 index 82b6eb41a7f58ff7448bdede9e134dc0530dd2b3..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,2 +0,0 @@ -1727702183974 83.7 0 -1727702194755 83.7 1 diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index ce8760824c9deeebd1062d1b80c3ed8d3c08e672..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727702183974 158.1 0 -1727702194755 152.2 1 diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/system/gpu_0_memory_usage_percentage b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index d7189e6b4c42b4965385d9e999c6d143d3b4ee91..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,2 +0,0 @@ -1727702183974 7.4 0 -1727702194755 7.1 1 diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/system/gpu_0_utilization_percentage b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index 3afaa8951b9ae0ad98952516b24dd4debc8aa31b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,2 +0,0 @@ -1727702183974 0.0 0 -1727702194755 6.0 1 diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/system/network_receive_megabytes b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/system/network_receive_megabytes deleted file mode 100644 index e5f7ec8d3b953a2f43a2365ba1d2b35be596ccda..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727702183974 0.0 0 -1727702194755 0.06517999999994117 1 diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/system/network_transmit_megabytes b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/system/network_transmit_megabytes deleted file mode 100644 index 65cb183b64aca4ba807226268f7b2b1c7d6fecfa..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727702183974 0.0 0 -1727702194755 0.011445999999992296 1 diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/system/system_memory_usage_megabytes b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index 595e0425ed3eb6ae004975de5b25395be7014f3e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727702183974 14495.3 0 -1727702194755 14595.2 1 diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/system/system_memory_usage_percentage b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/system/system_memory_usage_percentage deleted file mode 100644 index c3403b7d5cd515e4f7b58791a215734f50f7f09f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,2 +0,0 @@ -1727702183974 85.3 0 -1727702194755 85.9 1 diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/training_mean_absolute_error b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/training_mean_absolute_error deleted file mode 100644 index 8299471d75c5d77ab309f38ff8e995803d7283d5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727702174393 0.03072321914083741 0 diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/training_mean_squared_error b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/training_mean_squared_error deleted file mode 100644 index 3574f0f4e22510a15cf8a6269112bf49e3634adb..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727702174393 0.18529091897770525 0 diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/training_r2_score b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/training_r2_score deleted file mode 100644 index 74a9bada6061ffad95883193e00021a85436d52d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727702174393 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/training_root_mean_squared_error b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/training_root_mean_squared_error deleted file mode 100644 index 49e5df847ae94ee703bb9bbf5212407f6c9ee9f7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727702174393 0.4304543169462995 0 diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/training_score b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/training_score deleted file mode 100644 index ee253fb6d8c7d14d0c5435efaf6eb17fa5fe54f4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727702174400 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/ccp_alpha b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/criterion b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/max_depth b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/max_features b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/max_features deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/max_features +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/max_leaf_nodes b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/min_impurity_decrease b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/min_samples_leaf b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/min_samples_split b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/min_samples_split deleted file mode 100644 index d8263ee9860594d2806b0dfd1bfd17528b0ba2a4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/min_samples_split +++ /dev/null @@ -1 +0,0 @@ -2 \ No newline at end of file diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/min_weight_fraction_leaf b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/monotonic_cst b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/random_state b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/splitter b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/splitter deleted file mode 100644 index e173194bb34f3a5b7fb4ca66c137c36492cdb60e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/params/splitter +++ /dev/null @@ -1 +0,0 @@ -best \ No newline at end of file diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/tags/estimator_class b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/tags/estimator_class deleted file mode 100644 index e049541749d94d9d1c082a3495fc52a31e663a30..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.tree._classes.DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/tags/estimator_name b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/tags/estimator_name deleted file mode 100644 index 133de2e2ca4faccc3c53cd6fc5a81c142569960d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/tags/mlflow.autologging b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/tags/mlflow.autologging deleted file mode 100644 index 044bdd758636edf2ee49b03917cb416d76a71de4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -sklearn \ No newline at end of file diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/tags/mlflow.log-model.history b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/tags/mlflow.log-model.history deleted file mode 100644 index 1442153af913a34e211ea1f6244349009dc89f1b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "6c145fd0bdb34882adf24ae3a34d652a", "artifact_path": "model", "utc_time_created": "2024-09-30 13:16:14.575082", "model_uuid": "72d98bbf18634cf9ac88375acc0ad2f8", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/tags/mlflow.runName b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/tags/mlflow.runName deleted file mode 100644 index 081a3c2f44870ff715fb27937eb3b84e131cbe5c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -kindly-toad-194 \ No newline at end of file diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/tags/mlflow.source.git.commit b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/tags/mlflow.source.git.commit deleted file mode 100644 index b9ea510318a74d958a9174bc540d8caf7ea139e5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -2e3cee67a062d9b1790ae929ca7415c02604d303 \ No newline at end of file diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/tags/mlflow.source.name b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/tags/mlflow.source.type b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/tags/mlflow.user b/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/6c145fd0bdb34882adf24ae3a34d652a/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/831635215727137506/722e3047d1d3463187d243131d940827/meta.yaml b/mlruns/831635215727137506/722e3047d1d3463187d243131d940827/meta.yaml deleted file mode 100644 index 201cea698ee39ba55d57668af213014f359cc65d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/722e3047d1d3463187d243131d940827/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: file:///C:/Users/User/ML4I/air-quality-forecast/mlruns/831635215727137506/722e3047d1d3463187d243131d940827/artifacts -end_time: null -entry_point_name: '' -experiment_id: '831635215727137506' -lifecycle_stage: active -run_id: 722e3047d1d3463187d243131d940827 -run_name: Bayesian_Optimization_Training_and_Eval -run_uuid: 722e3047d1d3463187d243131d940827 -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727713010949 -status: 1 -tags: [] -user_id: User diff --git a/mlruns/831635215727137506/722e3047d1d3463187d243131d940827/tags/mlflow.runName b/mlruns/831635215727137506/722e3047d1d3463187d243131d940827/tags/mlflow.runName deleted file mode 100644 index 39c57e5e2445a0b5c78f476020799ebb5c99fb29..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/722e3047d1d3463187d243131d940827/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -Bayesian_Optimization_Training_and_Eval \ No newline at end of file diff --git a/mlruns/831635215727137506/722e3047d1d3463187d243131d940827/tags/mlflow.source.git.commit b/mlruns/831635215727137506/722e3047d1d3463187d243131d940827/tags/mlflow.source.git.commit deleted file mode 100644 index b9ea510318a74d958a9174bc540d8caf7ea139e5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/722e3047d1d3463187d243131d940827/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -2e3cee67a062d9b1790ae929ca7415c02604d303 \ No newline at end of file diff --git a/mlruns/831635215727137506/722e3047d1d3463187d243131d940827/tags/mlflow.source.name b/mlruns/831635215727137506/722e3047d1d3463187d243131d940827/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/722e3047d1d3463187d243131d940827/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/831635215727137506/722e3047d1d3463187d243131d940827/tags/mlflow.source.type b/mlruns/831635215727137506/722e3047d1d3463187d243131d940827/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/722e3047d1d3463187d243131d940827/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/831635215727137506/722e3047d1d3463187d243131d940827/tags/mlflow.user b/mlruns/831635215727137506/722e3047d1d3463187d243131d940827/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/722e3047d1d3463187d243131d940827/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/artifacts/estimator.html b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/artifacts/estimator.html deleted file mode 100644 index 3fc41a3a590b59a9dec14b08bcecb41d251da967..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
DecisionTreeRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/artifacts/model/MLmodel b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/artifacts/model/MLmodel deleted file mode 100644 index 2c7952088345b2edae7b7ba5ef826529aa1d9625..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.sklearn - model_path: model.pkl - predict_fn: predict - python_version: 3.11.0 - sklearn: - code: null - pickled_model: model.pkl - serialization_format: cloudpickle - sklearn_version: 1.5.2 -mlflow_version: 2.16.2 -model_size_bytes: 550214 -model_uuid: 8ef2ebb996ef4c889f5857bc6b4326b3 -run_id: 7515dde82fe846b6ab05dc6463461186 -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-29 22:04:33.365729' diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/artifacts/model/conda.yaml b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/artifacts/model/conda.yaml deleted file mode 100644 index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - cloudpickle==3.0.0 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 -name: mlflow-env diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/artifacts/model/model.pkl b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/artifacts/model/model.pkl deleted file mode 100644 index 9b3b592eff076b921155eefa4f6a7ef2112c8313..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f808d090ecf31cbaa063890df5144c205ee913b0a3b37d2f99a17b66dbd436b3 -size 550214 diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/artifacts/model/python_env.yaml b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/artifacts/model/requirements.txt b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/artifacts/model/requirements.txt deleted file mode 100644 index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -cloudpickle==3.0.0 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/inputs/791ed2e88a48097a458b15c89c9bc29a/meta.yaml b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/inputs/791ed2e88a48097a458b15c89c9bc29a/meta.yaml deleted file mode 100644 index 17c34ad08903a4ce3ec908a63642f36f025e6715..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/inputs/791ed2e88a48097a458b15c89c9bc29a/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: dd4d89a524510f8914834c3bc9cd9e95 -destination_type: RUN -source_id: dd4d89a524510f8914834c3bc9cd9e95 -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/inputs/bcb17f8cd5aa5b0b308a49f85a446485/meta.yaml b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/inputs/bcb17f8cd5aa5b0b308a49f85a446485/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/inputs/bcb17f8cd5aa5b0b308a49f85a446485/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/meta.yaml b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/meta.yaml deleted file mode 100644 index f2361dd376f33b886100044b33076770bd2a0a75..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: file:///C:/Users/User/ML4I/air-quality-forecast/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/artifacts -end_time: 1727647483362 -entry_point_name: '' -experiment_id: '831635215727137506' -lifecycle_stage: active -run_id: 7515dde82fe846b6ab05dc6463461186 -run_name: thoughtful-shrimp-16 -run_uuid: 7515dde82fe846b6ab05dc6463461186 -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727647469564 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/system/cpu_utilization_percentage b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/system/cpu_utilization_percentage deleted file mode 100644 index cd68487afd8fc80ce2b392cba45f927796978f6d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1 +0,0 @@ -1727647483141 86.5 0 diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/system/disk_available_megabytes b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/system/disk_available_megabytes deleted file mode 100644 index 8a6471309e2afbcb4d53ef9c767428ba85919c48..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/system/disk_available_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727647483141 91085.5 0 diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/system/disk_usage_megabytes b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/system/disk_usage_megabytes deleted file mode 100644 index 0ceb06293d728526450b5b180d69ff00eba3ce3e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727647483141 420051.6 0 diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/system/disk_usage_percentage b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/system/disk_usage_percentage deleted file mode 100644 index 542a2da743444d8fec34657cd9859db601e9c35e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/system/disk_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727647483141 82.2 0 diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index 1fb9d5823159df99938b35e876bac7ce0a9212dd..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727647483141 447.3 0 diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/system/gpu_0_memory_usage_percentage b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index 9316ae57c9058f9df15f7ef0cd2cedf47275a5a5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727647483141 20.8 0 diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/system/gpu_0_utilization_percentage b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index 1630199d2a71a48947f29969075034e1a8b9c5c3..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1 +0,0 @@ -1727647483141 2.0 0 diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/system/network_receive_megabytes b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/system/network_receive_megabytes deleted file mode 100644 index 49d880299d97d6727555c8649726361ea04cdb98..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/system/network_receive_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727647483141 0.0 0 diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/system/network_transmit_megabytes b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/system/network_transmit_megabytes deleted file mode 100644 index 49d880299d97d6727555c8649726361ea04cdb98..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727647483141 0.0 0 diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/system/system_memory_usage_megabytes b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index c50770dc433b79cec5ce9f734d4757a27a6bed14..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727647483141 11356.6 0 diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/system/system_memory_usage_percentage b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/system/system_memory_usage_percentage deleted file mode 100644 index 3091bc01ced914f96b56ad0238288c65acfc09d5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727647483141 66.9 0 diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/training_mean_absolute_error b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/training_mean_absolute_error deleted file mode 100644 index 34cf733d3e150796c9d15b85595577747f5853ee..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727647473293 0.03072321914083741 0 diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/training_mean_squared_error b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/training_mean_squared_error deleted file mode 100644 index ebb0e24425621cc77d1d645f8b3d5de403391453..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727647473293 0.18529091897770525 0 diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/training_r2_score b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/training_r2_score deleted file mode 100644 index 476b4ae1c6c1e12734852575805bf78ebdd5a384..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727647473293 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/training_root_mean_squared_error b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/training_root_mean_squared_error deleted file mode 100644 index 7a2a57a3b14c3e71e5cc29f5084cda2080fb4d64..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727647473293 0.4304543169462995 0 diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/training_score b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/training_score deleted file mode 100644 index 54f462f23b2d6fe156a8539082306d04ebf62d53..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727647473295 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/ccp_alpha b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/criterion b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/max_depth b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/max_features b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/max_features deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/max_features +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/max_leaf_nodes b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/min_impurity_decrease b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/min_samples_leaf b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/min_samples_split b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/min_samples_split deleted file mode 100644 index d8263ee9860594d2806b0dfd1bfd17528b0ba2a4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/min_samples_split +++ /dev/null @@ -1 +0,0 @@ -2 \ No newline at end of file diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/min_weight_fraction_leaf b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/monotonic_cst b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/random_state b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/splitter b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/splitter deleted file mode 100644 index e173194bb34f3a5b7fb4ca66c137c36492cdb60e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/params/splitter +++ /dev/null @@ -1 +0,0 @@ -best \ No newline at end of file diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/tags/estimator_class b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/tags/estimator_class deleted file mode 100644 index e049541749d94d9d1c082a3495fc52a31e663a30..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.tree._classes.DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/tags/estimator_name b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/tags/estimator_name deleted file mode 100644 index 133de2e2ca4faccc3c53cd6fc5a81c142569960d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/tags/mlflow.autologging b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/tags/mlflow.autologging deleted file mode 100644 index 044bdd758636edf2ee49b03917cb416d76a71de4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -sklearn \ No newline at end of file diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/tags/mlflow.log-model.history b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/tags/mlflow.log-model.history deleted file mode 100644 index ec3a3e9c3b641701ea1594ee36b5dfe8cd31f854..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "7515dde82fe846b6ab05dc6463461186", "artifact_path": "model", "utc_time_created": "2024-09-29 22:04:33.365729", "model_uuid": "8ef2ebb996ef4c889f5857bc6b4326b3", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/tags/mlflow.runName b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/tags/mlflow.runName deleted file mode 100644 index 305a9676866f752acda0a6dada64181093a54c04..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -thoughtful-shrimp-16 \ No newline at end of file diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/tags/mlflow.source.git.commit b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/tags/mlflow.source.git.commit deleted file mode 100644 index 6a04567d482b95da916b8765e0e8616fdd6b913f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -50f51da8088aa9c4731e2604257dd2f36c417b5d \ No newline at end of file diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/tags/mlflow.source.name b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/tags/mlflow.source.type b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/tags/mlflow.user b/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/7515dde82fe846b6ab05dc6463461186/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/artifacts/model/conda.yaml b/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/artifacts/model/conda.yaml deleted file mode 100644 index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - cloudpickle==3.0.0 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 -name: mlflow-env diff --git a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/artifacts/model/model.pkl b/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/artifacts/model/model.pkl deleted file mode 100644 index 7e2e5e1b8e80794c224aa74818ba247d042d525d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3e0578f4feea893f53868f2297b67c7c386911215335217a623fba062919fcd5 -size 550266 diff --git a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/artifacts/model/python_env.yaml b/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/artifacts/model/requirements.txt b/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/artifacts/model/requirements.txt deleted file mode 100644 index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -cloudpickle==3.0.0 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file diff --git a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/meta.yaml b/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/meta.yaml deleted file mode 100644 index 73491e77be25e87937267f019e2b5c547da6997a..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: file:///C:/Users/User/ML4I/air-quality-forecast/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/artifacts -end_time: 1727712446570 -entry_point_name: '' -experiment_id: '831635215727137506' -lifecycle_stage: active -run_id: 8cc9781598d84654855dfc9b4457710b -run_name: Bayesian_Optimization_and_Eval -run_uuid: 8cc9781598d84654855dfc9b4457710b -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727712432823 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/system/cpu_utilization_percentage b/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/system/cpu_utilization_percentage deleted file mode 100644 index 4392de9ba7c62c30e13b3a4dec9fad433453c703..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1 +0,0 @@ -1727712443362 87.0 0 diff --git a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/system/disk_available_megabytes b/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/system/disk_available_megabytes deleted file mode 100644 index e313ad66aa442b85637d03fe825ef2ead59efaab..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/system/disk_available_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727712443362 83117.2 0 diff --git a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/system/disk_usage_megabytes b/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/system/disk_usage_megabytes deleted file mode 100644 index 70ff5b73da452371ed16882b1071849cf3224080..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727712443362 428019.9 0 diff --git a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/system/disk_usage_percentage b/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/system/disk_usage_percentage deleted file mode 100644 index 70e8904845c40bc2fad31a516bc28b1e86494cb0..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/system/disk_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727712443362 83.7 0 diff --git a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index 012693c2cb875465c27a178264849613283b1424..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727712443362 251.2 0 diff --git a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/system/gpu_0_memory_usage_percentage b/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index 05d71fbfee18b4d0d138196e7d4db9cee5c78d9e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727712443362 11.7 0 diff --git a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/system/gpu_0_utilization_percentage b/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index 28a2559e2b6bb3d36b1c949b55ea4e3c7cb8c98b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1 +0,0 @@ -1727712443362 17.0 0 diff --git a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/system/network_receive_megabytes b/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/system/network_receive_megabytes deleted file mode 100644 index 0444ca8b6a1c5c1c2ce804d6cec3fd6382cf420b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/system/network_receive_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727712443362 0.0012230000000013064 0 diff --git a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/system/network_transmit_megabytes b/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/system/network_transmit_megabytes deleted file mode 100644 index 229f1edcb9895144f3da1ff14e3aa37cf21c33e5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727712443362 0.0 0 diff --git a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/system/system_memory_usage_megabytes b/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index cbffb9151a0ec2687c4c31b10491efcf0ae43d37..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727712443362 16543.3 0 diff --git a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/system/system_memory_usage_percentage b/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/system/system_memory_usage_percentage deleted file mode 100644 index 36a34a95be54c4ccb22d7100a889fd0a3a9637d2..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727712443362 97.4 0 diff --git a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/test_mse b/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/test_mse deleted file mode 100644 index d4d7c5546f830a99b4184520f7e9e7a166ceccb7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/test_mse +++ /dev/null @@ -1 +0,0 @@ -1727712433746 68.4960392902408 0 diff --git a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/test_rmse b/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/test_rmse deleted file mode 100644 index 049f9a166252f78a696b43831fff442742a8e388..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/metrics/test_rmse +++ /dev/null @@ -1 +0,0 @@ -1727712433800 7.797716661543197 0 diff --git a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/tags/mlflow.log-model.history b/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/tags/mlflow.log-model.history deleted file mode 100644 index 8b4d13850d49a95ff0fc50f8668e4bafdf22fc59..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "8cc9781598d84654855dfc9b4457710b", "artifact_path": "model", "utc_time_created": "2024-09-30 16:07:13.840378", "model_uuid": "f2a32e597bba4a82b776405f69e63a69", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/tags/mlflow.runName b/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/tags/mlflow.runName deleted file mode 100644 index 0a543536bfdc22059fc5afc9c8848751ac9721ff..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -Bayesian_Optimization_and_Eval \ No newline at end of file diff --git a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/tags/mlflow.source.git.commit b/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/tags/mlflow.source.git.commit deleted file mode 100644 index b9ea510318a74d958a9174bc540d8caf7ea139e5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -2e3cee67a062d9b1790ae929ca7415c02604d303 \ No newline at end of file diff --git a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/tags/mlflow.source.name b/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/tags/mlflow.source.type b/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/tags/mlflow.user b/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/artifacts/estimator.html b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/artifacts/estimator.html deleted file mode 100644 index 3fc41a3a590b59a9dec14b08bcecb41d251da967..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
DecisionTreeRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/artifacts/model/MLmodel b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/artifacts/model/MLmodel deleted file mode 100644 index c649370d10b9828fb4bdd3f776334c6e223d0170..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.sklearn - model_path: model.pkl - predict_fn: predict - python_version: 3.11.0 - sklearn: - code: null - pickled_model: model.pkl - serialization_format: cloudpickle - sklearn_version: 1.5.2 -mlflow_version: 2.16.2 -model_size_bytes: 550214 -model_uuid: 359b0a0b0b0d4ce4a943c0b716c6118a -run_id: 8eed428a7a4648f4b9096b275ad4853e -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-30 13:17:57.035478' diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/artifacts/model/conda.yaml b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/artifacts/model/conda.yaml deleted file mode 100644 index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - cloudpickle==3.0.0 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 -name: mlflow-env diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/artifacts/model/model.pkl b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/artifacts/model/model.pkl deleted file mode 100644 index 9b3b592eff076b921155eefa4f6a7ef2112c8313..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f808d090ecf31cbaa063890df5144c205ee913b0a3b37d2f99a17b66dbd436b3 -size 550214 diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/artifacts/model/python_env.yaml b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/artifacts/model/requirements.txt b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/artifacts/model/requirements.txt deleted file mode 100644 index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -cloudpickle==3.0.0 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/inputs/91e7bbc39c99e312c5857447c58092f9/meta.yaml b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/inputs/91e7bbc39c99e312c5857447c58092f9/meta.yaml deleted file mode 100644 index 17c34ad08903a4ce3ec908a63642f36f025e6715..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/inputs/91e7bbc39c99e312c5857447c58092f9/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: dd4d89a524510f8914834c3bc9cd9e95 -destination_type: RUN -source_id: dd4d89a524510f8914834c3bc9cd9e95 -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/inputs/cf407e3a6a577b825595db9e8ff33598/meta.yaml b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/inputs/cf407e3a6a577b825595db9e8ff33598/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/inputs/cf407e3a6a577b825595db9e8ff33598/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/meta.yaml b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/meta.yaml deleted file mode 100644 index 1cc40c5c2b03f3ccb7f3f1292de902b757ea97a8..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: file:///C:/Users/User/ML4I/air-quality-forecast/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/artifacts -end_time: 1727702292074 -entry_point_name: '' -experiment_id: '831635215727137506' -lifecycle_stage: active -run_id: 8eed428a7a4648f4b9096b275ad4853e -run_name: magnificent-pig-241 -run_uuid: 8eed428a7a4648f4b9096b275ad4853e -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727702272213 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/system/cpu_utilization_percentage b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/system/cpu_utilization_percentage deleted file mode 100644 index 3ea08a8ad60431249cf95fc5533ecdcf1af031a8..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1 +0,0 @@ -1727702286715 91.5 0 diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/system/disk_available_megabytes b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/system/disk_available_megabytes deleted file mode 100644 index 9861938207314b0d74f5cbfa26a1d22a80f6aa6c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/system/disk_available_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727702286715 83167.3 0 diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/system/disk_usage_megabytes b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/system/disk_usage_megabytes deleted file mode 100644 index 99dbf0e66c8d97c0600a144fc8bda3751a2da70e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727702286715 427969.8 0 diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/system/disk_usage_percentage b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/system/disk_usage_percentage deleted file mode 100644 index 0478be913a738079f55f45f9c42271315767b1c3..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/system/disk_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727702286715 83.7 0 diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index ea550ab2b2627922892330a8323bf4b4f09afcc0..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727702286715 193.7 0 diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/system/gpu_0_memory_usage_percentage b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index 3f6a42144ddc9d2f51a2d4cb680d7d5fa1faa116..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727702286715 9.0 0 diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/system/gpu_0_utilization_percentage b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index 09c0b2c02cbbe1710c01fe44d9d8317d35e91917..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1 +0,0 @@ -1727702286715 0.0 0 diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/system/network_receive_megabytes b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/system/network_receive_megabytes deleted file mode 100644 index 17880d4e727d3b0cd05d60603f07f986a2fba3d7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/system/network_receive_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727702286715 6.599999994705286e-05 0 diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/system/network_transmit_megabytes b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/system/network_transmit_megabytes deleted file mode 100644 index a2dcc881ee460c79cbd69d2c9ad12fb9da503fc0..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727702286715 0.0018979999999970687 0 diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/system/system_memory_usage_megabytes b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index 2d2564a3e023562582d1e74bd8872631c227cb77..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727702286715 15199.1 0 diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/system/system_memory_usage_percentage b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/system/system_memory_usage_percentage deleted file mode 100644 index efb5d7ede8564917dc773a1a4d64c4b259113578..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727702286715 89.5 0 diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/training_mean_absolute_error b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/training_mean_absolute_error deleted file mode 100644 index 766a76d7b32dbabd12da0cc952b02cf2722055ee..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727702276950 0.03072321914083741 0 diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/training_mean_squared_error b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/training_mean_squared_error deleted file mode 100644 index c6d52f4c8ace09b1cd0597a5cc6fb09449d617b9..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727702276950 0.18529091897770525 0 diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/training_r2_score b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/training_r2_score deleted file mode 100644 index 6321aca6c5debf477c36a72302d0f73ce43fae33..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727702276950 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/training_root_mean_squared_error b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/training_root_mean_squared_error deleted file mode 100644 index 968e4549fc2143389d6cdc1849c0dd03d99d25d1..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727702276950 0.4304543169462995 0 diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/training_score b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/training_score deleted file mode 100644 index f17fbc15d0f95e66f65fa4cef9e75447e22392f8..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727702276952 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/ccp_alpha b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/criterion b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/max_depth b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/max_features b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/max_features deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/max_features +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/max_leaf_nodes b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/min_impurity_decrease b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/min_samples_leaf b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/min_samples_split b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/min_samples_split deleted file mode 100644 index d8263ee9860594d2806b0dfd1bfd17528b0ba2a4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/min_samples_split +++ /dev/null @@ -1 +0,0 @@ -2 \ No newline at end of file diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/min_weight_fraction_leaf b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/monotonic_cst b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/random_state b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/splitter b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/splitter deleted file mode 100644 index e173194bb34f3a5b7fb4ca66c137c36492cdb60e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/params/splitter +++ /dev/null @@ -1 +0,0 @@ -best \ No newline at end of file diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/tags/estimator_class b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/tags/estimator_class deleted file mode 100644 index e049541749d94d9d1c082a3495fc52a31e663a30..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.tree._classes.DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/tags/estimator_name b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/tags/estimator_name deleted file mode 100644 index 133de2e2ca4faccc3c53cd6fc5a81c142569960d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/tags/mlflow.autologging b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/tags/mlflow.autologging deleted file mode 100644 index 044bdd758636edf2ee49b03917cb416d76a71de4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -sklearn \ No newline at end of file diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/tags/mlflow.log-model.history b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/tags/mlflow.log-model.history deleted file mode 100644 index 1889d5ebda49a1f773f8ebec37eb55a913b3a6d5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "8eed428a7a4648f4b9096b275ad4853e", "artifact_path": "model", "utc_time_created": "2024-09-30 13:17:57.035478", "model_uuid": "359b0a0b0b0d4ce4a943c0b716c6118a", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/tags/mlflow.runName b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/tags/mlflow.runName deleted file mode 100644 index 4d85a6f52f815b9e4f4e69d02542119d8d5244f6..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -magnificent-pig-241 \ No newline at end of file diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/tags/mlflow.source.git.commit b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/tags/mlflow.source.git.commit deleted file mode 100644 index b9ea510318a74d958a9174bc540d8caf7ea139e5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -2e3cee67a062d9b1790ae929ca7415c02604d303 \ No newline at end of file diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/tags/mlflow.source.name b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/tags/mlflow.source.type b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/tags/mlflow.user b/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/8eed428a7a4648f4b9096b275ad4853e/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/artifacts/estimator.html b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/artifacts/estimator.html deleted file mode 100644 index 3fc41a3a590b59a9dec14b08bcecb41d251da967..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
DecisionTreeRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/artifacts/model/MLmodel b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/artifacts/model/MLmodel deleted file mode 100644 index 446f47fc4f44ebd5aeeca661783ccd7f87b9ed42..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.sklearn - model_path: model.pkl - predict_fn: predict - python_version: 3.11.0 - sklearn: - code: null - pickled_model: model.pkl - serialization_format: cloudpickle - sklearn_version: 1.5.2 -mlflow_version: 2.16.2 -model_size_bytes: 550214 -model_uuid: a65ad35a2802443089c9fe38ec875a90 -run_id: b156c9422edb47189a8c674377894450 -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-30 13:11:35.103504' diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/artifacts/model/conda.yaml b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/artifacts/model/conda.yaml deleted file mode 100644 index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - cloudpickle==3.0.0 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 -name: mlflow-env diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/artifacts/model/model.pkl b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/artifacts/model/model.pkl deleted file mode 100644 index 9b3b592eff076b921155eefa4f6a7ef2112c8313..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f808d090ecf31cbaa063890df5144c205ee913b0a3b37d2f99a17b66dbd436b3 -size 550214 diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/artifacts/model/python_env.yaml b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/artifacts/model/requirements.txt b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/artifacts/model/requirements.txt deleted file mode 100644 index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -cloudpickle==3.0.0 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/inputs/d07fcbd862d2174457a804274fbedf9a/meta.yaml b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/inputs/d07fcbd862d2174457a804274fbedf9a/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/inputs/d07fcbd862d2174457a804274fbedf9a/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/inputs/f1269a429d88b2741cdc054bf479f5ab/meta.yaml b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/inputs/f1269a429d88b2741cdc054bf479f5ab/meta.yaml deleted file mode 100644 index 17c34ad08903a4ce3ec908a63642f36f025e6715..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/inputs/f1269a429d88b2741cdc054bf479f5ab/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: dd4d89a524510f8914834c3bc9cd9e95 -destination_type: RUN -source_id: dd4d89a524510f8914834c3bc9cd9e95 -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/meta.yaml b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/meta.yaml deleted file mode 100644 index 8bb4f36427d75a482be2909d6dcbd23029fa0463..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: file:///C:/Users/User/ML4I/air-quality-forecast/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/artifacts -end_time: 1727701964263 -entry_point_name: '' -experiment_id: '831635215727137506' -lifecycle_stage: active -run_id: b156c9422edb47189a8c674377894450 -run_name: resilient-fly-307 -run_uuid: b156c9422edb47189a8c674377894450 -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727701889512 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/system/cpu_utilization_percentage b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/system/cpu_utilization_percentage deleted file mode 100644 index b0b20f3399ebc6402b5ea5b49e563dae291224a6..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,5 +0,0 @@ -1727701903364 99.1 0 -1727701917862 70.8 1 -1727701928223 70.1 2 -1727701939709 82.0 3 -1727701960625 99.3 4 diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/system/disk_available_megabytes b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/system/disk_available_megabytes deleted file mode 100644 index a9cbac7f70ad707d25f19c002627bec139e85af3..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,5 +0,0 @@ -1727701903364 83037.1 0 -1727701917862 83038.9 1 -1727701928223 83043.0 2 -1727701939709 83043.8 3 -1727701960625 83043.3 4 diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/system/disk_usage_megabytes b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/system/disk_usage_megabytes deleted file mode 100644 index a5c882912f3d968929d778d5733bbc4fdc1b0766..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,5 +0,0 @@ -1727701903364 428100.0 0 -1727701917862 428098.2 1 -1727701928223 428094.1 2 -1727701939709 428093.3 3 -1727701960625 428093.8 4 diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/system/disk_usage_percentage b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/system/disk_usage_percentage deleted file mode 100644 index 667d4b19154d3d059887cae8d7f6cac398bfa856..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,5 +0,0 @@ -1727701903364 83.8 0 -1727701917862 83.8 1 -1727701928223 83.8 2 -1727701939709 83.8 3 -1727701960625 83.8 4 diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index 1547eb1f05884b08f6d8978ed6ee34745b77462b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,5 +0,0 @@ -1727701903364 222.1 0 -1727701917862 202.5 1 -1727701928223 189.4 2 -1727701939709 197.9 3 -1727701960625 251.0 4 diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/system/gpu_0_memory_usage_percentage b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index ac0ec8ceb8ab4f727b1e66afb5532ec0d921fe26..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,5 +0,0 @@ -1727701903364 10.3 0 -1727701917862 9.4 1 -1727701928223 8.8 2 -1727701939709 9.2 3 -1727701960625 11.7 4 diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/system/gpu_0_utilization_percentage b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index 21f4f4ee7c52ff98cb0e1bceab4a39b7648eed0e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,5 +0,0 @@ -1727701903364 16.0 0 -1727701917862 0.0 1 -1727701928223 0.0 2 -1727701939709 0.0 3 -1727701960625 13.0 4 diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/system/network_receive_megabytes b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/system/network_receive_megabytes deleted file mode 100644 index 8cb8fa4c5b11f456bddc43b30fb7f0e69d772895..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,5 +0,0 @@ -1727701903364 0.0 0 -1727701917862 0.06129099999998289 1 -1727701928223 0.06274200000007113 2 -1727701939709 0.27211099999999533 3 -1727701960625 0.29095300000005864 4 diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/system/network_transmit_megabytes b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/system/network_transmit_megabytes deleted file mode 100644 index 3d259d2ca83e27e37fa947165d5eec52ea0b459a..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,5 +0,0 @@ -1727701903364 0.0 0 -1727701917862 0.05474099999999993 1 -1727701928223 0.05743400000000065 2 -1727701939709 0.1307210000000012 3 -1727701960625 0.14208700000000007 4 diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/system/system_memory_usage_megabytes b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index 2040b787cf1dbced5d04a6cdab8f669b6c4e926c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,5 +0,0 @@ -1727701903364 16706.7 0 -1727701917862 16327.5 1 -1727701928223 16439.2 2 -1727701939709 16576.3 3 -1727701960625 16627.0 4 diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/system/system_memory_usage_percentage b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/system/system_memory_usage_percentage deleted file mode 100644 index d20d460571d2e2fa8da6979f8797130d24696152..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,5 +0,0 @@ -1727701903364 98.4 0 -1727701917862 96.1 1 -1727701928223 96.8 2 -1727701939709 97.6 3 -1727701960625 97.9 4 diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/training_mean_absolute_error b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/training_mean_absolute_error deleted file mode 100644 index 820b98b3c26f30b1a8eacfa19a2b5f3834f7e00d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727701893919 0.03072321914083741 0 diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/training_mean_squared_error b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/training_mean_squared_error deleted file mode 100644 index 5fa2188863caba2e32012264a0276d09cae0ffe8..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727701893919 0.18529091897770525 0 diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/training_r2_score b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/training_r2_score deleted file mode 100644 index 25dde726187fabd611eaab7eb2117b162baff7d6..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727701893919 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/training_root_mean_squared_error b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/training_root_mean_squared_error deleted file mode 100644 index 9f02fa766ec917d3c21bbd8ddaf76b03994fd641..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727701893919 0.4304543169462995 0 diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/training_score b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/training_score deleted file mode 100644 index d64fa4bfedf0615fbad966a733fddd0d2e7ecb73..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727701893926 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/ccp_alpha b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/criterion b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/max_depth b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/max_features b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/max_features deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/max_features +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/max_leaf_nodes b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/min_impurity_decrease b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/min_samples_leaf b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/min_samples_split b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/min_samples_split deleted file mode 100644 index d8263ee9860594d2806b0dfd1bfd17528b0ba2a4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/min_samples_split +++ /dev/null @@ -1 +0,0 @@ -2 \ No newline at end of file diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/min_weight_fraction_leaf b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/monotonic_cst b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/random_state b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/splitter b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/splitter deleted file mode 100644 index e173194bb34f3a5b7fb4ca66c137c36492cdb60e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/params/splitter +++ /dev/null @@ -1 +0,0 @@ -best \ No newline at end of file diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/tags/estimator_class b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/tags/estimator_class deleted file mode 100644 index e049541749d94d9d1c082a3495fc52a31e663a30..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.tree._classes.DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/tags/estimator_name b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/tags/estimator_name deleted file mode 100644 index 133de2e2ca4faccc3c53cd6fc5a81c142569960d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/tags/mlflow.autologging b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/tags/mlflow.autologging deleted file mode 100644 index 044bdd758636edf2ee49b03917cb416d76a71de4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -sklearn \ No newline at end of file diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/tags/mlflow.log-model.history b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/tags/mlflow.log-model.history deleted file mode 100644 index 6dc3c0c48a5a58cb4d87d8877879d08dd6a3b830..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "b156c9422edb47189a8c674377894450", "artifact_path": "model", "utc_time_created": "2024-09-30 13:11:35.103504", "model_uuid": "a65ad35a2802443089c9fe38ec875a90", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/tags/mlflow.runName b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/tags/mlflow.runName deleted file mode 100644 index 017ebb8714de6b77980974f5c4440b675fab0354..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -resilient-fly-307 \ No newline at end of file diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/tags/mlflow.source.git.commit b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/tags/mlflow.source.git.commit deleted file mode 100644 index b9ea510318a74d958a9174bc540d8caf7ea139e5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -2e3cee67a062d9b1790ae929ca7415c02604d303 \ No newline at end of file diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/tags/mlflow.source.name b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/tags/mlflow.source.type b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/tags/mlflow.user b/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b156c9422edb47189a8c674377894450/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/artifacts/estimator.html b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/artifacts/estimator.html deleted file mode 100644 index 3fc41a3a590b59a9dec14b08bcecb41d251da967..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
DecisionTreeRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/artifacts/model/MLmodel b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/artifacts/model/MLmodel deleted file mode 100644 index e30b02664d502e5644480ea999a73f53d0480e66..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.sklearn - model_path: model.pkl - predict_fn: predict - python_version: 3.11.0 - sklearn: - code: null - pickled_model: model.pkl - serialization_format: cloudpickle - sklearn_version: 1.5.2 -mlflow_version: 2.16.2 -model_size_bytes: 550214 -model_uuid: 8022b987ba2c424e9b30704a861e64f1 -run_id: b58d348a6f074108a3646d217fa82ce2 -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-30 12:11:15.752178' diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/artifacts/model/conda.yaml b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/artifacts/model/conda.yaml deleted file mode 100644 index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - cloudpickle==3.0.0 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 -name: mlflow-env diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/artifacts/model/model.pkl b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/artifacts/model/model.pkl deleted file mode 100644 index 9b3b592eff076b921155eefa4f6a7ef2112c8313..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f808d090ecf31cbaa063890df5144c205ee913b0a3b37d2f99a17b66dbd436b3 -size 550214 diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/artifacts/model/python_env.yaml b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/artifacts/model/requirements.txt b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/artifacts/model/requirements.txt deleted file mode 100644 index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -cloudpickle==3.0.0 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/inputs/89b9b4c5cde84e64b93a76e7e2b74d23/meta.yaml b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/inputs/89b9b4c5cde84e64b93a76e7e2b74d23/meta.yaml deleted file mode 100644 index 17c34ad08903a4ce3ec908a63642f36f025e6715..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/inputs/89b9b4c5cde84e64b93a76e7e2b74d23/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: dd4d89a524510f8914834c3bc9cd9e95 -destination_type: RUN -source_id: dd4d89a524510f8914834c3bc9cd9e95 -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/inputs/8e6d1c4169ca62c76fce6c7f6e52d893/meta.yaml b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/inputs/8e6d1c4169ca62c76fce6c7f6e52d893/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/inputs/8e6d1c4169ca62c76fce6c7f6e52d893/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/meta.yaml b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/meta.yaml deleted file mode 100644 index a89c5281bdc6bef12ba80335748f3d0ded1dcae0..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: file:///C:/Users/User/ML4I/air-quality-forecast/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/artifacts -end_time: 1727698312877 -entry_point_name: '' -experiment_id: '831635215727137506' -lifecycle_stage: active -run_id: b58d348a6f074108a3646d217fa82ce2 -run_name: gifted-mink-919 -run_uuid: b58d348a6f074108a3646d217fa82ce2 -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727698267913 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/system/cpu_utilization_percentage b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/system/cpu_utilization_percentage deleted file mode 100644 index fa59e1205720289fba7eac2c96daa9fa79662b0f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,3 +0,0 @@ -1727698285277 99.9 0 -1727698295582 99.4 1 -1727698305827 96.6 2 diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/system/disk_available_megabytes b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/system/disk_available_megabytes deleted file mode 100644 index a68d9c335577e43539f7bfeccc2a39b881334f92..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727698285277 83304.4 0 -1727698295582 83302.8 1 -1727698305827 83303.4 2 diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/system/disk_usage_megabytes b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/system/disk_usage_megabytes deleted file mode 100644 index 4c4b086125c02abf78f5030cfeffe585bf17b597..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727698285277 427832.7 0 -1727698295582 427834.2 1 -1727698305827 427833.7 2 diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/system/disk_usage_percentage b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/system/disk_usage_percentage deleted file mode 100644 index 640befef7af26cede81a767dcb54abe738f3e785..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,3 +0,0 @@ -1727698285277 83.7 0 -1727698295582 83.7 1 -1727698305827 83.7 2 diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index 0fa6ca0394cb691eacb6d8099a4bb9f5cc199fc0..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727698285277 287.3 0 -1727698295582 283.8 1 -1727698305827 258.4 2 diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/system/gpu_0_memory_usage_percentage b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index 6cf55792076ac840a2a03885d90b8b2687011a8f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,3 +0,0 @@ -1727698285277 13.4 0 -1727698295582 13.2 1 -1727698305827 12.0 2 diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/system/gpu_0_utilization_percentage b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index 9daff4fa9b9833d7399e4f5e908989ffca0e9fc7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,3 +0,0 @@ -1727698285277 4.0 0 -1727698295582 8.0 1 -1727698305827 29.0 2 diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/system/network_receive_megabytes b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/system/network_receive_megabytes deleted file mode 100644 index 70193304054491f7e165b19f2519f293446f9c07..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727698285277 0.0 0 -1727698295582 0.006646000000046115 1 -1727698305827 0.03916700000002038 2 diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/system/network_transmit_megabytes b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/system/network_transmit_megabytes deleted file mode 100644 index 4e686ba43b37bdcc1cc8c2a8f9b77db75e247ff4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727698285277 0.0 0 -1727698295582 0.010483999999999938 1 -1727698305827 0.016510000000000247 2 diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/system/system_memory_usage_megabytes b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index 783a2c3eaf442f9600262ff71d2b628d1eb06f4a..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727698285277 16621.5 0 -1727698295582 16704.5 1 -1727698305827 16682.0 2 diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/system/system_memory_usage_percentage b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/system/system_memory_usage_percentage deleted file mode 100644 index dca8c15e12ab265c47ec0b636778803b9e9273e4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,3 +0,0 @@ -1727698285277 97.9 0 -1727698295582 98.3 1 -1727698305827 98.2 2 diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/training_mean_absolute_error b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/training_mean_absolute_error deleted file mode 100644 index 991fcf64272aebfeb3b5d1b07bcc524a1c4590e5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727698275570 0.03072321914083741 0 diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/training_mean_squared_error b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/training_mean_squared_error deleted file mode 100644 index 32d5c1b61e837c5d19f0cd1859093ce47fd87383..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727698275570 0.18529091897770525 0 diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/training_r2_score b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/training_r2_score deleted file mode 100644 index 09055ea1d15edbe1a5a9041d3b084cb56297eef4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727698275570 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/training_root_mean_squared_error b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/training_root_mean_squared_error deleted file mode 100644 index b1af540ad28064eb21d46e28dcd1251466eeb4f6..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727698275570 0.4304543169462995 0 diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/training_score b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/training_score deleted file mode 100644 index aef2eaab84511682577db725d76d0f48ce3bb017..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727698275577 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/ccp_alpha b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/criterion b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/max_depth b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/max_features b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/max_features deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/max_features +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/max_leaf_nodes b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/min_impurity_decrease b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/min_samples_leaf b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/min_samples_split b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/min_samples_split deleted file mode 100644 index d8263ee9860594d2806b0dfd1bfd17528b0ba2a4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/min_samples_split +++ /dev/null @@ -1 +0,0 @@ -2 \ No newline at end of file diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/min_weight_fraction_leaf b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/monotonic_cst b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/random_state b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/splitter b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/splitter deleted file mode 100644 index e173194bb34f3a5b7fb4ca66c137c36492cdb60e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/params/splitter +++ /dev/null @@ -1 +0,0 @@ -best \ No newline at end of file diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/tags/estimator_class b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/tags/estimator_class deleted file mode 100644 index e049541749d94d9d1c082a3495fc52a31e663a30..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.tree._classes.DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/tags/estimator_name b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/tags/estimator_name deleted file mode 100644 index 133de2e2ca4faccc3c53cd6fc5a81c142569960d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/tags/mlflow.autologging b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/tags/mlflow.autologging deleted file mode 100644 index 044bdd758636edf2ee49b03917cb416d76a71de4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -sklearn \ No newline at end of file diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/tags/mlflow.log-model.history b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/tags/mlflow.log-model.history deleted file mode 100644 index 3afe74bd1687752f53e4fc42d2bd219f45e07ce3..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "b58d348a6f074108a3646d217fa82ce2", "artifact_path": "model", "utc_time_created": "2024-09-30 12:11:15.752178", "model_uuid": "8022b987ba2c424e9b30704a861e64f1", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/tags/mlflow.runName b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/tags/mlflow.runName deleted file mode 100644 index 6ba32a11f34c3211faed84429cad3b4eb3b02515..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -gifted-mink-919 \ No newline at end of file diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/tags/mlflow.source.git.commit b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/tags/mlflow.source.git.commit deleted file mode 100644 index b9ea510318a74d958a9174bc540d8caf7ea139e5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -2e3cee67a062d9b1790ae929ca7415c02604d303 \ No newline at end of file diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/tags/mlflow.source.name b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/tags/mlflow.source.type b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/tags/mlflow.user b/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b58d348a6f074108a3646d217fa82ce2/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/artifacts/estimator.html b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/artifacts/estimator.html deleted file mode 100644 index 3fc41a3a590b59a9dec14b08bcecb41d251da967..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
DecisionTreeRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/artifacts/model/MLmodel b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/artifacts/model/MLmodel deleted file mode 100644 index 855e79daef5f901ee3bed83f6fca83ce88d4d4e2..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.sklearn - model_path: model.pkl - predict_fn: predict - python_version: 3.11.0 - sklearn: - code: null - pickled_model: model.pkl - serialization_format: cloudpickle - sklearn_version: 1.5.2 -mlflow_version: 2.16.2 -model_size_bytes: 550214 -model_uuid: c2bc8f0e39dd4459b82225b822533fe6 -run_id: b5c9ec28a72e4fce991abb23407e5f1b -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-29 23:11:47.906837' diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/artifacts/model/conda.yaml b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/artifacts/model/conda.yaml deleted file mode 100644 index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - cloudpickle==3.0.0 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 -name: mlflow-env diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/artifacts/model/model.pkl b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/artifacts/model/model.pkl deleted file mode 100644 index 9b3b592eff076b921155eefa4f6a7ef2112c8313..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f808d090ecf31cbaa063890df5144c205ee913b0a3b37d2f99a17b66dbd436b3 -size 550214 diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/artifacts/model/python_env.yaml b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/artifacts/model/requirements.txt b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/artifacts/model/requirements.txt deleted file mode 100644 index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -cloudpickle==3.0.0 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/inputs/268c372ed9a654a845dec3c3208e20f2/meta.yaml b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/inputs/268c372ed9a654a845dec3c3208e20f2/meta.yaml deleted file mode 100644 index 17c34ad08903a4ce3ec908a63642f36f025e6715..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/inputs/268c372ed9a654a845dec3c3208e20f2/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: dd4d89a524510f8914834c3bc9cd9e95 -destination_type: RUN -source_id: dd4d89a524510f8914834c3bc9cd9e95 -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/inputs/b2b33ae00d1f62d1ba8998eb5f3ce642/meta.yaml b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/inputs/b2b33ae00d1f62d1ba8998eb5f3ce642/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/inputs/b2b33ae00d1f62d1ba8998eb5f3ce642/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/meta.yaml b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/meta.yaml deleted file mode 100644 index 861b8c0ed4a64fb6d19f6e0ff76c5ed8a4ce7a22..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: file:///C:/Users/User/ML4I/air-quality-forecast/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/artifacts -end_time: 1727651579550 -entry_point_name: '' -experiment_id: '831635215727137506' -lifecycle_stage: active -run_id: b5c9ec28a72e4fce991abb23407e5f1b -run_name: nimble-robin-910 -run_uuid: b5c9ec28a72e4fce991abb23407e5f1b -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727651496991 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/system/cpu_utilization_percentage b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/system/cpu_utilization_percentage deleted file mode 100644 index 04b00204e52fe889d2a1f9d2c6fdb3de7eb37756..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,6 +0,0 @@ -1727651517197 99.9 0 -1727651527533 99.8 1 -1727651537952 99.9 2 -1727651548195 99.9 3 -1727651558368 99.9 4 -1727651571370 69.3 5 diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/system/disk_available_megabytes b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/system/disk_available_megabytes deleted file mode 100644 index db80a2628ec563d739072f8fe077dfb13c02eeba..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,6 +0,0 @@ -1727651517197 80713.3 0 -1727651527533 80716.7 1 -1727651537952 80709.0 2 -1727651548195 80699.8 3 -1727651558368 80692.1 4 -1727651571370 80689.5 5 diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/system/disk_usage_megabytes b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/system/disk_usage_megabytes deleted file mode 100644 index 1110a74e33ea94145ffde0e7605708bfe33a50e7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,6 +0,0 @@ -1727651517197 430423.8 0 -1727651527533 430420.4 1 -1727651537952 430428.1 2 -1727651548195 430437.3 3 -1727651558368 430445.0 4 -1727651571370 430447.6 5 diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/system/disk_usage_percentage b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/system/disk_usage_percentage deleted file mode 100644 index b066edcd38256220a61eabc47c56e424a1005726..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,6 +0,0 @@ -1727651517197 84.2 0 -1727651527533 84.2 1 -1727651537952 84.2 2 -1727651548195 84.2 3 -1727651558368 84.2 4 -1727651571370 84.2 5 diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index b904875a048aa015b01d0f5ab643a3565ef10112..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,6 +0,0 @@ -1727651517197 190.9 0 -1727651527533 187.8 1 -1727651537952 226.5 2 -1727651548195 212.2 3 -1727651558368 177.6 4 -1727651571370 193.5 5 diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/system/gpu_0_memory_usage_percentage b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index eef0ae8b47269a967a22aec2662935ef4bde082f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,6 +0,0 @@ -1727651517197 8.9 0 -1727651527533 8.7 1 -1727651537952 10.5 2 -1727651548195 9.9 3 -1727651558368 8.3 4 -1727651571370 9.0 5 diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/system/gpu_0_utilization_percentage b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index 7af255a4abfa612fcc03eff58bc8135b414bcac8..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,6 +0,0 @@ -1727651517197 14.0 0 -1727651527533 20.0 1 -1727651537952 23.0 2 -1727651548195 17.0 3 -1727651558368 0.0 4 -1727651571370 0.0 5 diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/system/network_receive_megabytes b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/system/network_receive_megabytes deleted file mode 100644 index 33d7df6bb60e3135c78cc185f5ff2d639581ce72..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,6 +0,0 @@ -1727651517197 0.0005590000000665896 0 -1727651527533 0.08160499999996773 1 -1727651537952 0.09924999999998363 2 -1727651548195 0.1012070000000449 3 -1727651558368 0.41190400000004956 4 -1727651571370 0.43014000000005126 5 diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/system/network_transmit_megabytes b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/system/network_transmit_megabytes deleted file mode 100644 index f468cb8f385af7b187e11bfe40339d5b4deb6f36..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,6 +0,0 @@ -1727651517197 0.00039799999998990643 0 -1727651527533 0.06054000000000315 1 -1727651537952 0.07431900000000269 2 -1727651548195 0.07542399999999816 3 -1727651558368 0.141208000000006 4 -1727651571370 0.15601599999999394 5 diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/system/system_memory_usage_megabytes b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index 11f23d704ee2eb4518b9d5a429ca984b29c47f8a..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,6 +0,0 @@ -1727651517197 15815.2 0 -1727651527533 16031.4 1 -1727651537952 16229.8 2 -1727651548195 16279.1 3 -1727651558368 16353.2 4 -1727651571370 16257.2 5 diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/system/system_memory_usage_percentage b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/system/system_memory_usage_percentage deleted file mode 100644 index 9d5de0140b9a6f1d06427ee904e02f34344a160b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,6 +0,0 @@ -1727651517197 93.1 0 -1727651527533 94.4 1 -1727651537952 95.6 2 -1727651548195 95.8 3 -1727651558368 96.3 4 -1727651571370 95.7 5 diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/training_mean_absolute_error b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/training_mean_absolute_error deleted file mode 100644 index f15fbf632403442a44d3cbe9e69fd00332dcaeb0..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727651507678 0.03072321914083741 0 diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/training_mean_squared_error b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/training_mean_squared_error deleted file mode 100644 index aee80e3f3740e276f9df40e804161d4c0de38266..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727651507678 0.18529091897770525 0 diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/training_r2_score b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/training_r2_score deleted file mode 100644 index abfd0e626e8de39dbf6cb7cb3054e50c4fc12ade..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727651507678 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/training_root_mean_squared_error b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/training_root_mean_squared_error deleted file mode 100644 index d32169f9d19db14b21c3b6428a2feb8d6f7cbb32..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727651507678 0.4304543169462995 0 diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/training_score b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/training_score deleted file mode 100644 index 9648bf3e406a5f0b1c81d16d383f99ef04512183..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727651507687 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/ccp_alpha b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/criterion b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/max_depth b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/max_features b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/max_features deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/max_features +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/max_leaf_nodes b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/min_impurity_decrease b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/min_samples_leaf b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/min_samples_split b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/min_samples_split deleted file mode 100644 index d8263ee9860594d2806b0dfd1bfd17528b0ba2a4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/min_samples_split +++ /dev/null @@ -1 +0,0 @@ -2 \ No newline at end of file diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/min_weight_fraction_leaf b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/monotonic_cst b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/random_state b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/splitter b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/splitter deleted file mode 100644 index e173194bb34f3a5b7fb4ca66c137c36492cdb60e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/params/splitter +++ /dev/null @@ -1 +0,0 @@ -best \ No newline at end of file diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/tags/estimator_class b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/tags/estimator_class deleted file mode 100644 index e049541749d94d9d1c082a3495fc52a31e663a30..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.tree._classes.DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/tags/estimator_name b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/tags/estimator_name deleted file mode 100644 index 133de2e2ca4faccc3c53cd6fc5a81c142569960d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/tags/mlflow.autologging b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/tags/mlflow.autologging deleted file mode 100644 index 044bdd758636edf2ee49b03917cb416d76a71de4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -sklearn \ No newline at end of file diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/tags/mlflow.log-model.history b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/tags/mlflow.log-model.history deleted file mode 100644 index df8522ba214a60d0bd7c018042b86d36ecac3d0c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "b5c9ec28a72e4fce991abb23407e5f1b", "artifact_path": "model", "utc_time_created": "2024-09-29 23:11:47.906837", "model_uuid": "c2bc8f0e39dd4459b82225b822533fe6", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/tags/mlflow.runName b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/tags/mlflow.runName deleted file mode 100644 index 7cd4179c91d30c465acb657f96fa0d9c12b7358e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -nimble-robin-910 \ No newline at end of file diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/tags/mlflow.source.git.commit b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/tags/mlflow.source.git.commit deleted file mode 100644 index b9ea510318a74d958a9174bc540d8caf7ea139e5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -2e3cee67a062d9b1790ae929ca7415c02604d303 \ No newline at end of file diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/tags/mlflow.source.name b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/tags/mlflow.source.type b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/tags/mlflow.user b/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b5c9ec28a72e4fce991abb23407e5f1b/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/artifacts/estimator.html b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/artifacts/estimator.html deleted file mode 100644 index 3fc41a3a590b59a9dec14b08bcecb41d251da967..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
DecisionTreeRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/artifacts/model/MLmodel b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/artifacts/model/MLmodel deleted file mode 100644 index 5f21c365641705aef32418b18d041749cf539561..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.sklearn - model_path: model.pkl - predict_fn: predict - python_version: 3.11.0 - sklearn: - code: null - pickled_model: model.pkl - serialization_format: cloudpickle - sklearn_version: 1.5.2 -mlflow_version: 2.16.2 -model_size_bytes: 550214 -model_uuid: 2ef9f7cfb6d741bc8440a3457026f64f -run_id: b60b5c522f6546e8b908c07afca32744 -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-29 20:38:07.573958' diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/artifacts/model/conda.yaml b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/artifacts/model/conda.yaml deleted file mode 100644 index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - cloudpickle==3.0.0 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 -name: mlflow-env diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/artifacts/model/model.pkl b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/artifacts/model/model.pkl deleted file mode 100644 index 1f2c6546dceef26cae96799fc6a79c047c245518..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f6226321fcf2e99e5a99d54aedbed8e982e138124d9566a16cef210ed7fca6bf -size 550214 diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/artifacts/model/python_env.yaml b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/artifacts/model/requirements.txt b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/artifacts/model/requirements.txt deleted file mode 100644 index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -cloudpickle==3.0.0 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/inputs/1fdd3e2f88a7a6b7fc2f472907e7110f/meta.yaml b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/inputs/1fdd3e2f88a7a6b7fc2f472907e7110f/meta.yaml deleted file mode 100644 index 17c34ad08903a4ce3ec908a63642f36f025e6715..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/inputs/1fdd3e2f88a7a6b7fc2f472907e7110f/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: dd4d89a524510f8914834c3bc9cd9e95 -destination_type: RUN -source_id: dd4d89a524510f8914834c3bc9cd9e95 -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/inputs/a3be081e61a7be38002965f01e89a123/meta.yaml b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/inputs/a3be081e61a7be38002965f01e89a123/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/inputs/a3be081e61a7be38002965f01e89a123/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/meta.yaml b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/meta.yaml deleted file mode 100644 index 2d8aabebecca5ec4da00f02fb6e7618fbb1e4cbc..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: file:///C:/Users/User/ML4I/air-quality-forecast/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/artifacts -end_time: 1727642298084 -entry_point_name: '' -experiment_id: '831635215727137506' -lifecycle_stage: active -run_id: b60b5c522f6546e8b908c07afca32744 -run_name: efficient-asp-131 -run_uuid: b60b5c522f6546e8b908c07afca32744 -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727642284265 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/system/cpu_utilization_percentage b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/system/cpu_utilization_percentage deleted file mode 100644 index 483f406ae0318a955a0a1ec46b94ab1bacb4e824..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1 +0,0 @@ -1727642297005 66.4 0 diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/system/disk_available_megabytes b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/system/disk_available_megabytes deleted file mode 100644 index a53ac006232e2ef3aa8299d8c8dfdcb93fa22fff..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/system/disk_available_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727642297005 90948.7 0 diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/system/disk_usage_megabytes b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/system/disk_usage_megabytes deleted file mode 100644 index cd5a6a9d9737d68b75ebf191dbc3adb7e7e459d5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727642297005 420188.4 0 diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/system/disk_usage_percentage b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/system/disk_usage_percentage deleted file mode 100644 index 290784781ac2334187302770ead1a81b7b7b492f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/system/disk_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727642297005 82.2 0 diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index 4ed2b92535c1e5848b46f18eea6d37328b33c100..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727642297005 301.9 0 diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/system/gpu_0_memory_usage_percentage b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index 77c98f92b88ca35c957a87013a190f8e18ab4cfd..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727642297005 14.1 0 diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/system/gpu_0_utilization_percentage b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index c558d4697f46d2224f11eb0fdf408128a0efc8e7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1 +0,0 @@ -1727642297005 6.0 0 diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/system/network_receive_megabytes b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/system/network_receive_megabytes deleted file mode 100644 index 27186b98ec8adc5b662e07f8471c451bf8d5c602..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/system/network_receive_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727642297005 6.000000001904482e-05 0 diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/system/network_transmit_megabytes b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/system/network_transmit_megabytes deleted file mode 100644 index 280f558acf6f7465aa537a7d35767bf1b01625c2..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727642297005 0.002060000000000173 0 diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/system/system_memory_usage_megabytes b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index a52cf24d4e1f8ff40fec087eb2e2f082fd3673e7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727642297005 11536.4 0 diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/system/system_memory_usage_percentage b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/system/system_memory_usage_percentage deleted file mode 100644 index 03ff6dfe61000da7020415bafdeb06f759e25494..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727642297005 67.9 0 diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/training_mean_absolute_error b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/training_mean_absolute_error deleted file mode 100644 index 8f5a582c82a5f5f837978c60113b7ea6ad7fbae8..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727642287432 0.03384991843393148 0 diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/training_mean_squared_error b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/training_mean_squared_error deleted file mode 100644 index 8660d1d7c0441154aa2e9be7d813a198b69b4b52..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727642287432 0.189505165851006 0 diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/training_r2_score b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/training_r2_score deleted file mode 100644 index d5204659e40a5abaa7bab7888fd094b81f0ca5d6..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727642287432 0.9967852796029998 0 diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/training_root_mean_squared_error b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/training_root_mean_squared_error deleted file mode 100644 index 41ae9a68273c9a6b898155a960e4cccf5c4cb939..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727642287432 0.43532191060295367 0 diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/training_score b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/training_score deleted file mode 100644 index e5c26be002ab361acbe0e87743898f8ac02063c5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727642287441 0.9967852796029998 0 diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/ccp_alpha b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/criterion b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/max_depth b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/max_features b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/max_features deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/max_features +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/max_leaf_nodes b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/min_impurity_decrease b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/min_samples_leaf b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/min_samples_split b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/min_samples_split deleted file mode 100644 index d8263ee9860594d2806b0dfd1bfd17528b0ba2a4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/min_samples_split +++ /dev/null @@ -1 +0,0 @@ -2 \ No newline at end of file diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/min_weight_fraction_leaf b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/monotonic_cst b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/random_state b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/splitter b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/splitter deleted file mode 100644 index e173194bb34f3a5b7fb4ca66c137c36492cdb60e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/params/splitter +++ /dev/null @@ -1 +0,0 @@ -best \ No newline at end of file diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/tags/estimator_class b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/tags/estimator_class deleted file mode 100644 index e049541749d94d9d1c082a3495fc52a31e663a30..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.tree._classes.DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/tags/estimator_name b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/tags/estimator_name deleted file mode 100644 index 133de2e2ca4faccc3c53cd6fc5a81c142569960d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/tags/mlflow.autologging b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/tags/mlflow.autologging deleted file mode 100644 index 044bdd758636edf2ee49b03917cb416d76a71de4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -sklearn \ No newline at end of file diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/tags/mlflow.log-model.history b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/tags/mlflow.log-model.history deleted file mode 100644 index a541ede50556021b73c07a2fc76ee35e666514ad..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "b60b5c522f6546e8b908c07afca32744", "artifact_path": "model", "utc_time_created": "2024-09-29 20:38:07.573958", "model_uuid": "2ef9f7cfb6d741bc8440a3457026f64f", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/tags/mlflow.runName b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/tags/mlflow.runName deleted file mode 100644 index 3f87c7220d1d8e345095a4511d591a438f971cda..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -efficient-asp-131 \ No newline at end of file diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/tags/mlflow.source.git.commit b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/tags/mlflow.source.git.commit deleted file mode 100644 index 38bea58d3eed4194d95922f337daa60cbc044a21..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -da08d56ac3b3131519322c57e8db01547d638865 \ No newline at end of file diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/tags/mlflow.source.name b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/tags/mlflow.source.type b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/tags/mlflow.user b/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b60b5c522f6546e8b908c07afca32744/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/artifacts/estimator.html b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/artifacts/estimator.html deleted file mode 100644 index 3fc41a3a590b59a9dec14b08bcecb41d251da967..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
DecisionTreeRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/artifacts/model/MLmodel b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/artifacts/model/MLmodel deleted file mode 100644 index 7e5f5c22771664d3f9bac636397e7e00307b2e3e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.sklearn - model_path: model.pkl - predict_fn: predict - python_version: 3.11.0 - sklearn: - code: null - pickled_model: model.pkl - serialization_format: cloudpickle - sklearn_version: 1.5.2 -mlflow_version: 2.16.2 -model_size_bytes: 550214 -model_uuid: 2e58423fd46c4ee7b61cc05fb8f5b6cd -run_id: b9da05f387e141e89fd437199f5a8def -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-30 13:00:33.413848' diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/artifacts/model/conda.yaml b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/artifacts/model/conda.yaml deleted file mode 100644 index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - cloudpickle==3.0.0 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 -name: mlflow-env diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/artifacts/model/model.pkl b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/artifacts/model/model.pkl deleted file mode 100644 index 9b3b592eff076b921155eefa4f6a7ef2112c8313..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f808d090ecf31cbaa063890df5144c205ee913b0a3b37d2f99a17b66dbd436b3 -size 550214 diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/artifacts/model/python_env.yaml b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/artifacts/model/requirements.txt b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/artifacts/model/requirements.txt deleted file mode 100644 index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -cloudpickle==3.0.0 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/inputs/218acb40a43fea37bbc3c4ec3fba5b04/meta.yaml b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/inputs/218acb40a43fea37bbc3c4ec3fba5b04/meta.yaml deleted file mode 100644 index 17c34ad08903a4ce3ec908a63642f36f025e6715..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/inputs/218acb40a43fea37bbc3c4ec3fba5b04/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: dd4d89a524510f8914834c3bc9cd9e95 -destination_type: RUN -source_id: dd4d89a524510f8914834c3bc9cd9e95 -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/inputs/d0e6579ab34741caf785842f90b3ba2b/meta.yaml b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/inputs/d0e6579ab34741caf785842f90b3ba2b/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/inputs/d0e6579ab34741caf785842f90b3ba2b/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/meta.yaml b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/meta.yaml deleted file mode 100644 index 44ab145405e4463e1baa0e605b553ace90b387d9..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: file:///C:/Users/User/ML4I/air-quality-forecast/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/artifacts -end_time: 1727701273766 -entry_point_name: '' -experiment_id: '831635215727137506' -lifecycle_stage: active -run_id: b9da05f387e141e89fd437199f5a8def -run_name: salty-koi-918 -run_uuid: b9da05f387e141e89fd437199f5a8def -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727701225996 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/system/cpu_utilization_percentage b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/system/cpu_utilization_percentage deleted file mode 100644 index 54151ef07df7be7bd7243346ef142341b09b0daa..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,4 +0,0 @@ -1727701242340 99.9 0 -1727701252721 90.9 1 -1727701263273 97.0 2 -1727701273527 97.6 3 diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/system/disk_available_megabytes b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/system/disk_available_megabytes deleted file mode 100644 index 7668202ee7f3b28ff59d606e0b5cddc158edc19e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,4 +0,0 @@ -1727701242340 82981.1 0 -1727701252721 83087.4 1 -1727701263273 83102.3 2 -1727701273527 83114.3 3 diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/system/disk_usage_megabytes b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/system/disk_usage_megabytes deleted file mode 100644 index 49cf4a53775cbe22875f14885dd3a2159c34eeae..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,4 +0,0 @@ -1727701242340 428156.0 0 -1727701252721 428049.7 1 -1727701263273 428034.8 2 -1727701273527 428022.8 3 diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/system/disk_usage_percentage b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/system/disk_usage_percentage deleted file mode 100644 index 769866d9ab29f090f2e38127695fa89f67342fe7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,4 +0,0 @@ -1727701242340 83.8 0 -1727701252721 83.7 1 -1727701263273 83.7 2 -1727701273527 83.7 3 diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index 5f1adef7cde26f1a7e65c968c0d29e58996abd66..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,4 +0,0 @@ -1727701242340 223.9 0 -1727701252721 208.7 1 -1727701263273 253.7 2 -1727701273527 216.2 3 diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/system/gpu_0_memory_usage_percentage b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index dea2e4e5df56063b9f61fca3e8d815b250e0ea92..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,4 +0,0 @@ -1727701242340 10.4 0 -1727701252721 9.7 1 -1727701263273 11.8 2 -1727701273527 10.1 3 diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/system/gpu_0_utilization_percentage b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index b0375663c65b26975ba7b331ab2549bcd43ab49f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,4 +0,0 @@ -1727701242340 19.0 0 -1727701252721 11.0 1 -1727701263273 6.0 2 -1727701273527 6.0 3 diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/system/network_receive_megabytes b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/system/network_receive_megabytes deleted file mode 100644 index 87a8f9f5c3191517dbc2086bb12cee045f0742a8..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,4 +0,0 @@ -1727701242340 5.3999999977349944e-05 0 -1727701252721 0.008483999999953085 1 -1727701263273 0.008767999999918175 2 -1727701273527 0.1593239999999696 3 diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/system/network_transmit_megabytes b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/system/network_transmit_megabytes deleted file mode 100644 index 5c07903fbccaf7cf5841631bba97b19848a3d571..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,4 +0,0 @@ -1727701242340 5.400000000221894e-05 0 -1727701252721 0.005472000000001032 1 -1727701263273 0.005637000000000114 2 -1727701273527 0.029809000000000196 3 diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/system/system_memory_usage_megabytes b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index 555af88d9cb9b61e6f28a96b65dfedec4783d1a3..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,4 +0,0 @@ -1727701242340 16424.7 0 -1727701252721 16091.1 1 -1727701263273 16317.3 2 -1727701273527 16506.9 3 diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/system/system_memory_usage_percentage b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/system/system_memory_usage_percentage deleted file mode 100644 index e2ee6974365a71c724ec98ed47b84e859631e6bf..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,4 +0,0 @@ -1727701242340 96.7 0 -1727701252721 94.7 1 -1727701263273 96.1 2 -1727701273527 97.2 3 diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/training_mean_absolute_error b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/training_mean_absolute_error deleted file mode 100644 index b2909d71649fd828aed8f333a3dbbb73a9cac627..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727701232261 0.03072321914083741 0 diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/training_mean_squared_error b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/training_mean_squared_error deleted file mode 100644 index beb5038e8d2e567276eb21d111df7c04d42fe743..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727701232261 0.18529091897770525 0 diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/training_r2_score b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/training_r2_score deleted file mode 100644 index 67ba527a559392cb180d9b37e4f4629e392f98f7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727701232261 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/training_root_mean_squared_error b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/training_root_mean_squared_error deleted file mode 100644 index 461e9eee9b7d0f8eb0300cdbdbfc548c7f35fd80..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727701232261 0.4304543169462995 0 diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/training_score b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/training_score deleted file mode 100644 index d0ecc2e6a423f752b5f0d9a0e50bba9a1f4967b2..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727701232268 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/ccp_alpha b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/criterion b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/max_depth b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/max_features b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/max_features deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/max_features +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/max_leaf_nodes b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/min_impurity_decrease b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/min_samples_leaf b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/min_samples_split b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/min_samples_split deleted file mode 100644 index d8263ee9860594d2806b0dfd1bfd17528b0ba2a4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/min_samples_split +++ /dev/null @@ -1 +0,0 @@ -2 \ No newline at end of file diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/min_weight_fraction_leaf b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/monotonic_cst b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/random_state b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/splitter b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/splitter deleted file mode 100644 index e173194bb34f3a5b7fb4ca66c137c36492cdb60e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/params/splitter +++ /dev/null @@ -1 +0,0 @@ -best \ No newline at end of file diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/tags/estimator_class b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/tags/estimator_class deleted file mode 100644 index e049541749d94d9d1c082a3495fc52a31e663a30..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.tree._classes.DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/tags/estimator_name b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/tags/estimator_name deleted file mode 100644 index 133de2e2ca4faccc3c53cd6fc5a81c142569960d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/tags/mlflow.autologging b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/tags/mlflow.autologging deleted file mode 100644 index 044bdd758636edf2ee49b03917cb416d76a71de4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -sklearn \ No newline at end of file diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/tags/mlflow.log-model.history b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/tags/mlflow.log-model.history deleted file mode 100644 index f19450a03a79ecc203057f38bb65122a3a0c523d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "b9da05f387e141e89fd437199f5a8def", "artifact_path": "model", "utc_time_created": "2024-09-30 13:00:33.413848", "model_uuid": "2e58423fd46c4ee7b61cc05fb8f5b6cd", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/tags/mlflow.runName b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/tags/mlflow.runName deleted file mode 100644 index 599ba0813f4d2eeea7cf01d16b83d04454bf0884..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -salty-koi-918 \ No newline at end of file diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/tags/mlflow.source.git.commit b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/tags/mlflow.source.git.commit deleted file mode 100644 index b9ea510318a74d958a9174bc540d8caf7ea139e5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -2e3cee67a062d9b1790ae929ca7415c02604d303 \ No newline at end of file diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/tags/mlflow.source.name b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/tags/mlflow.source.type b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/tags/mlflow.user b/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/b9da05f387e141e89fd437199f5a8def/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/artifacts/estimator.html b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/artifacts/estimator.html deleted file mode 100644 index 3fc41a3a590b59a9dec14b08bcecb41d251da967..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
DecisionTreeRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/artifacts/model/MLmodel b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/artifacts/model/MLmodel deleted file mode 100644 index e2687ab21d419fac27c8ab617386e5efa31a309c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.sklearn - model_path: model.pkl - predict_fn: predict - python_version: 3.11.0 - sklearn: - code: null - pickled_model: model.pkl - serialization_format: cloudpickle - sklearn_version: 1.5.2 -mlflow_version: 2.16.2 -model_size_bytes: 550214 -model_uuid: a55f9e97e0aa4898ae08fa48a3364f3a -run_id: ba06ca2dc90e47b6b9c0f0d3a8faa5ef -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-30 16:06:38.597254' diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/artifacts/model/conda.yaml b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/artifacts/model/conda.yaml deleted file mode 100644 index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - cloudpickle==3.0.0 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 -name: mlflow-env diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/artifacts/model/model.pkl b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/artifacts/model/model.pkl deleted file mode 100644 index 9b3b592eff076b921155eefa4f6a7ef2112c8313..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f808d090ecf31cbaa063890df5144c205ee913b0a3b37d2f99a17b66dbd436b3 -size 550214 diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/artifacts/model/python_env.yaml b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/artifacts/model/requirements.txt b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/artifacts/model/requirements.txt deleted file mode 100644 index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -cloudpickle==3.0.0 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/inputs/1a78e4cf02138a8876f006d7be5470de/meta.yaml b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/inputs/1a78e4cf02138a8876f006d7be5470de/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/inputs/1a78e4cf02138a8876f006d7be5470de/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/inputs/d10708115bc191984c59c13bd808e4bf/meta.yaml b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/inputs/d10708115bc191984c59c13bd808e4bf/meta.yaml deleted file mode 100644 index 17c34ad08903a4ce3ec908a63642f36f025e6715..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/inputs/d10708115bc191984c59c13bd808e4bf/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: dd4d89a524510f8914834c3bc9cd9e95 -destination_type: RUN -source_id: dd4d89a524510f8914834c3bc9cd9e95 -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/meta.yaml b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/meta.yaml deleted file mode 100644 index cea8892cbc05c05dad2d61f5c49f45e0d92808c5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: file:///C:/Users/User/ML4I/air-quality-forecast/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/artifacts -end_time: 1727712432378 -entry_point_name: '' -experiment_id: '831635215727137506' -lifecycle_stage: active -run_id: ba06ca2dc90e47b6b9c0f0d3a8faa5ef -run_name: Bayesian_Optimization_and_Eval -run_uuid: ba06ca2dc90e47b6b9c0f0d3a8faa5ef -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727712351268 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/system/cpu_utilization_percentage b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/system/cpu_utilization_percentage deleted file mode 100644 index 2a6ff61c9840fd6bced0223db478d99ef45949ad..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,5 +0,0 @@ -1727712382003 86.8 0 -1727712392774 100.0 1 -1727712403749 100.0 2 -1727712414209 99.9 3 -1727712424602 99.9 4 diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/system/disk_available_megabytes b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/system/disk_available_megabytes deleted file mode 100644 index 6fc1c3a27204a202320b2493f3155250d0a87322..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,5 +0,0 @@ -1727712382003 83110.7 0 -1727712392774 83115.1 1 -1727712403749 83115.1 2 -1727712414209 83112.9 3 -1727712424602 83118.2 4 diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/system/disk_usage_megabytes b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/system/disk_usage_megabytes deleted file mode 100644 index 1e65b2f6be67678f0953a540e74016b5232c973e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,5 +0,0 @@ -1727712382003 428026.4 0 -1727712392774 428021.9 1 -1727712403749 428022.0 2 -1727712414209 428024.2 3 -1727712424602 428018.9 4 diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/system/disk_usage_percentage b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/system/disk_usage_percentage deleted file mode 100644 index 0282275c99cacd6ed828041423bb0ea4ad0a0831..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,5 +0,0 @@ -1727712382003 83.7 0 -1727712392774 83.7 1 -1727712403749 83.7 2 -1727712414209 83.7 3 -1727712424602 83.7 4 diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index ec28b371fb2fd5afd57a63fcf7e9396b24e246e6..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,5 +0,0 @@ -1727712382003 212.7 0 -1727712392774 219.3 1 -1727712403749 207.9 2 -1727712414209 221.8 3 -1727712424602 265.5 4 diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/system/gpu_0_memory_usage_percentage b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index 558e23514941f3122bf20b5f61b53b07dc04e82c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,5 +0,0 @@ -1727712382003 9.9 0 -1727712392774 10.2 1 -1727712403749 9.7 2 -1727712414209 10.3 3 -1727712424602 12.4 4 diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/system/gpu_0_utilization_percentage b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index bcc1b52201ea4c1dcb68786faaf46e6d1df311bc..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,5 +0,0 @@ -1727712382003 14.0 0 -1727712392774 24.0 1 -1727712403749 7.0 2 -1727712414209 23.0 3 -1727712424602 13.0 4 diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/system/network_receive_megabytes b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/system/network_receive_megabytes deleted file mode 100644 index 4a5903edc41418a8ff67a4f39dc44bde3018a197..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,5 +0,0 @@ -1727712382003 0.03630399999999945 0 -1727712392774 0.16503200000000007 1 -1727712403749 0.19711999999999996 2 -1727712414209 0.24509299999999978 3 -1727712424602 0.3931759999999995 4 diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/system/network_transmit_megabytes b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/system/network_transmit_megabytes deleted file mode 100644 index 79a61072df2c0420ca50d2547db6d5f56f422973..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,5 +0,0 @@ -1727712382003 0.02417899999999973 0 -1727712392774 0.10794399999999982 1 -1727712403749 0.15708699999999975 2 -1727712414209 0.17414799999999975 3 -1727712424602 0.2846219999999997 4 diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/system/system_memory_usage_megabytes b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index 1fda55bed9f2b719d7c81adba91f739911250d18..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,5 +0,0 @@ -1727712382003 15705.7 0 -1727712392774 16321.1 1 -1727712403749 16567.4 2 -1727712414209 16597.2 3 -1727712424602 16739.5 4 diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/system/system_memory_usage_percentage b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/system/system_memory_usage_percentage deleted file mode 100644 index d899fba71d84dde68cd45e83c7aab779c0709b89..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,5 +0,0 @@ -1727712382003 92.5 0 -1727712392774 96.1 1 -1727712403749 97.5 2 -1727712414209 97.7 3 -1727712424602 98.6 4 diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/train_mse b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/train_mse deleted file mode 100644 index b8ec6e008796b20c740a75d1baefbcc79bccbb6d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/train_mse +++ /dev/null @@ -1 +0,0 @@ -1727712432338 77.23472222222222 0 diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/training_mean_absolute_error b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/training_mean_absolute_error deleted file mode 100644 index ba83cec0bc3ecf34aa9a3526034d210bfe4c4992..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727712398091 0.03072321914083741 0 diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/training_mean_squared_error b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/training_mean_squared_error deleted file mode 100644 index 497c64c8dbf47c3c09005966f6a05e249f80deae..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727712398091 0.18529091897770525 0 diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/training_r2_score b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/training_r2_score deleted file mode 100644 index 38c440d404859fd02dcce1fccf1dff97b490b3f7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727712398091 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/training_root_mean_squared_error b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/training_root_mean_squared_error deleted file mode 100644 index 659ab6363daf8c132c9a8821c21db442da55202f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727712398091 0.4304543169462995 0 diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/training_score b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/training_score deleted file mode 100644 index 8c866b9a4fb206ae67a716a0661c7510b96c2362..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727712398097 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/ccp_alpha b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/criterion b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/max_depth b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/max_features b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/max_features deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/max_features +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/max_leaf_nodes b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/min_impurity_decrease b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/min_samples_leaf b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/min_samples_split b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/min_samples_split deleted file mode 100644 index d8263ee9860594d2806b0dfd1bfd17528b0ba2a4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/min_samples_split +++ /dev/null @@ -1 +0,0 @@ -2 \ No newline at end of file diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/min_weight_fraction_leaf b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/monotonic_cst b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/random_state b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/splitter b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/splitter deleted file mode 100644 index e173194bb34f3a5b7fb4ca66c137c36492cdb60e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/params/splitter +++ /dev/null @@ -1 +0,0 @@ -best \ No newline at end of file diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/tags/estimator_class b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/tags/estimator_class deleted file mode 100644 index e049541749d94d9d1c082a3495fc52a31e663a30..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.tree._classes.DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/tags/estimator_name b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/tags/estimator_name deleted file mode 100644 index 133de2e2ca4faccc3c53cd6fc5a81c142569960d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/tags/mlflow.log-model.history b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/tags/mlflow.log-model.history deleted file mode 100644 index 667b4433abd75a178a9667c2a5dd5bc41b414a1b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "ba06ca2dc90e47b6b9c0f0d3a8faa5ef", "artifact_path": "model", "utc_time_created": "2024-09-30 16:06:38.597254", "model_uuid": "a55f9e97e0aa4898ae08fa48a3364f3a", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/tags/mlflow.runName b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/tags/mlflow.runName deleted file mode 100644 index 0a543536bfdc22059fc5afc9c8848751ac9721ff..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -Bayesian_Optimization_and_Eval \ No newline at end of file diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/tags/mlflow.source.git.commit b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/tags/mlflow.source.git.commit deleted file mode 100644 index b9ea510318a74d958a9174bc540d8caf7ea139e5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -2e3cee67a062d9b1790ae929ca7415c02604d303 \ No newline at end of file diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/tags/mlflow.source.name b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/tags/mlflow.source.type b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/tags/mlflow.user b/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba06ca2dc90e47b6b9c0f0d3a8faa5ef/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/artifacts/estimator.html b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/artifacts/estimator.html deleted file mode 100644 index 3fc41a3a590b59a9dec14b08bcecb41d251da967..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
DecisionTreeRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/artifacts/model/MLmodel b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/artifacts/model/MLmodel deleted file mode 100644 index 2d2768082583760aafdce0d8cd29d29f39eba87a..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.sklearn - model_path: model.pkl - predict_fn: predict - python_version: 3.11.0 - sklearn: - code: null - pickled_model: model.pkl - serialization_format: cloudpickle - sklearn_version: 1.5.2 -mlflow_version: 2.16.2 -model_size_bytes: 550214 -model_uuid: 71cc6569a6c2432ba907d0d09c05a502 -run_id: ba361731726e468091d65fefce69fd66 -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-30 12:14:23.233954' diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/artifacts/model/conda.yaml b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/artifacts/model/conda.yaml deleted file mode 100644 index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - cloudpickle==3.0.0 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 -name: mlflow-env diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/artifacts/model/model.pkl b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/artifacts/model/model.pkl deleted file mode 100644 index 9b3b592eff076b921155eefa4f6a7ef2112c8313..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f808d090ecf31cbaa063890df5144c205ee913b0a3b37d2f99a17b66dbd436b3 -size 550214 diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/artifacts/model/python_env.yaml b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/artifacts/model/requirements.txt b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/artifacts/model/requirements.txt deleted file mode 100644 index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -cloudpickle==3.0.0 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/inputs/09c646d96fbbd365b95abcb26517197a/meta.yaml b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/inputs/09c646d96fbbd365b95abcb26517197a/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/inputs/09c646d96fbbd365b95abcb26517197a/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/inputs/afb953fe4b31dd68af4906d4e25dc124/meta.yaml b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/inputs/afb953fe4b31dd68af4906d4e25dc124/meta.yaml deleted file mode 100644 index 17c34ad08903a4ce3ec908a63642f36f025e6715..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/inputs/afb953fe4b31dd68af4906d4e25dc124/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: dd4d89a524510f8914834c3bc9cd9e95 -destination_type: RUN -source_id: dd4d89a524510f8914834c3bc9cd9e95 -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/meta.yaml b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/meta.yaml deleted file mode 100644 index fee806ed33e89d7fc3a19a9c57394cb217eb4b6e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: file:///C:/Users/User/ML4I/air-quality-forecast/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/artifacts -end_time: 1727698494108 -entry_point_name: '' -experiment_id: '831635215727137506' -lifecycle_stage: active -run_id: ba361731726e468091d65fefce69fd66 -run_name: serious-moth-932 -run_uuid: ba361731726e468091d65fefce69fd66 -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727698456135 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/system/cpu_utilization_percentage b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/system/cpu_utilization_percentage deleted file mode 100644 index 4022f83f63a042124f2bec94f700ce53ba4f716e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,3 +0,0 @@ -1727698472068 97.5 0 -1727698482452 100.0 1 -1727698492666 100.0 2 diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/system/disk_available_megabytes b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/system/disk_available_megabytes deleted file mode 100644 index dfc3d5ed07e83d3df78f659b079d1e5c32dcfb34..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727698472068 83299.6 0 -1727698482452 83300.5 1 -1727698492666 83300.1 2 diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/system/disk_usage_megabytes b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/system/disk_usage_megabytes deleted file mode 100644 index 13029cf3bbfeccd915157b77db3e2594c2d63319..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727698472068 427837.5 0 -1727698482452 427836.6 1 -1727698492666 427837.0 2 diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/system/disk_usage_percentage b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/system/disk_usage_percentage deleted file mode 100644 index 08d33f12a5ddc376d8e534c7afcb3655ade78567..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,3 +0,0 @@ -1727698472068 83.7 0 -1727698482452 83.7 1 -1727698492666 83.7 2 diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index 700b263f300e80414e905026b54aa1300b5d372b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727698472068 326.9 0 -1727698482452 330.6 1 -1727698492666 338.6 2 diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/system/gpu_0_memory_usage_percentage b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index a5d7f9037ac5276edec8bd3d24755e6bfb80f8d6..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,3 +0,0 @@ -1727698472068 15.2 0 -1727698482452 15.4 1 -1727698492666 15.8 2 diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/system/gpu_0_utilization_percentage b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index ada0eabbe868ff98f2fe07651df6b1f6ffa7354c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,3 +0,0 @@ -1727698472068 0.0 0 -1727698482452 15.0 1 -1727698492666 0.0 2 diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/system/network_receive_megabytes b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/system/network_receive_megabytes deleted file mode 100644 index a7d6e8e0f865a01fdca4ad10654e830078c7077d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727698472068 0.018828999999982443 0 -1727698482452 0.11603200000001834 1 -1727698492666 0.19735800000000836 2 diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/system/network_transmit_megabytes b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/system/network_transmit_megabytes deleted file mode 100644 index 0c86d9ca94ff13e0ffb214eb78391938cc7b18c5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727698472068 0.01310399999999845 0 -1727698482452 0.036249999999999005 1 -1727698492666 0.05629000000000062 2 diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/system/system_memory_usage_megabytes b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index 79a2091d65a05d9f025a7eaff8c5ec00af91a31b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727698472068 15680.7 0 -1727698482452 15554.9 1 -1727698492666 15677.6 2 diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/system/system_memory_usage_percentage b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/system/system_memory_usage_percentage deleted file mode 100644 index e975e594de16e6caedea09dbbba745aa5f2a8a68..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,3 +0,0 @@ -1727698472068 92.3 0 -1727698482452 91.6 1 -1727698492666 92.3 2 diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/training_mean_absolute_error b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/training_mean_absolute_error deleted file mode 100644 index 7a77702d9f39365cd3977261be807548eb0cba50..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727698462439 0.03072321914083741 0 diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/training_mean_squared_error b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/training_mean_squared_error deleted file mode 100644 index a89d00396d767f23985767cb993a8adc341dd661..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727698462439 0.18529091897770525 0 diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/training_r2_score b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/training_r2_score deleted file mode 100644 index 199550758c5142ce6541f400035e9a2448984cf2..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727698462439 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/training_root_mean_squared_error b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/training_root_mean_squared_error deleted file mode 100644 index 00978db8bab9bbecb75798b28fb430fdd104978c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727698462439 0.4304543169462995 0 diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/training_score b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/training_score deleted file mode 100644 index 21cfaab7f07b9d3b40b073072ab56346574faeb5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727698462494 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/ccp_alpha b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/criterion b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/max_depth b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/max_features b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/max_features deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/max_features +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/max_leaf_nodes b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/min_impurity_decrease b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/min_samples_leaf b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/min_samples_split b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/min_samples_split deleted file mode 100644 index d8263ee9860594d2806b0dfd1bfd17528b0ba2a4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/min_samples_split +++ /dev/null @@ -1 +0,0 @@ -2 \ No newline at end of file diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/min_weight_fraction_leaf b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/monotonic_cst b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/random_state b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/splitter b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/splitter deleted file mode 100644 index e173194bb34f3a5b7fb4ca66c137c36492cdb60e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/params/splitter +++ /dev/null @@ -1 +0,0 @@ -best \ No newline at end of file diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/tags/estimator_class b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/tags/estimator_class deleted file mode 100644 index e049541749d94d9d1c082a3495fc52a31e663a30..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.tree._classes.DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/tags/estimator_name b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/tags/estimator_name deleted file mode 100644 index 133de2e2ca4faccc3c53cd6fc5a81c142569960d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/tags/mlflow.autologging b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/tags/mlflow.autologging deleted file mode 100644 index 044bdd758636edf2ee49b03917cb416d76a71de4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -sklearn \ No newline at end of file diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/tags/mlflow.log-model.history b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/tags/mlflow.log-model.history deleted file mode 100644 index c6585dd32265c26089ec0014dd9b94b412d35da1..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "ba361731726e468091d65fefce69fd66", "artifact_path": "model", "utc_time_created": "2024-09-30 12:14:23.233954", "model_uuid": "71cc6569a6c2432ba907d0d09c05a502", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/tags/mlflow.runName b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/tags/mlflow.runName deleted file mode 100644 index f9740853ac02c84cde51b30f70e283a44e175fea..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -serious-moth-932 \ No newline at end of file diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/tags/mlflow.source.git.commit b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/tags/mlflow.source.git.commit deleted file mode 100644 index b9ea510318a74d958a9174bc540d8caf7ea139e5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -2e3cee67a062d9b1790ae929ca7415c02604d303 \ No newline at end of file diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/tags/mlflow.source.name b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/tags/mlflow.source.type b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/tags/mlflow.user b/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/ba361731726e468091d65fefce69fd66/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/artifacts/estimator.html b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/artifacts/estimator.html deleted file mode 100644 index 41076e74a6b15ab13e2a2158dbb423fb6a49e382..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
DecisionTreeRegressor(max_depth=17)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/artifacts/model/MLmodel b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/artifacts/model/MLmodel deleted file mode 100644 index 004808e33f0772c0cb720ea2c153ac8693c07a2e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.sklearn - model_path: model.pkl - predict_fn: predict - python_version: 3.11.0 - sklearn: - code: null - pickled_model: model.pkl - serialization_format: cloudpickle - sklearn_version: 1.5.2 -mlflow_version: 2.16.2 -model_size_bytes: 457926 -model_uuid: de5f89aa26d64422977784c59752a0a8 -run_id: c21d918b36ff4ef2be3f7153f8560c40 -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-29 20:22:34.074969' diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/artifacts/model/conda.yaml b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/artifacts/model/conda.yaml deleted file mode 100644 index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - cloudpickle==3.0.0 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 -name: mlflow-env diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/artifacts/model/model.pkl b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/artifacts/model/model.pkl deleted file mode 100644 index 4189be233ee59b02bd4dc8d87af546b2312dce3d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e14b25b027a48c8c9b313f1d72d73745a3ec3244084bf5be2e32f605406a0c21 -size 457926 diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/artifacts/model/python_env.yaml b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/artifacts/model/requirements.txt b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/artifacts/model/requirements.txt deleted file mode 100644 index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -cloudpickle==3.0.0 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/inputs/575fbb612840c053dc6c37dd1c8e044e/meta.yaml b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/inputs/575fbb612840c053dc6c37dd1c8e044e/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/inputs/575fbb612840c053dc6c37dd1c8e044e/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/inputs/78ecea1cf62944bf1a4e1e40c179e1a3/meta.yaml b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/inputs/78ecea1cf62944bf1a4e1e40c179e1a3/meta.yaml deleted file mode 100644 index 17c34ad08903a4ce3ec908a63642f36f025e6715..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/inputs/78ecea1cf62944bf1a4e1e40c179e1a3/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: dd4d89a524510f8914834c3bc9cd9e95 -destination_type: RUN -source_id: dd4d89a524510f8914834c3bc9cd9e95 -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/meta.yaml b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/meta.yaml deleted file mode 100644 index 20898d4c5920998eeb3e8415591b334fd4f06f27..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: file:///C:/Users/User/ML4I/air-quality-forecast/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/artifacts -end_time: 1727641364161 -entry_point_name: '' -experiment_id: '831635215727137506' -lifecycle_stage: active -run_id: c21d918b36ff4ef2be3f7153f8560c40 -run_name: exultant-stork-821 -run_uuid: c21d918b36ff4ef2be3f7153f8560c40 -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727641351208 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/system/cpu_utilization_percentage b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/system/cpu_utilization_percentage deleted file mode 100644 index 708e7188c3ea7c51712b545f22246add353110fa..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1 +0,0 @@ -1727641363702 52.4 0 diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/system/disk_available_megabytes b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/system/disk_available_megabytes deleted file mode 100644 index 5adc348f22213f616b6d07abc2803c55856a40e1..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/system/disk_available_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727641363702 91101.7 0 diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/system/disk_usage_megabytes b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/system/disk_usage_megabytes deleted file mode 100644 index bd2258f64ce51bd223d7c393f75fba487fa8c591..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727641363702 420035.4 0 diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/system/disk_usage_percentage b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/system/disk_usage_percentage deleted file mode 100644 index de64db2f6415601596c717c38d26b4695dcb2be0..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/system/disk_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727641363702 82.2 0 diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index 40ff9103a4bfdf0803e3f8f7881469334272c8cd..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727641363702 300.1 0 diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/system/gpu_0_memory_usage_percentage b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index 3a17170e14477d99bf1bf0f27b0681b8b299b4c6..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727641363702 14.0 0 diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/system/gpu_0_utilization_percentage b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index 3a17170e14477d99bf1bf0f27b0681b8b299b4c6..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1 +0,0 @@ -1727641363702 14.0 0 diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/system/network_receive_megabytes b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/system/network_receive_megabytes deleted file mode 100644 index d0a3adcfe9256342fddfdaaa84a434c587114d51..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/system/network_receive_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727641363702 0.0 0 diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/system/network_transmit_megabytes b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/system/network_transmit_megabytes deleted file mode 100644 index d0a3adcfe9256342fddfdaaa84a434c587114d51..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727641363702 0.0 0 diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/system/system_memory_usage_megabytes b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index f9bcc6a5eef2be26cda3783bfc32011fa5d97949..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727641363702 11119.1 0 diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/system/system_memory_usage_percentage b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/system/system_memory_usage_percentage deleted file mode 100644 index a8d26911548640a87aabe0271dec43bcb932c4b4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727641363702 65.5 0 diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/training_mean_absolute_error b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/training_mean_absolute_error deleted file mode 100644 index 3cc88ebb36e30831fededd6c44e0619c15d0e655..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727641353953 0.4388175678952453 0 diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/training_mean_squared_error b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/training_mean_squared_error deleted file mode 100644 index 929eb86d144e935584d72c78dd9dda3fd689f6b5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727641353953 1.6130121973912008 0 diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/training_r2_score b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/training_r2_score deleted file mode 100644 index 840df0d761e9e582697cd899f5654e5f6cfbc623..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727641353953 0.9694583914701854 0 diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/training_root_mean_squared_error b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/training_root_mean_squared_error deleted file mode 100644 index 27e7410aa5109dee6c53fcf679c68b966e379ca8..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727641353953 1.2700441714331046 0 diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/training_score b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/training_score deleted file mode 100644 index 05dde25ce07fe624c6b842594e5df3a89fbbcc00..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727641353959 0.9694583914701854 0 diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/ccp_alpha b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/criterion b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/max_depth b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/max_depth deleted file mode 100644 index 8e2afd342773582f9484b796cdc0b84736e8194e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -17 \ No newline at end of file diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/max_features b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/max_features deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/max_features +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/max_leaf_nodes b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/min_impurity_decrease b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/min_samples_leaf b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/min_samples_split b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/min_samples_split deleted file mode 100644 index d8263ee9860594d2806b0dfd1bfd17528b0ba2a4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/min_samples_split +++ /dev/null @@ -1 +0,0 @@ -2 \ No newline at end of file diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/min_weight_fraction_leaf b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/monotonic_cst b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/random_state b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/splitter b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/splitter deleted file mode 100644 index e173194bb34f3a5b7fb4ca66c137c36492cdb60e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/params/splitter +++ /dev/null @@ -1 +0,0 @@ -best \ No newline at end of file diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/tags/estimator_class b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/tags/estimator_class deleted file mode 100644 index e049541749d94d9d1c082a3495fc52a31e663a30..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.tree._classes.DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/tags/estimator_name b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/tags/estimator_name deleted file mode 100644 index 133de2e2ca4faccc3c53cd6fc5a81c142569960d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/tags/mlflow.autologging b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/tags/mlflow.autologging deleted file mode 100644 index 044bdd758636edf2ee49b03917cb416d76a71de4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -sklearn \ No newline at end of file diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/tags/mlflow.log-model.history b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/tags/mlflow.log-model.history deleted file mode 100644 index 742f54a0c62e167b4c2954238505c625d876847d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "c21d918b36ff4ef2be3f7153f8560c40", "artifact_path": "model", "utc_time_created": "2024-09-29 20:22:34.074969", "model_uuid": "de5f89aa26d64422977784c59752a0a8", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/tags/mlflow.runName b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/tags/mlflow.runName deleted file mode 100644 index 7e5e4ccfcbe467c6dc45d196505ac0fc9cdda183..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -exultant-stork-821 \ No newline at end of file diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/tags/mlflow.source.git.commit b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/tags/mlflow.source.git.commit deleted file mode 100644 index 38bea58d3eed4194d95922f337daa60cbc044a21..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -da08d56ac3b3131519322c57e8db01547d638865 \ No newline at end of file diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/tags/mlflow.source.name b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/tags/mlflow.source.type b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/tags/mlflow.user b/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/c21d918b36ff4ef2be3f7153f8560c40/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/831635215727137506/cd4891e2fc8044eb87ad994d8689ab58/meta.yaml b/mlruns/831635215727137506/cd4891e2fc8044eb87ad994d8689ab58/meta.yaml deleted file mode 100644 index 1bb2eb472661c302dee0ffe5c37d06d7e23b62c2..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/cd4891e2fc8044eb87ad994d8689ab58/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: file:///C:/Users/User/ML4I/air-quality-forecast/mlruns/831635215727137506/cd4891e2fc8044eb87ad994d8689ab58/artifacts -end_time: 1727702292617 -entry_point_name: '' -experiment_id: '831635215727137506' -lifecycle_stage: active -run_id: cd4891e2fc8044eb87ad994d8689ab58 -run_name: receptive-shad-906 -run_uuid: cd4891e2fc8044eb87ad994d8689ab58 -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727702292400 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/831635215727137506/cd4891e2fc8044eb87ad994d8689ab58/metrics/test_mse b/mlruns/831635215727137506/cd4891e2fc8044eb87ad994d8689ab58/metrics/test_mse deleted file mode 100644 index 62fe03eb784cc4b2ff9164d053f2b3b40340a812..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/cd4891e2fc8044eb87ad994d8689ab58/metrics/test_mse +++ /dev/null @@ -1 +0,0 @@ -1727702292556 68.4960392902408 0 diff --git a/mlruns/831635215727137506/cd4891e2fc8044eb87ad994d8689ab58/metrics/test_rmse b/mlruns/831635215727137506/cd4891e2fc8044eb87ad994d8689ab58/metrics/test_rmse deleted file mode 100644 index 0bb0b39eb937850ef15f59ecd84339668d6ee283..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/cd4891e2fc8044eb87ad994d8689ab58/metrics/test_rmse +++ /dev/null @@ -1 +0,0 @@ -1727702292582 7.797716661543197 0 diff --git a/mlruns/831635215727137506/cd4891e2fc8044eb87ad994d8689ab58/tags/mlflow.runName b/mlruns/831635215727137506/cd4891e2fc8044eb87ad994d8689ab58/tags/mlflow.runName deleted file mode 100644 index bdf33e275fbdb0eb1a168ffd35de66ef90b2730e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/cd4891e2fc8044eb87ad994d8689ab58/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -receptive-shad-906 \ No newline at end of file diff --git a/mlruns/831635215727137506/cd4891e2fc8044eb87ad994d8689ab58/tags/mlflow.source.git.commit b/mlruns/831635215727137506/cd4891e2fc8044eb87ad994d8689ab58/tags/mlflow.source.git.commit deleted file mode 100644 index b9ea510318a74d958a9174bc540d8caf7ea139e5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/cd4891e2fc8044eb87ad994d8689ab58/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -2e3cee67a062d9b1790ae929ca7415c02604d303 \ No newline at end of file diff --git a/mlruns/831635215727137506/cd4891e2fc8044eb87ad994d8689ab58/tags/mlflow.source.name b/mlruns/831635215727137506/cd4891e2fc8044eb87ad994d8689ab58/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/cd4891e2fc8044eb87ad994d8689ab58/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/831635215727137506/cd4891e2fc8044eb87ad994d8689ab58/tags/mlflow.source.type b/mlruns/831635215727137506/cd4891e2fc8044eb87ad994d8689ab58/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/cd4891e2fc8044eb87ad994d8689ab58/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/831635215727137506/cd4891e2fc8044eb87ad994d8689ab58/tags/mlflow.user b/mlruns/831635215727137506/cd4891e2fc8044eb87ad994d8689ab58/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/cd4891e2fc8044eb87ad994d8689ab58/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/artifacts/estimator.html b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/artifacts/estimator.html deleted file mode 100644 index 3fc41a3a590b59a9dec14b08bcecb41d251da967..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
DecisionTreeRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/artifacts/model/MLmodel b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/artifacts/model/MLmodel deleted file mode 100644 index 72c1575ccf1d2af3901842c294e9ffb06c72a700..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.sklearn - model_path: model.pkl - predict_fn: predict - python_version: 3.11.0 - sklearn: - code: null - pickled_model: model.pkl - serialization_format: cloudpickle - sklearn_version: 1.5.2 -mlflow_version: 2.16.2 -model_size_bytes: 550214 -model_uuid: 8be863eae1c0440189632a8bc337e85a -run_id: d564fcce492f461cab7c4ef8e14d9ec0 -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-30 12:08:30.175379' diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/artifacts/model/conda.yaml b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/artifacts/model/conda.yaml deleted file mode 100644 index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - cloudpickle==3.0.0 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 -name: mlflow-env diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/artifacts/model/model.pkl b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/artifacts/model/model.pkl deleted file mode 100644 index 9b3b592eff076b921155eefa4f6a7ef2112c8313..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f808d090ecf31cbaa063890df5144c205ee913b0a3b37d2f99a17b66dbd436b3 -size 550214 diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/artifacts/model/python_env.yaml b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/artifacts/model/requirements.txt b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/artifacts/model/requirements.txt deleted file mode 100644 index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -cloudpickle==3.0.0 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/inputs/a6d43021111a5a5590b3fd6194491f99/meta.yaml b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/inputs/a6d43021111a5a5590b3fd6194491f99/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/inputs/a6d43021111a5a5590b3fd6194491f99/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/inputs/a733250ddd8980bf84a671eddc8a921c/meta.yaml b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/inputs/a733250ddd8980bf84a671eddc8a921c/meta.yaml deleted file mode 100644 index 17c34ad08903a4ce3ec908a63642f36f025e6715..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/inputs/a733250ddd8980bf84a671eddc8a921c/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: dd4d89a524510f8914834c3bc9cd9e95 -destination_type: RUN -source_id: dd4d89a524510f8914834c3bc9cd9e95 -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/meta.yaml b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/meta.yaml deleted file mode 100644 index d16e41e3c0009447b56471aadbf1a39f9289bb06..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: file:///C:/Users/User/ML4I/air-quality-forecast/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/artifacts -end_time: 1727698165033 -entry_point_name: '' -experiment_id: '831635215727137506' -lifecycle_stage: active -run_id: d564fcce492f461cab7c4ef8e14d9ec0 -run_name: honorable-shark-452 -run_uuid: d564fcce492f461cab7c4ef8e14d9ec0 -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727698101309 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/system/cpu_utilization_percentage b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/system/cpu_utilization_percentage deleted file mode 100644 index 0b669a3bb4d33409b15cf0d6bf017a44a5db8067..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,5 +0,0 @@ -1727698119186 98.6 0 -1727698129605 100.0 1 -1727698140832 100.0 2 -1727698151457 100.0 3 -1727698161982 100.0 4 diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/system/disk_available_megabytes b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/system/disk_available_megabytes deleted file mode 100644 index bfb7df2f19f93f5a6ecba201a3a3a41b72128e8f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,5 +0,0 @@ -1727698119186 83323.9 0 -1727698129605 83293.5 1 -1727698140832 83306.0 2 -1727698151457 83269.5 3 -1727698161982 83228.0 4 diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/system/disk_usage_megabytes b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/system/disk_usage_megabytes deleted file mode 100644 index 97e1b3d3e15b3aa2e6e8155a0305a349a8549b21..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,5 +0,0 @@ -1727698119186 427813.2 0 -1727698129605 427843.5 1 -1727698140832 427831.1 2 -1727698151457 427867.6 3 -1727698161982 427909.1 4 diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/system/disk_usage_percentage b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/system/disk_usage_percentage deleted file mode 100644 index 616bf83bbb222918bb1f102a9acd5179874168c3..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,5 +0,0 @@ -1727698119186 83.7 0 -1727698129605 83.7 1 -1727698140832 83.7 2 -1727698151457 83.7 3 -1727698161982 83.7 4 diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index 64cf3b67cb0a35bed1d560aaae60ac2b7954fb4d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,5 +0,0 @@ -1727698119186 298.5 0 -1727698129605 289.1 1 -1727698140832 276.8 2 -1727698151457 291.5 3 -1727698161982 361.7 4 diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/system/gpu_0_memory_usage_percentage b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index 6af2759e1bd353eaaea0b95a4fa419ef91ca3aa7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,5 +0,0 @@ -1727698119186 13.9 0 -1727698129605 13.5 1 -1727698140832 12.9 2 -1727698151457 13.6 3 -1727698161982 16.8 4 diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/system/gpu_0_utilization_percentage b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index 468c46e09f0074a027289a5bd4d60919db004a01..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,5 +0,0 @@ -1727698119186 15.0 0 -1727698129605 6.0 1 -1727698140832 7.0 2 -1727698151457 11.0 3 -1727698161982 9.0 4 diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/system/network_receive_megabytes b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/system/network_receive_megabytes deleted file mode 100644 index 8b9dc1c4b5c802beffefaa360226f1db3998ab70..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,5 +0,0 @@ -1727698119186 6.599999994705286e-05 0 -1727698129605 0.2723479999999654 1 -1727698140832 0.6644430000000057 2 -1727698151457 1.2662319999999454 3 -1727698161982 1.381083999999987 4 diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/system/network_transmit_megabytes b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/system/network_transmit_megabytes deleted file mode 100644 index 6518b4f9b6db508e63c08b3d362937fc17e93bf1..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,5 +0,0 @@ -1727698119186 0.0 0 -1727698129605 0.07825799999999994 1 -1727698140832 0.18222999999999878 2 -1727698151457 0.3624899999999993 3 -1727698161982 0.39522699999999844 4 diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/system/system_memory_usage_megabytes b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index 87dab11d71e69b290417a39079410bffa8c9dece..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,5 +0,0 @@ -1727698119186 15451.1 0 -1727698129605 15731.8 1 -1727698140832 16076.8 2 -1727698151457 16413.2 3 -1727698161982 16592.1 4 diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/system/system_memory_usage_percentage b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/system/system_memory_usage_percentage deleted file mode 100644 index a003084484c549783b36ae192455ade151b986bb..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,5 +0,0 @@ -1727698119186 91.0 0 -1727698129605 92.6 1 -1727698140832 94.7 2 -1727698151457 96.6 3 -1727698161982 97.7 4 diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/training_mean_absolute_error b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/training_mean_absolute_error deleted file mode 100644 index 22b92f67c0659d24df8887a220367505ac8feb1f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727698109886 0.03072321914083741 0 diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/training_mean_squared_error b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/training_mean_squared_error deleted file mode 100644 index f6c2cb155ec043fc59e6a9901f34d39338f05167..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727698109886 0.18529091897770525 0 diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/training_r2_score b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/training_r2_score deleted file mode 100644 index e85a9c6797434960f2334897ab7c7d7199e02d71..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727698109886 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/training_root_mean_squared_error b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/training_root_mean_squared_error deleted file mode 100644 index 6c3d627e0d52652bcf6d7b133782ef5110ce1143..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727698109886 0.4304543169462995 0 diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/training_score b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/training_score deleted file mode 100644 index 7c03b9ee79b239a73abe40030a736c4356f7077d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727698109906 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/ccp_alpha b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/criterion b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/max_depth b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/max_features b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/max_features deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/max_features +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/max_leaf_nodes b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/min_impurity_decrease b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/min_samples_leaf b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/min_samples_split b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/min_samples_split deleted file mode 100644 index d8263ee9860594d2806b0dfd1bfd17528b0ba2a4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/min_samples_split +++ /dev/null @@ -1 +0,0 @@ -2 \ No newline at end of file diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/min_weight_fraction_leaf b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/monotonic_cst b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/random_state b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/splitter b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/splitter deleted file mode 100644 index e173194bb34f3a5b7fb4ca66c137c36492cdb60e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/params/splitter +++ /dev/null @@ -1 +0,0 @@ -best \ No newline at end of file diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/tags/estimator_class b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/tags/estimator_class deleted file mode 100644 index e049541749d94d9d1c082a3495fc52a31e663a30..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.tree._classes.DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/tags/estimator_name b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/tags/estimator_name deleted file mode 100644 index 133de2e2ca4faccc3c53cd6fc5a81c142569960d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/tags/mlflow.autologging b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/tags/mlflow.autologging deleted file mode 100644 index 044bdd758636edf2ee49b03917cb416d76a71de4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -sklearn \ No newline at end of file diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/tags/mlflow.log-model.history b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/tags/mlflow.log-model.history deleted file mode 100644 index ff4b862341007f2032da5e03e9ff7e2a813596f8..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "d564fcce492f461cab7c4ef8e14d9ec0", "artifact_path": "model", "utc_time_created": "2024-09-30 12:08:30.175379", "model_uuid": "8be863eae1c0440189632a8bc337e85a", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/tags/mlflow.runName b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/tags/mlflow.runName deleted file mode 100644 index 4569da465817f8b71825e812171d2278b75e077a..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -honorable-shark-452 \ No newline at end of file diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/tags/mlflow.source.git.commit b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/tags/mlflow.source.git.commit deleted file mode 100644 index b9ea510318a74d958a9174bc540d8caf7ea139e5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -2e3cee67a062d9b1790ae929ca7415c02604d303 \ No newline at end of file diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/tags/mlflow.source.name b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/tags/mlflow.source.type b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/tags/mlflow.user b/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/d564fcce492f461cab7c4ef8e14d9ec0/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/831635215727137506/datasets/19d2a1faf215ef44b979bbf135902c21/meta.yaml b/mlruns/831635215727137506/datasets/19d2a1faf215ef44b979bbf135902c21/meta.yaml deleted file mode 100644 index 65c48d4b56921221974bdde7eed83216fec87bc6..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/datasets/19d2a1faf215ef44b979bbf135902c21/meta.yaml +++ /dev/null @@ -1,9 +0,0 @@ -digest: 2ba3734a -name: dataset -profile: '{"features_shape": [1052, 33], "features_size": 34716, "features_nbytes": - 277728}' -schema: '{"mlflow_tensorspec": {"features": "[{\"type\": \"tensor\", \"tensor-spec\": - {\"dtype\": \"float64\", \"shape\": [-1, 33]}}]", "targets": null}}' -source: '{"tags": {"mlflow.user": "User", "mlflow.source.name": "c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py", - "mlflow.source.type": "LOCAL", "mlflow.source.git.commit": "da08d56ac3b3131519322c57e8db01547d638865"}}' -source_type: code diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/artifacts/estimator.html b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/artifacts/estimator.html deleted file mode 100644 index 3fc41a3a590b59a9dec14b08bcecb41d251da967..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
DecisionTreeRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/artifacts/model/MLmodel b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/artifacts/model/MLmodel deleted file mode 100644 index 453a1985ca504fdefe499ad8defd31a490a4958c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.sklearn - model_path: model.pkl - predict_fn: predict - python_version: 3.11.0 - sklearn: - code: null - pickled_model: model.pkl - serialization_format: cloudpickle - sklearn_version: 1.5.2 -mlflow_version: 2.16.2 -model_size_bytes: 550214 -model_uuid: 2046be9d0a63475781b6a4a107ef0967 -run_id: de70a9dd17ef4edbb014ee8e5b14295b -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-30 13:09:12.220786' diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/artifacts/model/conda.yaml b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/artifacts/model/conda.yaml deleted file mode 100644 index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - cloudpickle==3.0.0 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 -name: mlflow-env diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/artifacts/model/model.pkl b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/artifacts/model/model.pkl deleted file mode 100644 index 9b3b592eff076b921155eefa4f6a7ef2112c8313..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f808d090ecf31cbaa063890df5144c205ee913b0a3b37d2f99a17b66dbd436b3 -size 550214 diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/artifacts/model/python_env.yaml b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/artifacts/model/requirements.txt b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/artifacts/model/requirements.txt deleted file mode 100644 index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -cloudpickle==3.0.0 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/inputs/56946bcf4a727088c814deb24f0d4e1f/meta.yaml b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/inputs/56946bcf4a727088c814deb24f0d4e1f/meta.yaml deleted file mode 100644 index 17c34ad08903a4ce3ec908a63642f36f025e6715..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/inputs/56946bcf4a727088c814deb24f0d4e1f/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: dd4d89a524510f8914834c3bc9cd9e95 -destination_type: RUN -source_id: dd4d89a524510f8914834c3bc9cd9e95 -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/inputs/f9620f1c7db9c3d15097d10f7150f279/meta.yaml b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/inputs/f9620f1c7db9c3d15097d10f7150f279/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/inputs/f9620f1c7db9c3d15097d10f7150f279/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/meta.yaml b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/meta.yaml deleted file mode 100644 index d641a1a20d3d7a03ae6ec450f5b6962018454949..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: file:///C:/Users/User/ML4I/air-quality-forecast/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/artifacts -end_time: 1727701795661 -entry_point_name: '' -experiment_id: '831635215727137506' -lifecycle_stage: active -run_id: de70a9dd17ef4edbb014ee8e5b14295b -run_name: languid-hare-540 -run_uuid: de70a9dd17ef4edbb014ee8e5b14295b -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727701748101 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/system/cpu_utilization_percentage b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/system/cpu_utilization_percentage deleted file mode 100644 index ada86f14fb43f5be7e371342bab61d85c8a90f38..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,3 +0,0 @@ -1727701761379 82.1 0 -1727701772171 99.7 1 -1727701787893 100.0 2 diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/system/disk_available_megabytes b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/system/disk_available_megabytes deleted file mode 100644 index bb7e13ca35df95b22e490eac7d4f90cd050f5e80..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727701761379 83024.3 0 -1727701772171 83039.5 1 -1727701787893 83080.4 2 diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/system/disk_usage_megabytes b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/system/disk_usage_megabytes deleted file mode 100644 index a5920083da83e144315e8000037facf1fee96188..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727701761379 428112.8 0 -1727701772171 428097.6 1 -1727701787893 428056.7 2 diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/system/disk_usage_percentage b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/system/disk_usage_percentage deleted file mode 100644 index cc58f29e83e4c060c63c450ca5e840499c556bda..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,3 +0,0 @@ -1727701761379 83.8 0 -1727701772171 83.8 1 -1727701787893 83.7 2 diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index bb8ae6e6dd7b8a98c58eb2912475be78caaf73bc..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727701761379 211.8 0 -1727701772171 209.2 1 -1727701787893 225.3 2 diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/system/gpu_0_memory_usage_percentage b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index 7db5c932dc0cae02f9e25c9ca016406bd33962ec..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,3 +0,0 @@ -1727701761379 9.9 0 -1727701772171 9.7 1 -1727701787893 10.5 2 diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/system/gpu_0_utilization_percentage b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index f444838d912c2911f5e5a8acbd77c62ac52e28e6..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,3 +0,0 @@ -1727701761379 4.0 0 -1727701772171 4.0 1 -1727701787893 6.0 2 diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/system/network_receive_megabytes b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/system/network_receive_megabytes deleted file mode 100644 index 0a7a9e9ab3e17c8c0541df4527c21aadcc8ef0bf..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727701761379 6.599999994705286e-05 0 -1727701772171 0.016020000000025902 1 -1727701787893 0.042200999999977284 2 diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/system/network_transmit_megabytes b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/system/network_transmit_megabytes deleted file mode 100644 index 445e0d78af0fb04ce2093a715716470aaec0eed2..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727701761379 0.00012100000000003774 0 -1727701772171 0.005122000000000071 1 -1727701787893 0.019536999999999694 2 diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/system/system_memory_usage_megabytes b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index 2e99ac6af28c5aa7f8227de53a4b2663ac21624a..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,3 +0,0 @@ -1727701761379 16628.5 0 -1727701772171 16332.3 1 -1727701787893 16217.0 2 diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/system/system_memory_usage_percentage b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/system/system_memory_usage_percentage deleted file mode 100644 index 2173f448b3d13d4b23ab474339a5196c91255f0c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,3 +0,0 @@ -1727701761379 97.9 0 -1727701772171 96.2 1 -1727701787893 95.5 2 diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/training_mean_absolute_error b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/training_mean_absolute_error deleted file mode 100644 index dd1b899d5acf98fae0ce032f89731d88a796fe45..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727701751810 0.03072321914083741 0 diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/training_mean_squared_error b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/training_mean_squared_error deleted file mode 100644 index 5196b5287ff64b7805734b38b5a81a83a8c307d2..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727701751810 0.18529091897770525 0 diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/training_r2_score b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/training_r2_score deleted file mode 100644 index dde5aea1119d73570a1150c6093914ca0adba28c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727701751810 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/training_root_mean_squared_error b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/training_root_mean_squared_error deleted file mode 100644 index 1b95dfdc2b86ad528326416ce5dda30d542e1c64..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727701751810 0.4304543169462995 0 diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/training_score b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/training_score deleted file mode 100644 index fcc40d41f27169885d2b9567b480c8bcdb580e7b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727701751824 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/ccp_alpha b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/criterion b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/max_depth b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/max_features b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/max_features deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/max_features +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/max_leaf_nodes b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/min_impurity_decrease b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/min_samples_leaf b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/min_samples_split b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/min_samples_split deleted file mode 100644 index d8263ee9860594d2806b0dfd1bfd17528b0ba2a4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/min_samples_split +++ /dev/null @@ -1 +0,0 @@ -2 \ No newline at end of file diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/min_weight_fraction_leaf b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/monotonic_cst b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/random_state b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/splitter b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/splitter deleted file mode 100644 index e173194bb34f3a5b7fb4ca66c137c36492cdb60e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/params/splitter +++ /dev/null @@ -1 +0,0 @@ -best \ No newline at end of file diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/tags/estimator_class b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/tags/estimator_class deleted file mode 100644 index e049541749d94d9d1c082a3495fc52a31e663a30..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.tree._classes.DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/tags/estimator_name b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/tags/estimator_name deleted file mode 100644 index 133de2e2ca4faccc3c53cd6fc5a81c142569960d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/tags/mlflow.autologging b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/tags/mlflow.autologging deleted file mode 100644 index 044bdd758636edf2ee49b03917cb416d76a71de4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -sklearn \ No newline at end of file diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/tags/mlflow.log-model.history b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/tags/mlflow.log-model.history deleted file mode 100644 index ebff6000fd58fc3e0bbae1d75aff283686c9dd4a..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "de70a9dd17ef4edbb014ee8e5b14295b", "artifact_path": "model", "utc_time_created": "2024-09-30 13:09:12.220786", "model_uuid": "2046be9d0a63475781b6a4a107ef0967", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/tags/mlflow.runName b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/tags/mlflow.runName deleted file mode 100644 index 099d701f6d6cc901f832114a6501618c2154741a..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -languid-hare-540 \ No newline at end of file diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/tags/mlflow.source.git.commit b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/tags/mlflow.source.git.commit deleted file mode 100644 index b9ea510318a74d958a9174bc540d8caf7ea139e5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -2e3cee67a062d9b1790ae929ca7415c02604d303 \ No newline at end of file diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/tags/mlflow.source.name b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/tags/mlflow.source.type b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/tags/mlflow.user b/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/de70a9dd17ef4edbb014ee8e5b14295b/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/artifacts/estimator.html b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/artifacts/estimator.html deleted file mode 100644 index 3fc41a3a590b59a9dec14b08bcecb41d251da967..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
DecisionTreeRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/artifacts/model/MLmodel b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/artifacts/model/MLmodel deleted file mode 100644 index 0934cbaa76923e1c66d37ad417999ea7ea06f100..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.sklearn - model_path: model.pkl - predict_fn: predict - python_version: 3.11.0 - sklearn: - code: null - pickled_model: model.pkl - serialization_format: cloudpickle - sklearn_version: 1.5.2 -mlflow_version: 2.16.2 -model_size_bytes: 550214 -model_uuid: 5a62418a3c3d4007ac577c010dffebd4 -run_id: f90f4a09145b4c1fbeb04c9cb94de9d8 -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-30 13:05:47.580984' diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/artifacts/model/conda.yaml b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/artifacts/model/conda.yaml deleted file mode 100644 index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - cloudpickle==3.0.0 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 -name: mlflow-env diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/artifacts/model/model.pkl b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/artifacts/model/model.pkl deleted file mode 100644 index 9b3b592eff076b921155eefa4f6a7ef2112c8313..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f808d090ecf31cbaa063890df5144c205ee913b0a3b37d2f99a17b66dbd436b3 -size 550214 diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/artifacts/model/python_env.yaml b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/artifacts/model/requirements.txt b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/artifacts/model/requirements.txt deleted file mode 100644 index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -cloudpickle==3.0.0 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/inputs/42ab7094addb4f8de6944670f66c151f/meta.yaml b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/inputs/42ab7094addb4f8de6944670f66c151f/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/inputs/42ab7094addb4f8de6944670f66c151f/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/inputs/711dd1a42563eed651f1e057604a8152/meta.yaml b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/inputs/711dd1a42563eed651f1e057604a8152/meta.yaml deleted file mode 100644 index 17c34ad08903a4ce3ec908a63642f36f025e6715..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/inputs/711dd1a42563eed651f1e057604a8152/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: dd4d89a524510f8914834c3bc9cd9e95 -destination_type: RUN -source_id: dd4d89a524510f8914834c3bc9cd9e95 -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/meta.yaml b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/meta.yaml deleted file mode 100644 index 8ebe10ddf22cb49e3f2b2f750b3068b27232e0f5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: file:///C:/Users/User/ML4I/air-quality-forecast/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/artifacts -end_time: 1727701574017 -entry_point_name: '' -experiment_id: '831635215727137506' -lifecycle_stage: active -run_id: f90f4a09145b4c1fbeb04c9cb94de9d8 -run_name: fearless-stag-366 -run_uuid: f90f4a09145b4c1fbeb04c9cb94de9d8 -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727701543479 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/system/cpu_utilization_percentage b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/system/cpu_utilization_percentage deleted file mode 100644 index 98beb80d3bb6047f99210c2fef111ab7ee07f146..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,2 +0,0 @@ -1727701556826 99.8 0 -1727701567138 99.8 1 diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/system/disk_available_megabytes b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/system/disk_available_megabytes deleted file mode 100644 index 087da943881614bb17428139e2619d2b144271d0..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727701556826 83121.9 0 -1727701567138 83128.7 1 diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/system/disk_usage_megabytes b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/system/disk_usage_megabytes deleted file mode 100644 index c7ff4501fe9315fb719e2e3ea0486a5309e01343..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727701556826 428015.2 0 -1727701567138 428008.4 1 diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/system/disk_usage_percentage b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/system/disk_usage_percentage deleted file mode 100644 index c47ef8abb13e9a07fb569a1b1dcb52e64bbc0180..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,2 +0,0 @@ -1727701556826 83.7 0 -1727701567138 83.7 1 diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index 18dcf2da1e23199b539ece89318b243ee2d9417e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727701556826 229.3 0 -1727701567138 207.2 1 diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/system/gpu_0_memory_usage_percentage b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index e8040029c88b47a8544ee8a16c2b8786088f5e90..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,2 +0,0 @@ -1727701556826 10.7 0 -1727701567138 9.7 1 diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/system/gpu_0_utilization_percentage b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index 1b5e7575d1e706dad8abcdf91dfbfb8d7280dce1..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,2 +0,0 @@ -1727701556826 37.0 0 -1727701567138 5.0 1 diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/system/network_receive_megabytes b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/system/network_receive_megabytes deleted file mode 100644 index 19ba2267b50d0be5864cf2a7477f3d6498d986b4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727701556826 0.0064889999999877546 0 -1727701567138 0.9545469999999341 1 diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/system/network_transmit_megabytes b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/system/network_transmit_megabytes deleted file mode 100644 index 7400d9326d040652f37a7d00fa430b3d400b3178..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727701556826 0.0036629999999995277 0 -1727701567138 0.40557400000000143 1 diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/system/system_memory_usage_megabytes b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index 70bde4bea8b7e95c87852fa7d31785b2d0e71db7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727701556826 16553.7 0 -1727701567138 16569.9 1 diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/system/system_memory_usage_percentage b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/system/system_memory_usage_percentage deleted file mode 100644 index 1a6d1007426024ccf1c6a05cea02a883c7882e39..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,2 +0,0 @@ -1727701556826 97.5 0 -1727701567138 97.6 1 diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/training_mean_absolute_error b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/training_mean_absolute_error deleted file mode 100644 index 2bcbecbfa952d342b188cb6b0a883224959fc876..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727701547208 0.03072321914083741 0 diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/training_mean_squared_error b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/training_mean_squared_error deleted file mode 100644 index 46584ae23b4b1007aadfe0be48552bf9593c0a34..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727701547208 0.18529091897770525 0 diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/training_r2_score b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/training_r2_score deleted file mode 100644 index 335b940f355c3bb31a762a75eea0becd13f9daaa..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727701547208 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/training_root_mean_squared_error b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/training_root_mean_squared_error deleted file mode 100644 index 5a3978775ff9d59cf9807597c6642de0d2972145..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727701547208 0.4304543169462995 0 diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/training_score b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/training_score deleted file mode 100644 index aebb69ec014c2695acb7a5fd4caafd1389910cc0..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727701547214 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/ccp_alpha b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/criterion b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/max_depth b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/max_features b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/max_features deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/max_features +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/max_leaf_nodes b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/min_impurity_decrease b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/min_samples_leaf b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/min_samples_split b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/min_samples_split deleted file mode 100644 index d8263ee9860594d2806b0dfd1bfd17528b0ba2a4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/min_samples_split +++ /dev/null @@ -1 +0,0 @@ -2 \ No newline at end of file diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/min_weight_fraction_leaf b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/monotonic_cst b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/random_state b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/splitter b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/splitter deleted file mode 100644 index e173194bb34f3a5b7fb4ca66c137c36492cdb60e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/params/splitter +++ /dev/null @@ -1 +0,0 @@ -best \ No newline at end of file diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/tags/estimator_class b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/tags/estimator_class deleted file mode 100644 index e049541749d94d9d1c082a3495fc52a31e663a30..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.tree._classes.DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/tags/estimator_name b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/tags/estimator_name deleted file mode 100644 index 133de2e2ca4faccc3c53cd6fc5a81c142569960d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/tags/mlflow.autologging b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/tags/mlflow.autologging deleted file mode 100644 index 044bdd758636edf2ee49b03917cb416d76a71de4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -sklearn \ No newline at end of file diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/tags/mlflow.log-model.history b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/tags/mlflow.log-model.history deleted file mode 100644 index 2db00fbe39a9d3be7168a7fe168607e27017462d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "f90f4a09145b4c1fbeb04c9cb94de9d8", "artifact_path": "model", "utc_time_created": "2024-09-30 13:05:47.580984", "model_uuid": "5a62418a3c3d4007ac577c010dffebd4", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/tags/mlflow.runName b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/tags/mlflow.runName deleted file mode 100644 index 53162a5ebf171cd20384b4797bf6c95fa4027293..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -fearless-stag-366 \ No newline at end of file diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/tags/mlflow.source.git.commit b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/tags/mlflow.source.git.commit deleted file mode 100644 index b9ea510318a74d958a9174bc540d8caf7ea139e5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -2e3cee67a062d9b1790ae929ca7415c02604d303 \ No newline at end of file diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/tags/mlflow.source.name b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/tags/mlflow.source.type b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/tags/mlflow.user b/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f90f4a09145b4c1fbeb04c9cb94de9d8/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/artifacts/estimator.html b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/artifacts/estimator.html deleted file mode 100644 index 3fc41a3a590b59a9dec14b08bcecb41d251da967..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
DecisionTreeRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/artifacts/model/MLmodel b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/artifacts/model/MLmodel deleted file mode 100644 index d44d9d460a56cd57c19691418388dc7bc923c0bb..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.sklearn - model_path: model.pkl - predict_fn: predict - python_version: 3.11.0 - sklearn: - code: null - pickled_model: model.pkl - serialization_format: cloudpickle - sklearn_version: 1.5.2 -mlflow_version: 2.16.2 -model_size_bytes: 550214 -model_uuid: 6bc9eb6392be4797862b3282c0706da8 -run_id: f9d95f6ab6284f25a8ff08937c3ce6c3 -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-30 16:10:29.014833' diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/artifacts/model/conda.yaml b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/artifacts/model/conda.yaml deleted file mode 100644 index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - cloudpickle==3.0.0 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 -name: mlflow-env diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/artifacts/model/model.pkl b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/artifacts/model/model.pkl deleted file mode 100644 index 9b3b592eff076b921155eefa4f6a7ef2112c8313..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f808d090ecf31cbaa063890df5144c205ee913b0a3b37d2f99a17b66dbd436b3 -size 550214 diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/artifacts/model/python_env.yaml b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/artifacts/model/requirements.txt b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/artifacts/model/requirements.txt deleted file mode 100644 index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -cloudpickle==3.0.0 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/inputs/2b1661a0e478641c77086c467112a904/meta.yaml b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/inputs/2b1661a0e478641c77086c467112a904/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/inputs/2b1661a0e478641c77086c467112a904/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/inputs/2f092fa0de82b4808251204ecb4d311d/meta.yaml b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/inputs/2f092fa0de82b4808251204ecb4d311d/meta.yaml deleted file mode 100644 index 17c34ad08903a4ce3ec908a63642f36f025e6715..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/inputs/2f092fa0de82b4808251204ecb4d311d/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: dd4d89a524510f8914834c3bc9cd9e95 -destination_type: RUN -source_id: dd4d89a524510f8914834c3bc9cd9e95 -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/meta.yaml b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/meta.yaml deleted file mode 100644 index 0e4686d8dcd2e0a18dc557787d86f07613fc120b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: file:///C:/Users/User/ML4I/air-quality-forecast/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/artifacts -end_time: 1727712671708 -entry_point_name: '' -experiment_id: '831635215727137506' -lifecycle_stage: active -run_id: f9d95f6ab6284f25a8ff08937c3ce6c3 -run_name: Bayesian_Optimization_Training_and_Eval -run_uuid: f9d95f6ab6284f25a8ff08937c3ce6c3 -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727712581591 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/system/cpu_utilization_percentage b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/system/cpu_utilization_percentage deleted file mode 100644 index cd2c7214780fd5c18013f5ae858a9f84ec509d41..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,7 +0,0 @@ -1727712607643 86.1 0 -1727712618024 99.9 1 -1727712629987 100.0 2 -1727712640215 98.7 3 -1727712650450 77.2 4 -1727712660761 99.5 5 -1727712671139 100.0 6 diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/system/disk_available_megabytes b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/system/disk_available_megabytes deleted file mode 100644 index 1129bb74ee6f0b72a90ab0117adee57e5b3430d9..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,7 +0,0 @@ -1727712607643 83034.1 0 -1727712618024 83020.1 1 -1727712629987 83019.6 2 -1727712640215 83021.4 3 -1727712650450 83021.3 4 -1727712660761 82998.5 5 -1727712671139 83010.9 6 diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/system/disk_usage_megabytes b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/system/disk_usage_megabytes deleted file mode 100644 index de7d90ccdcb1a6f1c91f37af9c51c134d28bb377..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,7 +0,0 @@ -1727712607643 428103.0 0 -1727712618024 428117.0 1 -1727712629987 428117.5 2 -1727712640215 428115.7 3 -1727712650450 428115.8 4 -1727712660761 428138.6 5 -1727712671139 428126.2 6 diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/system/disk_usage_percentage b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/system/disk_usage_percentage deleted file mode 100644 index 9a48271baad6267e0749e0e0612085750f766c2d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,7 +0,0 @@ -1727712607643 83.8 0 -1727712618024 83.8 1 -1727712629987 83.8 2 -1727712640215 83.8 3 -1727712650450 83.8 4 -1727712660761 83.8 5 -1727712671139 83.8 6 diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index 96b18aed5e33cde9c39ba08a5b5d23b78f0f395e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,7 +0,0 @@ -1727712607643 234.2 0 -1727712618024 277.3 1 -1727712629987 290.7 2 -1727712640215 278.4 3 -1727712650450 285.0 4 -1727712660761 256.3 5 -1727712671139 252.8 6 diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/system/gpu_0_memory_usage_percentage b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index a1d669fcace06de1175a1a2132130d460fb5a86e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,7 +0,0 @@ -1727712607643 10.9 0 -1727712618024 12.9 1 -1727712629987 13.5 2 -1727712640215 13.0 3 -1727712650450 13.3 4 -1727712660761 11.9 5 -1727712671139 11.8 6 diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/system/gpu_0_utilization_percentage b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index bf99c6ab06191f4d13c1ed0be78e50de419b51af..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,7 +0,0 @@ -1727712607643 23.0 0 -1727712618024 4.0 1 -1727712629987 9.0 2 -1727712640215 6.0 3 -1727712650450 6.0 4 -1727712660761 6.0 5 -1727712671139 3.0 6 diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/system/network_receive_megabytes b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/system/network_receive_megabytes deleted file mode 100644 index 5f0917243177c28fca7b80fb2e23df285aac0c45..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,7 +0,0 @@ -1727712607643 6.600000000034356e-05 0 -1727712618024 0.1267630000000004 1 -1727712629987 0.41783000000000037 2 -1727712640215 0.5625330000000002 3 -1727712650450 0.5709400000000002 4 -1727712660761 1.2745940000000004 5 -1727712671139 1.4992260000000002 6 diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/system/network_transmit_megabytes b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/system/network_transmit_megabytes deleted file mode 100644 index 13dffdcd245479258028f21aa9654be50bea7828..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,7 +0,0 @@ -1727712607643 5.500000000013827e-05 0 -1727712618024 0.025758999999999865 1 -1727712629987 0.07883800000000019 2 -1727712640215 0.12693500000000002 3 -1727712650450 0.14108600000000004 4 -1727712660761 0.2471700000000001 5 -1727712671139 0.319229 6 diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/system/system_memory_usage_megabytes b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index faed2d355a0d648875be9d35b810e26957a045ee..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,7 +0,0 @@ -1727712607643 14758.5 0 -1727712618024 15132.6 1 -1727712629987 15459.2 2 -1727712640215 15879.1 3 -1727712650450 15887.8 4 -1727712660761 16022.6 5 -1727712671139 16217.1 6 diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/system/system_memory_usage_percentage b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/system/system_memory_usage_percentage deleted file mode 100644 index 8520678c56891835de5aa50910de3605a37c1bb1..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,7 +0,0 @@ -1727712607643 86.9 0 -1727712618024 89.1 1 -1727712629987 91.0 2 -1727712640215 93.5 3 -1727712650450 93.5 4 -1727712660761 94.3 5 -1727712671139 95.5 6 diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/test_mse b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/test_mse deleted file mode 100644 index c1667db0addac94f076ff65b635bd20cbc56a973..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/test_mse +++ /dev/null @@ -1 +0,0 @@ -1727712671611 68.4960392902408 0 diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/test_rmse b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/test_rmse deleted file mode 100644 index ed62c773c863d2750273e9295ed129663f969c56..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/test_rmse +++ /dev/null @@ -1 +0,0 @@ -1727712671662 7.797716661543197 0 diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/train_mse b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/train_mse deleted file mode 100644 index 9abd5d1714103597ef54e6e017e7c7a8525f2e1c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/train_mse +++ /dev/null @@ -1 +0,0 @@ -1727712671394 77.0608660130719 0 diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/training_mean_absolute_error b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/training_mean_absolute_error deleted file mode 100644 index ac3fee33171e94377725326b9f0f31b2c9f4aff6..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727712628799 0.03072321914083741 0 diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/training_mean_squared_error b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/training_mean_squared_error deleted file mode 100644 index 1f2ff5a3637985c424fde50c764212e413f79592..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727712628799 0.18529091897770525 0 diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/training_r2_score b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/training_r2_score deleted file mode 100644 index 0ac6dd6ae8ec21d86a7b0a44591075decabd9b58..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727712628799 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/training_root_mean_squared_error b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/training_root_mean_squared_error deleted file mode 100644 index dc1191c0146baadeead5bdd8973be00a998b9d41..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727712628799 0.4304543169462995 0 diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/training_score b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/training_score deleted file mode 100644 index d78a52819473e47f23d8b27ae12e78120ad8f225..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727712628806 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/ccp_alpha b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/criterion b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/max_depth b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/max_features b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/max_features deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/max_features +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/max_leaf_nodes b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/min_impurity_decrease b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/min_samples_leaf b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/min_samples_split b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/min_samples_split deleted file mode 100644 index d8263ee9860594d2806b0dfd1bfd17528b0ba2a4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/min_samples_split +++ /dev/null @@ -1 +0,0 @@ -2 \ No newline at end of file diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/min_weight_fraction_leaf b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/monotonic_cst b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/random_state b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/splitter b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/splitter deleted file mode 100644 index e173194bb34f3a5b7fb4ca66c137c36492cdb60e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/params/splitter +++ /dev/null @@ -1 +0,0 @@ -best \ No newline at end of file diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/tags/estimator_class b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/tags/estimator_class deleted file mode 100644 index e049541749d94d9d1c082a3495fc52a31e663a30..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.tree._classes.DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/tags/estimator_name b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/tags/estimator_name deleted file mode 100644 index 133de2e2ca4faccc3c53cd6fc5a81c142569960d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/tags/mlflow.log-model.history b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/tags/mlflow.log-model.history deleted file mode 100644 index f2565c98f89cd9ba63486687e6cebbe76f1ba6f6..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "f9d95f6ab6284f25a8ff08937c3ce6c3", "artifact_path": "model", "utc_time_created": "2024-09-30 16:10:29.014833", "model_uuid": "6bc9eb6392be4797862b3282c0706da8", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/tags/mlflow.runName b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/tags/mlflow.runName deleted file mode 100644 index 39c57e5e2445a0b5c78f476020799ebb5c99fb29..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -Bayesian_Optimization_Training_and_Eval \ No newline at end of file diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/tags/mlflow.source.git.commit b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/tags/mlflow.source.git.commit deleted file mode 100644 index b9ea510318a74d958a9174bc540d8caf7ea139e5..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -2e3cee67a062d9b1790ae929ca7415c02604d303 \ No newline at end of file diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/tags/mlflow.source.name b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/tags/mlflow.source.type b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/tags/mlflow.user b/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/f9d95f6ab6284f25a8ff08937c3ce6c3/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/artifacts/estimator.html b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/artifacts/estimator.html deleted file mode 100644 index 3fc41a3a590b59a9dec14b08bcecb41d251da967..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
DecisionTreeRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/artifacts/model/MLmodel b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/artifacts/model/MLmodel deleted file mode 100644 index db7cfda328ef14133b52649a65908fc4c0721b67..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.sklearn - model_path: model.pkl - predict_fn: predict - python_version: 3.11.0 - sklearn: - code: null - pickled_model: model.pkl - serialization_format: cloudpickle - sklearn_version: 1.5.2 -mlflow_version: 2.16.2 -model_size_bytes: 550214 -model_uuid: 1a0883a7eed448deb0b9153c596ef53b -run_id: fd9daff8346f4f7f95cb62d4c3d2b65b -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-29 21:37:12.465047' diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/artifacts/model/conda.yaml b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/artifacts/model/conda.yaml deleted file mode 100644 index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - cloudpickle==3.0.0 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 -name: mlflow-env diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/artifacts/model/model.pkl b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/artifacts/model/model.pkl deleted file mode 100644 index 9b3b592eff076b921155eefa4f6a7ef2112c8313..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f808d090ecf31cbaa063890df5144c205ee913b0a3b37d2f99a17b66dbd436b3 -size 550214 diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/artifacts/model/python_env.yaml b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/artifacts/model/requirements.txt b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/artifacts/model/requirements.txt deleted file mode 100644 index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -cloudpickle==3.0.0 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/inputs/0015eb3595678847fbc1103742929613/meta.yaml b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/inputs/0015eb3595678847fbc1103742929613/meta.yaml deleted file mode 100644 index 17c34ad08903a4ce3ec908a63642f36f025e6715..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/inputs/0015eb3595678847fbc1103742929613/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: dd4d89a524510f8914834c3bc9cd9e95 -destination_type: RUN -source_id: dd4d89a524510f8914834c3bc9cd9e95 -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/inputs/ed8e2d2fb1e523a92d40c3c73de7bc3d/meta.yaml b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/inputs/ed8e2d2fb1e523a92d40c3c73de7bc3d/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/inputs/ed8e2d2fb1e523a92d40c3c73de7bc3d/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/meta.yaml b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/meta.yaml deleted file mode 100644 index 620d599728d1d6e4e8c7355a3f380b026b2b7b66..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: file:///C:/Users/User/ML4I/air-quality-forecast/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/artifacts -end_time: 1727645847446 -entry_point_name: '' -experiment_id: '831635215727137506' -lifecycle_stage: active -run_id: fd9daff8346f4f7f95cb62d4c3d2b65b -run_name: rambunctious-yak-915 -run_uuid: fd9daff8346f4f7f95cb62d4c3d2b65b -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727645829625 -status: 3 -tags: [] -user_id: User diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/system/cpu_utilization_percentage b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/system/cpu_utilization_percentage deleted file mode 100644 index 7bcfc05a513fe0e14057a97e71f562cf66010c13..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1 +0,0 @@ -1727645842245 88.6 0 diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/system/disk_available_megabytes b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/system/disk_available_megabytes deleted file mode 100644 index fc4eca0fbd76d41dd3e4905b53ebace6022fa62c..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/system/disk_available_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727645842245 90961.1 0 diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/system/disk_usage_megabytes b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/system/disk_usage_megabytes deleted file mode 100644 index 7afe8b1b0bd81fca59915bc76fc8bba416d0c280..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727645842245 420176.0 0 diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/system/disk_usage_percentage b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/system/disk_usage_percentage deleted file mode 100644 index 7894c9d15bdc59a6621bef42fc403b39186e6e38..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/system/disk_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727645842245 82.2 0 diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/system/gpu_0_memory_usage_megabytes b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index 2b978e36f280beb3aa416d72ac1f22a02db5a433..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727645842245 312.7 0 diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/system/gpu_0_memory_usage_percentage b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index da48441a7723a96a49f578cdc90775f03fa819c9..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727645842245 14.6 0 diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/system/gpu_0_utilization_percentage b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index d9889c7dae482e2ea451905e966796a3f590389f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1 +0,0 @@ -1727645842245 1.0 0 diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/system/network_receive_megabytes b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/system/network_receive_megabytes deleted file mode 100644 index b063db8f8b41a5c1f394ef8d5059f02485cb01b6..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/system/network_receive_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727645842245 0.0 0 diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/system/network_transmit_megabytes b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/system/network_transmit_megabytes deleted file mode 100644 index b063db8f8b41a5c1f394ef8d5059f02485cb01b6..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727645842245 0.0 0 diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/system/system_memory_usage_megabytes b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index 0bddb42b69ccfdb9fcb92580211a8b9cdeae6a33..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1 +0,0 @@ -1727645842245 11180.4 0 diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/system/system_memory_usage_percentage b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/system/system_memory_usage_percentage deleted file mode 100644 index bc85a61ec93212609eb9b8fef3ea3e234986c997..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1 +0,0 @@ -1727645842245 65.8 0 diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/training_mean_absolute_error b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/training_mean_absolute_error deleted file mode 100644 index 5b1dbc5cf4100604bb8578c2a73e41326f4c5477..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727645832325 0.03072321914083741 0 diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/training_mean_squared_error b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/training_mean_squared_error deleted file mode 100644 index 1900aa443075fe93d826d40e1c8203b1e7cd92f8..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727645832325 0.18529091897770525 0 diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/training_r2_score b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/training_r2_score deleted file mode 100644 index 762493afec069c19115efdfc0600a79a69279b8e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727645832325 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/training_root_mean_squared_error b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/training_root_mean_squared_error deleted file mode 100644 index e14c09011d3ff692fb084959e86d557086377162..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727645832325 0.4304543169462995 0 diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/training_score b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/training_score deleted file mode 100644 index 40a573007fb3bee621b4040dd023bddff96e4827..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727645832327 0.9967299090561106 0 diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/ccp_alpha b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/criterion b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/max_depth b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/max_features b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/max_features deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/max_features +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/max_leaf_nodes b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/min_impurity_decrease b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/min_samples_leaf b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/min_samples_split b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/min_samples_split deleted file mode 100644 index d8263ee9860594d2806b0dfd1bfd17528b0ba2a4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/min_samples_split +++ /dev/null @@ -1 +0,0 @@ -2 \ No newline at end of file diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/min_weight_fraction_leaf b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/monotonic_cst b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/random_state b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/splitter b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/splitter deleted file mode 100644 index e173194bb34f3a5b7fb4ca66c137c36492cdb60e..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/params/splitter +++ /dev/null @@ -1 +0,0 @@ -best \ No newline at end of file diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/tags/estimator_class b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/tags/estimator_class deleted file mode 100644 index e049541749d94d9d1c082a3495fc52a31e663a30..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.tree._classes.DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/tags/estimator_name b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/tags/estimator_name deleted file mode 100644 index 133de2e2ca4faccc3c53cd6fc5a81c142569960d..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -DecisionTreeRegressor \ No newline at end of file diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/tags/mlflow.autologging b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/tags/mlflow.autologging deleted file mode 100644 index 044bdd758636edf2ee49b03917cb416d76a71de4..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -sklearn \ No newline at end of file diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/tags/mlflow.log-model.history b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/tags/mlflow.log-model.history deleted file mode 100644 index 447d869b4e59840c0f7ddd8be4e37fc6c1ee468a..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "fd9daff8346f4f7f95cb62d4c3d2b65b", "artifact_path": "model", "utc_time_created": "2024-09-29 21:37:12.465047", "model_uuid": "1a0883a7eed448deb0b9153c596ef53b", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/tags/mlflow.runName b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/tags/mlflow.runName deleted file mode 100644 index 9393099fcb18c7e258f08c91ba45ce793daa18b0..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -rambunctious-yak-915 \ No newline at end of file diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/tags/mlflow.source.git.commit b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/tags/mlflow.source.git.commit deleted file mode 100644 index 6a04567d482b95da916b8765e0e8616fdd6b913f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -50f51da8088aa9c4731e2604257dd2f36c417b5d \ No newline at end of file diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/tags/mlflow.source.name b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/tags/mlflow.source.name deleted file mode 100644 index 05ab8fbe0d37e0221faabeda851f917e26390ac7..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py \ No newline at end of file diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/tags/mlflow.source.type b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/tags/mlflow.user b/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/fd9daff8346f4f7f95cb62d4c3d2b65b/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/mlruns/831635215727137506/meta.yaml b/mlruns/831635215727137506/meta.yaml deleted file mode 100644 index d41d9daa9ce4fad839860fe86fff55e8d2e67039..0000000000000000000000000000000000000000 --- a/mlruns/831635215727137506/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -artifact_location: file:///C:/Users/User/ML4I/air-quality-forecast/mlruns/831635215727137506 -creation_time: 1727640956764 -experiment_id: '831635215727137506' -last_update_time: 1727640956764 -lifecycle_stage: active -name: DecisionTree-BayesianOptimization diff --git a/models/.gitkeep b/models/.gitkeep deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/mlartifacts/149819317988706962/135e604974134ca4877227251e765174/artifacts/estimator.html b/notebooks/mlartifacts/371509179810119961/442b56b8dbb5497d8b360a75c6933267/artifacts/estimator.html similarity index 71% rename from mlartifacts/149819317988706962/135e604974134ca4877227251e765174/artifacts/estimator.html rename to notebooks/mlartifacts/371509179810119961/442b56b8dbb5497d8b360a75c6933267/artifacts/estimator.html index 4382cb542c5a9e966109ce86a3b14c67175729fb..111d847c242d7177854f3c5860812769dccc2e8b 100644 --- a/mlartifacts/149819317988706962/135e604974134ca4877227251e765174/artifacts/estimator.html +++ b/notebooks/mlartifacts/371509179810119961/442b56b8dbb5497d8b360a75c6933267/artifacts/estimator.html @@ -5,7 +5,7 @@ -
RandomForestRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
+
GaussianProcessRegressor(kernel=1**2 * Matern(length_scale=[1, 1, 1, 1, 1, 1, 1, 1, 1], nu=2.5) + WhiteKernel(noise_level=1),
+                         n_restarts_optimizer=2, noise='gaussian',
+                         normalize_y=True, random_state=1395647406)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
\ No newline at end of file diff --git a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/artifacts/model/MLmodel b/notebooks/mlartifacts/371509179810119961/442b56b8dbb5497d8b360a75c6933267/artifacts/model/MLmodel similarity index 64% rename from mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/artifacts/model/MLmodel rename to notebooks/mlartifacts/371509179810119961/442b56b8dbb5497d8b360a75c6933267/artifacts/model/MLmodel index e7d41d6d9d3ec79c6eefc8562efd11a8c7a1d66d..bcd99945449724c185c0b6048d0601af0b790c0e 100644 --- a/mlruns/831635215727137506/8cc9781598d84654855dfc9b4457710b/artifacts/model/MLmodel +++ b/notebooks/mlartifacts/371509179810119961/442b56b8dbb5497d8b360a75c6933267/artifacts/model/MLmodel @@ -7,14 +7,14 @@ flavors: loader_module: mlflow.sklearn model_path: model.pkl predict_fn: predict - python_version: 3.11.0 + python_version: 3.10.4 sklearn: code: null pickled_model: model.pkl serialization_format: cloudpickle sklearn_version: 1.5.2 mlflow_version: 2.16.2 -model_size_bytes: 550266 -model_uuid: f2a32e597bba4a82b776405f69e63a69 -run_id: 8cc9781598d84654855dfc9b4457710b -utc_time_created: '2024-09-30 16:07:13.840378' +model_size_bytes: 8947 +model_uuid: 053c1598f2e141d1b6db8759fd0709a5 +run_id: 442b56b8dbb5497d8b360a75c6933267 +utc_time_created: '2024-10-03 12:01:21.648114' diff --git a/mlartifacts/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/artifacts/model/conda.yaml b/notebooks/mlartifacts/371509179810119961/442b56b8dbb5497d8b360a75c6933267/artifacts/model/conda.yaml similarity index 63% rename from mlartifacts/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/artifacts/model/conda.yaml rename to notebooks/mlartifacts/371509179810119961/442b56b8dbb5497d8b360a75c6933267/artifacts/model/conda.yaml index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..08bfc4990c8682a6c7d625c3c295156b03561890 100644 --- a/mlartifacts/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/artifacts/model/conda.yaml +++ b/notebooks/mlartifacts/371509179810119961/442b56b8dbb5497d8b360a75c6933267/artifacts/model/conda.yaml @@ -1,15 +1,15 @@ channels: - conda-forge dependencies: -- python=3.11.0 -- pip<=24.2 +- python=3.10.4 +- pip<=22.0.4 - pip: - mlflow==2.16.2 - cloudpickle==3.0.0 - numpy==1.26.2 - pandas==2.2.2 - - psutil==5.9.4 + - psutil==5.9.0 - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 + - scikit-optimize==0.10.2 + - scipy==1.14.1 name: mlflow-env diff --git a/notebooks/mlartifacts/371509179810119961/442b56b8dbb5497d8b360a75c6933267/artifacts/model/model.pkl b/notebooks/mlartifacts/371509179810119961/442b56b8dbb5497d8b360a75c6933267/artifacts/model/model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..dac4c9bf62d013ae91ab67b5d46dadbb4a1fb38c --- /dev/null +++ b/notebooks/mlartifacts/371509179810119961/442b56b8dbb5497d8b360a75c6933267/artifacts/model/model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c35bf9b8daea3c875fad86139b292c0c58d98393515f9112b4fd20f4ee2fd1ea +size 8947 diff --git a/notebooks/mlartifacts/371509179810119961/442b56b8dbb5497d8b360a75c6933267/artifacts/model/python_env.yaml b/notebooks/mlartifacts/371509179810119961/442b56b8dbb5497d8b360a75c6933267/artifacts/model/python_env.yaml new file mode 100644 index 0000000000000000000000000000000000000000..79b5874775a7ee4ee9d874bc85c1e9dc3283893f --- /dev/null +++ b/notebooks/mlartifacts/371509179810119961/442b56b8dbb5497d8b360a75c6933267/artifacts/model/python_env.yaml @@ -0,0 +1,7 @@ +python: 3.10.4 +build_dependencies: +- pip==22.0.4 +- setuptools==62.1.0 +- wheel==0.37.1 +dependencies: +- -r requirements.txt diff --git a/mlartifacts/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/artifacts/model/requirements.txt b/notebooks/mlartifacts/371509179810119961/442b56b8dbb5497d8b360a75c6933267/artifacts/model/requirements.txt similarity index 61% rename from mlartifacts/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/artifacts/model/requirements.txt rename to notebooks/mlartifacts/371509179810119961/442b56b8dbb5497d8b360a75c6933267/artifacts/model/requirements.txt index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..fc87da41b7ebdb610703d94cf65acc5fea0390c3 100644 --- a/mlartifacts/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/artifacts/model/requirements.txt +++ b/notebooks/mlartifacts/371509179810119961/442b56b8dbb5497d8b360a75c6933267/artifacts/model/requirements.txt @@ -2,7 +2,7 @@ mlflow==2.16.2 cloudpickle==3.0.0 numpy==1.26.2 pandas==2.2.2 -psutil==5.9.4 +psutil==5.9.0 scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file +scikit-optimize==0.10.2 +scipy==1.14.1 \ No newline at end of file diff --git a/notebooks/mlruns/0/meta.yaml b/notebooks/mlruns/0/meta.yaml index 40148312942d2a24d14af89cd379a057fc476f44..3a881f08a76f7e8637cc1b46c05698a53dc84cea 100644 --- a/notebooks/mlruns/0/meta.yaml +++ b/notebooks/mlruns/0/meta.yaml @@ -1,6 +1,6 @@ -artifact_location: file:///c:/Users/User/ML4I/air-quality-forecast/notebooks/mlruns/0 -creation_time: 1727699207526 +artifact_location: file:///scratch/s5100534/mlruns/0 +creation_time: 1727955942444 experiment_id: '0' -last_update_time: 1727699207526 +last_update_time: 1727955942444 lifecycle_stage: active name: Default diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/artifacts/estimator.html b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/artifacts/estimator.html deleted file mode 100644 index 86a338403ccede7bd1d41c4d5e81ff2b352520a7..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
DecisionTreeRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/artifacts/model/MLmodel b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/artifacts/model/MLmodel deleted file mode 100644 index 0f9e52c7c9a6d4eff32ab98d09390a5497bc0b50..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.sklearn - model_path: model.pkl - predict_fn: predict - python_version: 3.11.0 - sklearn: - code: null - pickled_model: model.pkl - serialization_format: cloudpickle - sklearn_version: 1.5.2 -mlflow_version: 2.16.2 -model_size_bytes: 550214 -model_uuid: 9d0e9edba8f440039cea0f78d80b0a82 -run_id: 52f57b6703c24a42b9d9f06dd4e06e42 -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-30 12:42:10.751070' diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/artifacts/model/conda.yaml b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/artifacts/model/conda.yaml deleted file mode 100644 index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - cloudpickle==3.0.0 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 -name: mlflow-env diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/artifacts/model/model.pkl b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/artifacts/model/model.pkl deleted file mode 100644 index f5948273944ba06c1284932f38aa49bbcdad240d..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9d92ce971be64be5be772e88e976e83af8df0632967d6c50fac06c367250f006 -size 550214 diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/artifacts/model/python_env.yaml b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/artifacts/model/requirements.txt b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/artifacts/model/requirements.txt deleted file mode 100644 index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -cloudpickle==3.0.0 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/meta.yaml b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/meta.yaml deleted file mode 100644 index 5580e6e3651e22947e7d83d7b3ec64a950a6b421..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: file:///c:/Users/User/ML4I/air-quality-forecast/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/artifacts -end_time: null -entry_point_name: '' -experiment_id: '198715715112686074' -lifecycle_stage: active -run_id: 52f57b6703c24a42b9d9f06dd4e06e42 -run_name: rare-jay-866 -run_uuid: 52f57b6703c24a42b9d9f06dd4e06e42 -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727700061791 -status: 1 -tags: [] -user_id: User diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/system/cpu_utilization_percentage b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/system/cpu_utilization_percentage deleted file mode 100644 index bed36baccbc7a851a22ef654623f83babda6ad3d..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,37 +0,0 @@ -1727700072184 100.0 0 -1727700082394 100.0 1 -1727700092603 100.0 2 -1727700103960 100.0 3 -1727700114942 100.0 4 -1727700125200 100.0 5 -1727700135476 100.0 6 -1727700145767 100.0 7 -1727700156254 100.0 8 -1727700166620 99.9 9 -1727700176908 99.9 10 -1727700187151 97.6 11 -1727700197351 78.8 12 -1727700207543 73.5 13 -1727700217778 75.0 14 -1727700227968 90.3 15 -1727700238634 82.6 16 -1727700248779 73.7 17 -1727700258934 71.6 18 -1727700269149 75.7 19 -1727700279358 69.8 20 -1727700289523 79.9 21 -1727700299669 73.3 22 -1727700309857 68.7 23 -1727700320188 85.5 24 -1727700330529 100.0 25 -1727700340921 100.0 26 -1727700351204 97.5 27 -1727700361414 99.6 28 -1727700371615 89.7 29 -1727700381807 81.6 30 -1727700391995 78.2 31 -1727700402206 74.4 32 -1727700412387 83.1 33 -1727700422607 95.9 34 -1727700432816 97.6 35 -1727700443005 89.7 36 diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/system/disk_available_megabytes b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/system/disk_available_megabytes deleted file mode 100644 index 885bfae029cd1ee0994ff2f2cd2a44e63fad0c4d..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,37 +0,0 @@ -1727700072184 83040.5 0 -1727700082394 83040.0 1 -1727700092603 83083.6 2 -1727700103960 83065.0 3 -1727700114942 83062.6 4 -1727700125200 83068.4 5 -1727700135476 83087.3 6 -1727700145767 83073.9 7 -1727700156254 83072.2 8 -1727700166620 83059.5 9 -1727700176908 83040.1 10 -1727700187151 83061.3 11 -1727700197351 83059.1 12 -1727700207543 83058.4 13 -1727700217778 83059.0 14 -1727700227968 83059.0 15 -1727700238634 83052.8 16 -1727700248779 83053.4 17 -1727700258934 83053.2 18 -1727700269149 83053.2 19 -1727700279358 83053.2 20 -1727700289523 83053.2 21 -1727700299669 83053.8 22 -1727700309857 83053.8 23 -1727700320188 83053.8 24 -1727700330529 83051.4 25 -1727700340921 83092.6 26 -1727700351204 83089.5 27 -1727700361414 83085.8 28 -1727700371615 83088.6 29 -1727700381807 83088.2 30 -1727700391995 83084.6 31 -1727700402206 83084.6 32 -1727700412387 83084.5 33 -1727700422607 83081.7 34 -1727700432816 83081.0 35 -1727700443005 83081.0 36 diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/system/disk_usage_megabytes b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/system/disk_usage_megabytes deleted file mode 100644 index 97926ef5e11701934f6db84189df5a1d758463b4..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,37 +0,0 @@ -1727700072184 428096.6 0 -1727700082394 428097.1 1 -1727700092603 428053.5 2 -1727700103960 428072.1 3 -1727700114942 428074.5 4 -1727700125200 428068.7 5 -1727700135476 428049.8 6 -1727700145767 428063.2 7 -1727700156254 428064.9 8 -1727700166620 428077.6 9 -1727700176908 428097.0 10 -1727700187151 428075.8 11 -1727700197351 428078.0 12 -1727700207543 428078.7 13 -1727700217778 428078.1 14 -1727700227968 428078.1 15 -1727700238634 428084.3 16 -1727700248779 428083.7 17 -1727700258934 428083.9 18 -1727700269149 428083.9 19 -1727700279358 428083.9 20 -1727700289523 428083.9 21 -1727700299669 428083.3 22 -1727700309857 428083.3 23 -1727700320188 428083.3 24 -1727700330529 428085.7 25 -1727700340921 428044.5 26 -1727700351204 428047.6 27 -1727700361414 428051.3 28 -1727700371615 428048.5 29 -1727700381807 428048.9 30 -1727700391995 428052.5 31 -1727700402206 428052.5 32 -1727700412387 428052.6 33 -1727700422607 428055.4 34 -1727700432816 428056.1 35 -1727700443005 428056.1 36 diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/system/disk_usage_percentage b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/system/disk_usage_percentage deleted file mode 100644 index 8c53fa20628722ae89162bc731c6f66fa1dbcd71..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,37 +0,0 @@ -1727700072184 83.8 0 -1727700082394 83.8 1 -1727700092603 83.7 2 -1727700103960 83.7 3 -1727700114942 83.7 4 -1727700125200 83.7 5 -1727700135476 83.7 6 -1727700145767 83.7 7 -1727700156254 83.7 8 -1727700166620 83.8 9 -1727700176908 83.8 10 -1727700187151 83.7 11 -1727700197351 83.8 12 -1727700207543 83.8 13 -1727700217778 83.8 14 -1727700227968 83.8 15 -1727700238634 83.8 16 -1727700248779 83.8 17 -1727700258934 83.8 18 -1727700269149 83.8 19 -1727700279358 83.8 20 -1727700289523 83.8 21 -1727700299669 83.8 22 -1727700309857 83.8 23 -1727700320188 83.8 24 -1727700330529 83.8 25 -1727700340921 83.7 26 -1727700351204 83.7 27 -1727700361414 83.7 28 -1727700371615 83.7 29 -1727700381807 83.7 30 -1727700391995 83.7 31 -1727700402206 83.7 32 -1727700412387 83.7 33 -1727700422607 83.7 34 -1727700432816 83.7 35 -1727700443005 83.7 36 diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/system/gpu_0_memory_usage_megabytes b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index 75c2172668021d1fa26f561497ae5b32931324ce..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,37 +0,0 @@ -1727700072184 365.4 0 -1727700082394 312.6 1 -1727700092603 354.6 2 -1727700103960 301.8 3 -1727700114942 288.3 4 -1727700125200 334.3 5 -1727700135476 311.5 6 -1727700145767 281.5 7 -1727700156254 264.3 8 -1727700166620 290.2 9 -1727700176908 320.4 10 -1727700187151 300.7 11 -1727700197351 279.5 12 -1727700207543 265.9 13 -1727700217778 297.7 14 -1727700227968 300.8 15 -1727700238634 332.0 16 -1727700248779 311.9 17 -1727700258934 323.5 18 -1727700269149 286.9 19 -1727700279358 310.3 20 -1727700289523 296.9 21 -1727700299669 288.5 22 -1727700309857 288.6 23 -1727700320188 330.1 24 -1727700330529 410.9 25 -1727700340921 399.1 26 -1727700351204 325.7 27 -1727700361414 333.5 28 -1727700371615 332.9 29 -1727700381807 324.7 30 -1727700391995 321.9 31 -1727700402206 350.1 32 -1727700412387 347.6 33 -1727700422607 318.5 34 -1727700432816 322.4 35 -1727700443005 359.1 36 diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/system/gpu_0_memory_usage_percentage b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index c12d2022e3f3891612b35dd17a1a2780063746ec..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,37 +0,0 @@ -1727700072184 17.0 0 -1727700082394 14.6 1 -1727700092603 16.5 2 -1727700103960 14.1 3 -1727700114942 13.4 4 -1727700125200 15.6 5 -1727700135476 14.5 6 -1727700145767 13.1 7 -1727700156254 12.3 8 -1727700166620 13.5 9 -1727700176908 14.9 10 -1727700187151 14.0 11 -1727700197351 13.0 12 -1727700207543 12.4 13 -1727700217778 13.9 14 -1727700227968 14.0 15 -1727700238634 15.5 16 -1727700248779 14.5 17 -1727700258934 15.1 18 -1727700269149 13.4 19 -1727700279358 14.5 20 -1727700289523 13.8 21 -1727700299669 13.4 22 -1727700309857 13.4 23 -1727700320188 15.4 24 -1727700330529 19.1 25 -1727700340921 18.6 26 -1727700351204 15.2 27 -1727700361414 15.5 28 -1727700371615 15.5 29 -1727700381807 15.1 30 -1727700391995 15.0 31 -1727700402206 16.3 32 -1727700412387 16.2 33 -1727700422607 14.8 34 -1727700432816 15.0 35 -1727700443005 16.7 36 diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/system/gpu_0_utilization_percentage b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index d5e215d1a955825d8ee35155f28c95a94a0f32aa..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,37 +0,0 @@ -1727700072184 8.0 0 -1727700082394 6.0 1 -1727700092603 8.0 2 -1727700103960 26.0 3 -1727700114942 25.0 4 -1727700125200 15.0 5 -1727700135476 22.0 6 -1727700145767 23.0 7 -1727700156254 20.0 8 -1727700166620 21.0 9 -1727700176908 12.0 10 -1727700187151 17.0 11 -1727700197351 15.0 12 -1727700207543 4.0 13 -1727700217778 6.0 14 -1727700227968 29.0 15 -1727700238634 0.0 16 -1727700248779 6.0 17 -1727700258934 5.0 18 -1727700269149 4.0 19 -1727700279358 11.0 20 -1727700289523 4.0 21 -1727700299669 4.0 22 -1727700309857 6.0 23 -1727700320188 9.0 24 -1727700330529 25.0 25 -1727700340921 9.0 26 -1727700351204 4.0 27 -1727700361414 11.0 28 -1727700371615 33.0 29 -1727700381807 4.0 30 -1727700391995 14.0 31 -1727700402206 5.0 32 -1727700412387 20.0 33 -1727700422607 26.0 34 -1727700432816 19.0 35 -1727700443005 6.0 36 diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/system/network_receive_megabytes b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/system/network_receive_megabytes deleted file mode 100644 index 561082d3d472280ab19f456d2eb7cc5505eefa81..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,37 +0,0 @@ -1727700072184 0.0 0 -1727700082394 0.5877349999999524 1 -1727700092603 1.5877719999999726 2 -1727700103960 3.1192419999999856 3 -1727700114942 3.4925139999999146 4 -1727700125200 3.7605369999999994 5 -1727700135476 3.9115150000000085 6 -1727700145767 3.9894939999999224 7 -1727700156254 4.078742999999918 8 -1727700166620 4.190066000000002 9 -1727700176908 4.816148999999996 10 -1727700187151 5.004500000000007 11 -1727700197351 5.0473799999999756 12 -1727700207543 5.2012999999999465 13 -1727700217778 5.229630999999927 14 -1727700227968 5.2697449999999435 15 -1727700238634 5.27689399999997 16 -1727700248779 5.298632999999995 17 -1727700258934 5.299268999999981 18 -1727700269149 5.300319999999942 19 -1727700279358 5.309887000000003 20 -1727700289523 5.395204999999919 21 -1727700299669 5.40186499999993 22 -1727700309857 5.4078929999999445 23 -1727700320188 5.441509999999994 24 -1727700330529 6.148607999999967 25 -1727700340921 6.182415999999989 26 -1727700351204 6.667954000000009 27 -1727700361414 6.754816000000005 28 -1727700371615 6.787487999999939 29 -1727700381807 6.792537999999922 30 -1727700391995 7.040015999999923 31 -1727700402206 7.046326000000022 32 -1727700412387 7.073542999999972 33 -1727700422607 19.637599000000023 34 -1727700432816 19.697050999999988 35 -1727700443005 19.713077999999996 36 diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/system/network_transmit_megabytes b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/system/network_transmit_megabytes deleted file mode 100644 index ff46135c92238745954206b217d0604830ab5b58..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,37 +0,0 @@ -1727700072184 5.499999999969418e-05 0 -1727700082394 0.03670900000000188 1 -1727700092603 0.09354700000000093 2 -1727700103960 0.1328940000000003 3 -1727700114942 0.2254460000000016 4 -1727700125200 0.30570399999999864 5 -1727700135476 0.38059700000000163 6 -1727700145767 0.41329299999999947 7 -1727700156254 0.46882300000000043 8 -1727700166620 0.5148580000000003 9 -1727700176908 0.5454089999999994 10 -1727700187151 0.569072000000002 11 -1727700197351 0.5782130000000016 12 -1727700207543 0.604298 13 -1727700217778 0.6273510000000009 14 -1727700227968 0.6297640000000015 15 -1727700238634 0.6359950000000012 16 -1727700248779 0.6536560000000016 17 -1727700258934 0.6543120000000009 18 -1727700269149 0.6549130000000005 19 -1727700279358 0.6681230000000014 20 -1727700289523 0.7233289999999997 21 -1727700299669 0.7263599999999997 22 -1727700309857 0.729929000000002 23 -1727700320188 0.7573110000000014 24 -1727700330529 0.8730499999999992 25 -1727700340921 0.9195190000000011 26 -1727700351204 0.9762810000000002 27 -1727700361414 1.0937580000000011 28 -1727700371615 1.1056680000000014 29 -1727700381807 1.1088190000000004 30 -1727700391995 1.1162770000000002 31 -1727700402206 1.1272389999999994 32 -1727700412387 1.1405640000000012 33 -1727700422607 1.3094849999999987 34 -1727700432816 1.3616689999999991 35 -1727700443005 1.3719059999999992 36 diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/system/system_memory_usage_megabytes b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index e9d2f26721457468b1071ffe18e42a144e4fc68e..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,37 +0,0 @@ -1727700072184 16451.7 0 -1727700082394 16527.4 1 -1727700092603 15884.5 2 -1727700103960 16173.3 3 -1727700114942 16352.2 4 -1727700125200 15916.0 5 -1727700135476 15550.4 6 -1727700145767 16022.4 7 -1727700156254 16095.1 8 -1727700166620 16143.9 9 -1727700176908 16338.5 10 -1727700187151 16305.4 11 -1727700197351 16303.7 12 -1727700207543 16354.7 13 -1727700217778 16426.8 14 -1727700227968 16418.2 15 -1727700238634 16408.9 16 -1727700248779 16402.5 17 -1727700258934 16457.6 18 -1727700269149 16383.3 19 -1727700279358 16460.7 20 -1727700289523 16459.8 21 -1727700299669 16457.8 22 -1727700309857 16430.1 23 -1727700320188 16481.8 24 -1727700330529 16601.3 25 -1727700340921 16353.2 26 -1727700351204 16259.1 27 -1727700361414 16347.9 28 -1727700371615 16103.3 29 -1727700381807 16150.5 30 -1727700391995 16207.9 31 -1727700402206 16066.5 32 -1727700412387 16091.3 33 -1727700422607 16299.2 34 -1727700432816 16007.4 35 -1727700443005 15768.4 36 diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/system/system_memory_usage_percentage b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/system/system_memory_usage_percentage deleted file mode 100644 index 5b44e32d592248128c4cbace20b250e1102e779d..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,37 +0,0 @@ -1727700072184 96.9 0 -1727700082394 97.3 1 -1727700092603 93.5 2 -1727700103960 95.2 3 -1727700114942 96.3 4 -1727700125200 93.7 5 -1727700135476 91.6 6 -1727700145767 94.3 7 -1727700156254 94.8 8 -1727700166620 95.0 9 -1727700176908 96.2 10 -1727700187151 96.0 11 -1727700197351 96.0 12 -1727700207543 96.3 13 -1727700217778 96.7 14 -1727700227968 96.7 15 -1727700238634 96.6 16 -1727700248779 96.6 17 -1727700258934 96.9 18 -1727700269149 96.5 19 -1727700279358 96.9 20 -1727700289523 96.9 21 -1727700299669 96.9 22 -1727700309857 96.7 23 -1727700320188 97.0 24 -1727700330529 97.7 25 -1727700340921 96.3 26 -1727700351204 95.7 27 -1727700361414 96.2 28 -1727700371615 94.8 29 -1727700381807 95.1 30 -1727700391995 95.4 31 -1727700402206 94.6 32 -1727700412387 94.7 33 -1727700422607 96.0 34 -1727700432816 94.2 35 -1727700443005 92.8 36 diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/test mse b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/test mse deleted file mode 100644 index 38e94b24098f581b779526317eb0524f5389136b..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/test mse +++ /dev/null @@ -1 +0,0 @@ -1727700062162 69.90510139416983 0 diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/test rmse b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/test rmse deleted file mode 100644 index 9d5e8c11fd4d0201533d2673b5dc86cf6c87e695..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/test rmse +++ /dev/null @@ -1 +0,0 @@ -1727700062203 7.8818740482419605 0 diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/training_mean_absolute_error b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/training_mean_absolute_error deleted file mode 100644 index f1da6b4f68cc9203c5ecda1cb66f641b172856bb..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727700130282 0.03928765633496466 0 diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/training_mean_squared_error b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/training_mean_squared_error deleted file mode 100644 index d0d49322ac49702fcf3e5ddc9a2afe918a30b8ea..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727700130282 0.30084284937466016 0 diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/training_r2_score b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/training_r2_score deleted file mode 100644 index 51e61466a146194fac42d15c21d7873167429cb5..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727700130282 0.9945589829025298 0 diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/training_root_mean_squared_error b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/training_root_mean_squared_error deleted file mode 100644 index fc1fcac400c8c565f45389b6d3d355ddf814347a..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727700130282 0.5484914305389467 0 diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/training_score b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/training_score deleted file mode 100644 index bc565ece5656c1fcdcca67eb36f7ff235b15df91..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727700130289 0.9945589829025298 0 diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/ccp_alpha b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/criterion b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/max_depth b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/max_features b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/max_features deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/max_features +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/max_leaf_nodes b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/min_impurity_decrease b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/min_samples_leaf b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/min_samples_split b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/min_samples_split deleted file mode 100644 index d8263ee9860594d2806b0dfd1bfd17528b0ba2a4..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/min_samples_split +++ /dev/null @@ -1 +0,0 @@ -2 \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/min_weight_fraction_leaf b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/monotonic_cst b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/random_state b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/splitter b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/splitter deleted file mode 100644 index e173194bb34f3a5b7fb4ca66c137c36492cdb60e..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/params/splitter +++ /dev/null @@ -1 +0,0 @@ -best \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/tags/estimator_class b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/tags/estimator_class deleted file mode 100644 index e049541749d94d9d1c082a3495fc52a31e663a30..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.tree._classes.DecisionTreeRegressor \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/tags/estimator_name b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/tags/estimator_name deleted file mode 100644 index 133de2e2ca4faccc3c53cd6fc5a81c142569960d..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -DecisionTreeRegressor \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/tags/mlflow.log-model.history b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/tags/mlflow.log-model.history deleted file mode 100644 index 9a409e1d9e221b0609c210bd24bc5b43f98534da..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "52f57b6703c24a42b9d9f06dd4e06e42", "artifact_path": "model", "utc_time_created": "2024-09-30 12:42:10.751070", "model_uuid": "9d0e9edba8f440039cea0f78d80b0a82", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/tags/mlflow.runName b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/tags/mlflow.runName deleted file mode 100644 index 03616ef2472cfcc70bc12f7a28948d4ab822941a..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -rare-jay-866 \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/tags/mlflow.source.git.commit b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/tags/mlflow.source.git.commit deleted file mode 100644 index 83b9d55d7a9d72a0aef369f35cdee727bb417d17..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -b13e0be6f336eebba6b424c99401c79da42bbe10 \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/tags/mlflow.source.name b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/tags/mlflow.source.name deleted file mode 100644 index 388245ab91c7c87b28f7aaca89980abf68c6aa80..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:\Users\User\AppData\Local\Programs\Python\Python311\Lib\site-packages\ipykernel_launcher.py \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/tags/mlflow.source.type b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/tags/mlflow.user b/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/52f57b6703c24a42b9d9f06dd4e06e42/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/artifacts/estimator.html b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/artifacts/estimator.html deleted file mode 100644 index 75814d0f54c6f8a0b113992abb327df237b3db64..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
DecisionTreeRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/artifacts/metric_info.json b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/artifacts/metric_info.json deleted file mode 100644 index 5e81481e308376c5587ce9f0a16355367a1896c6..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/artifacts/metric_info.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "mean_squared_error_unknown_dataset": "mean_squared_error(y_true=, y_pred=)", - "root_mean_squared_error_unknown_dataset": "root_mean_squared_error(y_true=, y_pred=)" -} \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/artifacts/model/MLmodel b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/artifacts/model/MLmodel deleted file mode 100644 index 92ecef63d931d3f7580a8c2fee381ed8f675bb69..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.sklearn - model_path: model.pkl - predict_fn: predict - python_version: 3.11.0 - sklearn: - code: null - pickled_model: model.pkl - serialization_format: cloudpickle - sklearn_version: 1.5.2 -mlflow_version: 2.16.2 -model_size_bytes: 550214 -model_uuid: 71c51985f1184e73886a1d6bcd14288c -run_id: 71b44dc8fea94e3780eff83d5055400d -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-30 12:40:39.181743' diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/artifacts/model/conda.yaml b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/artifacts/model/conda.yaml deleted file mode 100644 index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - cloudpickle==3.0.0 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 -name: mlflow-env diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/artifacts/model/model.pkl b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/artifacts/model/model.pkl deleted file mode 100644 index 4a5cb4ad832be1039cdcc68a8fb9f461adcfdd74..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4189ac53997da7c760c7b31abfbf3ae7eb39c293db083bf4fd0a1ff5fccb07fe -size 550214 diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/artifacts/model/python_env.yaml b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/artifacts/model/requirements.txt b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/artifacts/model/requirements.txt deleted file mode 100644 index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -cloudpickle==3.0.0 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/inputs/0964fb547ad4bd3d9c47fed85be49cac/meta.yaml b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/inputs/0964fb547ad4bd3d9c47fed85be49cac/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/inputs/0964fb547ad4bd3d9c47fed85be49cac/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/inputs/e88d1eb666e7b2c0e560742332cc2030/meta.yaml b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/inputs/e88d1eb666e7b2c0e560742332cc2030/meta.yaml deleted file mode 100644 index 17c34ad08903a4ce3ec908a63642f36f025e6715..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/inputs/e88d1eb666e7b2c0e560742332cc2030/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: dd4d89a524510f8914834c3bc9cd9e95 -destination_type: RUN -source_id: dd4d89a524510f8914834c3bc9cd9e95 -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/meta.yaml b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/meta.yaml deleted file mode 100644 index fef03bef3dfdcd90217d2514ca81cdc03871c09b..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: file:///c:/Users/User/ML4I/air-quality-forecast/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/artifacts -end_time: 1727700058616 -entry_point_name: '' -experiment_id: '198715715112686074' -lifecycle_stage: active -run_id: 71b44dc8fea94e3780eff83d5055400d -run_name: luminous-finch-653 -run_uuid: 71b44dc8fea94e3780eff83d5055400d -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727700037740 -status: 3 -tags: [] -user_id: User diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/mean_squared_error_unknown_dataset b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/mean_squared_error_unknown_dataset deleted file mode 100644 index 6b2b69b3ab96dabe6fa9a768773ef6b5a1f584d0..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/mean_squared_error_unknown_dataset +++ /dev/null @@ -1 +0,0 @@ -1727700061526 69.90510139416983 0 diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/root_mean_squared_error_unknown_dataset b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/root_mean_squared_error_unknown_dataset deleted file mode 100644 index e1369222e3887569168c7a3f78ed8436cc85ce12..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/root_mean_squared_error_unknown_dataset +++ /dev/null @@ -1 +0,0 @@ -1727700061696 7.8818740482419605 0 diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/system/cpu_utilization_percentage b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/system/cpu_utilization_percentage deleted file mode 100644 index e559f9739c943b7d52a85c451177e1c11a4390d4..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,2 +0,0 @@ -1727700048376 85.8 0 -1727700058855 99.9 1 diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/system/disk_available_megabytes b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/system/disk_available_megabytes deleted file mode 100644 index 508fffb248b5ac522edcfc287eaefbe2136a63a2..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727700048376 83046.9 0 -1727700058855 83044.3 1 diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/system/disk_usage_megabytes b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/system/disk_usage_megabytes deleted file mode 100644 index 395c5a4a602661877194cb0568b658268866cb90..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727700048376 428090.2 0 -1727700058855 428092.8 1 diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/system/disk_usage_percentage b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/system/disk_usage_percentage deleted file mode 100644 index 38852ad429bb9a65f82eca4566f5aa1f89c41761..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,2 +0,0 @@ -1727700048376 83.8 0 -1727700058855 83.8 1 diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/system/gpu_0_memory_usage_megabytes b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index 8eb6e51c9b6cf0ec7d8fe59a9ed526d84a62f23b..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727700048376 338.7 0 -1727700058855 307.7 1 diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/system/gpu_0_memory_usage_percentage b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index 49290746dc62f4541f7635b9bd64a9c62d49bdb1..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,2 +0,0 @@ -1727700048376 15.8 0 -1727700058855 14.3 1 diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/system/gpu_0_utilization_percentage b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index a0fb1c8098ff9aba9f6b861e7df6702561e22a9a..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,2 +0,0 @@ -1727700048376 0.0 0 -1727700058855 7.0 1 diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/system/network_receive_megabytes b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/system/network_receive_megabytes deleted file mode 100644 index f8fded785a7a871f48ff1b267bdcd13383ff7a98..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727700048376 0.0014370000000099026 0 -1727700058855 0.23691499999995358 1 diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/system/network_transmit_megabytes b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/system/network_transmit_megabytes deleted file mode 100644 index 0e665b5e71b1c051cb975570ef2592d6dbbe3970..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727700048376 0.00038400000000038403 0 -1727700058855 0.06635400000000047 1 diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/system/system_memory_usage_megabytes b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index ba902976eafa32663e766467f0a5b6c88fc1bff8..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727700048376 16501.4 0 -1727700058855 16452.4 1 diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/system/system_memory_usage_percentage b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/system/system_memory_usage_percentage deleted file mode 100644 index b1ac2dcc6dca2cab212ee22c84859d52daaf08f1..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,2 +0,0 @@ -1727700048376 97.2 0 -1727700058855 96.9 1 diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/training_mean_absolute_error b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/training_mean_absolute_error deleted file mode 100644 index f7e18bda61673edd84f2448e9e56d18df69cac0c..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727700038855 0.02895595432300163 0 diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/training_mean_squared_error b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/training_mean_squared_error deleted file mode 100644 index f0427bef13b08f5804f683145a9e7287d2bdbe1a..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727700038855 0.21152800435019034 0 diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/training_r2_score b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/training_r2_score deleted file mode 100644 index 8f4b544a1182b27538ee7d0b64fcc9592eccdcc4..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727700038855 0.9967717451067669 0 diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/training_root_mean_squared_error b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/training_root_mean_squared_error deleted file mode 100644 index f2f8c4f70a0026ad2773a238563b1656ef2341bd..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727700038855 0.4599217372012225 0 diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/training_score b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/training_score deleted file mode 100644 index 442f035074807bd41d7cfa058b9ee4952b292067..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727700038863 0.9967717451067669 0 diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/ccp_alpha b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/criterion b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/max_depth b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/max_features b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/max_features deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/max_features +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/max_leaf_nodes b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/min_impurity_decrease b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/min_samples_leaf b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/min_samples_split b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/min_samples_split deleted file mode 100644 index d8263ee9860594d2806b0dfd1bfd17528b0ba2a4..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/min_samples_split +++ /dev/null @@ -1 +0,0 @@ -2 \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/min_weight_fraction_leaf b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/monotonic_cst b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/random_state b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/splitter b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/splitter deleted file mode 100644 index e173194bb34f3a5b7fb4ca66c137c36492cdb60e..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/params/splitter +++ /dev/null @@ -1 +0,0 @@ -best \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/tags/estimator_class b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/tags/estimator_class deleted file mode 100644 index e049541749d94d9d1c082a3495fc52a31e663a30..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.tree._classes.DecisionTreeRegressor \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/tags/estimator_name b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/tags/estimator_name deleted file mode 100644 index 133de2e2ca4faccc3c53cd6fc5a81c142569960d..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -DecisionTreeRegressor \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/tags/mlflow.autologging b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/tags/mlflow.autologging deleted file mode 100644 index 044bdd758636edf2ee49b03917cb416d76a71de4..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -sklearn \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/tags/mlflow.log-model.history b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/tags/mlflow.log-model.history deleted file mode 100644 index 64e66d9a53d82bb10cd4c2c6e59e43a24c77aaa8..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "71b44dc8fea94e3780eff83d5055400d", "artifact_path": "model", "utc_time_created": "2024-09-30 12:40:39.181743", "model_uuid": "71c51985f1184e73886a1d6bcd14288c", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/tags/mlflow.runName b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/tags/mlflow.runName deleted file mode 100644 index e109d1fe356d238e32011b47ee3b87e78b1b73b0..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -luminous-finch-653 \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/tags/mlflow.source.git.commit b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/tags/mlflow.source.git.commit deleted file mode 100644 index 83b9d55d7a9d72a0aef369f35cdee727bb417d17..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -b13e0be6f336eebba6b424c99401c79da42bbe10 \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/tags/mlflow.source.name b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/tags/mlflow.source.name deleted file mode 100644 index 388245ab91c7c87b28f7aaca89980abf68c6aa80..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:\Users\User\AppData\Local\Programs\Python\Python311\Lib\site-packages\ipykernel_launcher.py \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/tags/mlflow.source.type b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/tags/mlflow.user b/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/71b44dc8fea94e3780eff83d5055400d/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/artifacts/estimator.html b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/artifacts/estimator.html deleted file mode 100644 index 3fc41a3a590b59a9dec14b08bcecb41d251da967..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/artifacts/estimator.html +++ /dev/null @@ -1,415 +0,0 @@ - - - - - - - -
DecisionTreeRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
- - - \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/artifacts/model/MLmodel b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/artifacts/model/MLmodel deleted file mode 100644 index 3b7ef140a3fb6f89a897fd5f3d627183d2096651..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/artifacts/model/MLmodel +++ /dev/null @@ -1,25 +0,0 @@ -artifact_path: model -flavors: - python_function: - env: - conda: conda.yaml - virtualenv: python_env.yaml - loader_module: mlflow.sklearn - model_path: model.pkl - predict_fn: predict - python_version: 3.11.0 - sklearn: - code: null - pickled_model: model.pkl - serialization_format: cloudpickle - sklearn_version: 1.5.2 -mlflow_version: 2.16.2 -model_size_bytes: 550214 -model_uuid: dd60929b3bde44f8ab45583146955d6d -run_id: 78e67b5383da438dbe0df2e1e6c32e7c -signature: - inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' - outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, - 6]}}]' - params: null -utc_time_created: '2024-09-30 12:32:34.192132' diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/artifacts/model/conda.yaml b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/artifacts/model/conda.yaml deleted file mode 100644 index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/artifacts/model/conda.yaml +++ /dev/null @@ -1,15 +0,0 @@ -channels: -- conda-forge -dependencies: -- python=3.11.0 -- pip<=24.2 -- pip: - - mlflow==2.16.2 - - cloudpickle==3.0.0 - - numpy==1.26.2 - - pandas==2.2.2 - - psutil==5.9.4 - - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 -name: mlflow-env diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/artifacts/model/model.pkl b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/artifacts/model/model.pkl deleted file mode 100644 index e0d343e7a588c68cb3ddf3811d25060912d66a26..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/artifacts/model/model.pkl +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7904eb4d0b7619e154896e878964f9e4a619d332db86bc6927c6a6d0702c9711 -size 550214 diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/artifacts/model/python_env.yaml b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/artifacts/model/python_env.yaml deleted file mode 100644 index 5eb100510e4e711512af01aa496b835381a7a2fb..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/artifacts/model/python_env.yaml +++ /dev/null @@ -1,7 +0,0 @@ -python: 3.11.0 -build_dependencies: -- pip==24.2 -- setuptools==65.5.0 -- wheel==0.41.2 -dependencies: -- -r requirements.txt diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/artifacts/model/requirements.txt b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/artifacts/model/requirements.txt deleted file mode 100644 index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/artifacts/model/requirements.txt +++ /dev/null @@ -1,8 +0,0 @@ -mlflow==2.16.2 -cloudpickle==3.0.0 -numpy==1.26.2 -pandas==2.2.2 -psutil==5.9.4 -scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/inputs/c246d40ca06f4514d1fda22f698745d7/meta.yaml b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/inputs/c246d40ca06f4514d1fda22f698745d7/meta.yaml deleted file mode 100644 index 0d23962544e9c5bbff49ce19eead882e54f84310..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/inputs/c246d40ca06f4514d1fda22f698745d7/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: 19d2a1faf215ef44b979bbf135902c21 -destination_type: RUN -source_id: 19d2a1faf215ef44b979bbf135902c21 -source_type: DATASET -tags: - mlflow.data.context: eval diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/inputs/fddb7456ddb30d2d9052941048fcfd2e/meta.yaml b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/inputs/fddb7456ddb30d2d9052941048fcfd2e/meta.yaml deleted file mode 100644 index 17c34ad08903a4ce3ec908a63642f36f025e6715..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/inputs/fddb7456ddb30d2d9052941048fcfd2e/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -destination_id: dd4d89a524510f8914834c3bc9cd9e95 -destination_type: RUN -source_id: dd4d89a524510f8914834c3bc9cd9e95 -source_type: DATASET -tags: - mlflow.data.context: train diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/meta.yaml b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/meta.yaml deleted file mode 100644 index c2b306356b4d65081e8df00dd38e0fb079253cd6..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/meta.yaml +++ /dev/null @@ -1,15 +0,0 @@ -artifact_uri: file:///c:/Users/User/ML4I/air-quality-forecast/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/artifacts -end_time: 1727699580018 -entry_point_name: '' -experiment_id: '198715715112686074' -lifecycle_stage: active -run_id: 78e67b5383da438dbe0df2e1e6c32e7c -run_name: glamorous-sponge-699 -run_uuid: 78e67b5383da438dbe0df2e1e6c32e7c -source_name: '' -source_type: 4 -source_version: '' -start_time: 1727699535835 -status: 3 -tags: [] -user_id: User diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/system/cpu_utilization_percentage b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/system/cpu_utilization_percentage deleted file mode 100644 index e25b2f14df9a1d05de6106541958411acbf0e738..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/system/cpu_utilization_percentage +++ /dev/null @@ -1,2 +0,0 @@ -1727699563060 96.1 0 -1727699573333 92.9 1 diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/system/disk_available_megabytes b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/system/disk_available_megabytes deleted file mode 100644 index 9b847471120d15b7384a1c984775d4d5b12ab4f6..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/system/disk_available_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727699563060 83105.1 0 -1727699573333 83104.5 1 diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/system/disk_usage_megabytes b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/system/disk_usage_megabytes deleted file mode 100644 index 0baa7f29dc7322e7c3ac41e7e7cce7fdab1c3fc7..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/system/disk_usage_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727699563060 428032.0 0 -1727699573333 428032.6 1 diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/system/disk_usage_percentage b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/system/disk_usage_percentage deleted file mode 100644 index c1c710872938cc3a1920d61954e20f315ac55bf4..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/system/disk_usage_percentage +++ /dev/null @@ -1,2 +0,0 @@ -1727699563060 83.7 0 -1727699573333 83.7 1 diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/system/gpu_0_memory_usage_megabytes b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/system/gpu_0_memory_usage_megabytes deleted file mode 100644 index 1dd191323cf5e65e5f8843e517ae4b0bbc8a796d..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/system/gpu_0_memory_usage_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727699563060 318.9 0 -1727699573333 320.2 1 diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/system/gpu_0_memory_usage_percentage b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/system/gpu_0_memory_usage_percentage deleted file mode 100644 index 8438dc8087377d65c17a6675266a96e36efe35dc..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/system/gpu_0_memory_usage_percentage +++ /dev/null @@ -1,2 +0,0 @@ -1727699563060 14.9 0 -1727699573333 14.9 1 diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/system/gpu_0_utilization_percentage b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/system/gpu_0_utilization_percentage deleted file mode 100644 index 33984d99a00ba60e5ac59341190c0fb2ccaf0633..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/system/gpu_0_utilization_percentage +++ /dev/null @@ -1,2 +0,0 @@ -1727699563060 34.0 0 -1727699573333 16.0 1 diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/system/network_receive_megabytes b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/system/network_receive_megabytes deleted file mode 100644 index facd4d62095aebb21424773e822fc6d531c314cb..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/system/network_receive_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727699563060 0.0 0 -1727699573333 0.008996000000024651 1 diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/system/network_transmit_megabytes b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/system/network_transmit_megabytes deleted file mode 100644 index babce34231d6c7bb6d167286dbbc37bc4693bf5a..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/system/network_transmit_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727699563060 0.0 0 -1727699573333 0.007525000000001114 1 diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/system/system_memory_usage_megabytes b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/system/system_memory_usage_megabytes deleted file mode 100644 index c561e2e87f43428e5a94fe77363bea21f1078ab5..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/system/system_memory_usage_megabytes +++ /dev/null @@ -1,2 +0,0 @@ -1727699563060 16192.5 0 -1727699573333 16046.7 1 diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/system/system_memory_usage_percentage b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/system/system_memory_usage_percentage deleted file mode 100644 index c01354ce47f0919412fa9c9e6f100abd9bb1273d..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/system/system_memory_usage_percentage +++ /dev/null @@ -1,2 +0,0 @@ -1727699563060 95.3 0 -1727699573333 94.5 1 diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/training_mean_absolute_error b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/training_mean_absolute_error deleted file mode 100644 index 8436598fe6bc1ed2267cd56653b3760153f58515..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/training_mean_absolute_error +++ /dev/null @@ -1 +0,0 @@ -1727699553653 0.024197933659597604 0 diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/training_mean_squared_error b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/training_mean_squared_error deleted file mode 100644 index 5dc693d2ece2465f54883dfc18309f4b54d2ec9b..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/training_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727699553653 0.1407014681892333 0 diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/training_r2_score b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/training_r2_score deleted file mode 100644 index b75cbbf2b762fd739fb762f4848af10667fd3864..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/training_r2_score +++ /dev/null @@ -1 +0,0 @@ -1727699553653 0.9975325403063006 0 diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/training_root_mean_squared_error b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/training_root_mean_squared_error deleted file mode 100644 index a1ca4be7a3b1bcd922293e1877046225b89039a2..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/training_root_mean_squared_error +++ /dev/null @@ -1 +0,0 @@ -1727699553653 0.3751019437289459 0 diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/training_score b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/training_score deleted file mode 100644 index f51b49cdff94791a076b84f394f46bad005ca4f0..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/metrics/training_score +++ /dev/null @@ -1 +0,0 @@ -1727699553663 0.9975325403063006 0 diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/ccp_alpha b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/ccp_alpha deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/ccp_alpha +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/criterion b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/criterion deleted file mode 100644 index 0dd06a9cc5a87937baa536ebeae3ee583e5becfa..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/criterion +++ /dev/null @@ -1 +0,0 @@ -squared_error \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/max_depth b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/max_depth deleted file mode 100644 index 3e932fe8f188bb6dbcb02afe1306fa6e0b90357b..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/max_depth +++ /dev/null @@ -1 +0,0 @@ -34 \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/max_features b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/max_features deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/max_features +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/max_leaf_nodes b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/max_leaf_nodes deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/max_leaf_nodes +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/min_impurity_decrease b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/min_impurity_decrease deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/min_impurity_decrease +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/min_samples_leaf b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/min_samples_leaf deleted file mode 100644 index 56a6051ca2b02b04ef92d5150c9ef600403cb1de..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/min_samples_leaf +++ /dev/null @@ -1 +0,0 @@ -1 \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/min_samples_split b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/min_samples_split deleted file mode 100644 index d8263ee9860594d2806b0dfd1bfd17528b0ba2a4..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/min_samples_split +++ /dev/null @@ -1 +0,0 @@ -2 \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/min_weight_fraction_leaf b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/min_weight_fraction_leaf deleted file mode 100644 index 171538eb0b00f4eddffa17929796de55b838f34b..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/min_weight_fraction_leaf +++ /dev/null @@ -1 +0,0 @@ -0.0 \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/monotonic_cst b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/monotonic_cst deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/monotonic_cst +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/random_state b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/random_state deleted file mode 100644 index 4af18322e32f3dd19579c80e26e4a306ad11e049..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/random_state +++ /dev/null @@ -1 +0,0 @@ -None \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/splitter b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/splitter deleted file mode 100644 index e173194bb34f3a5b7fb4ca66c137c36492cdb60e..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/params/splitter +++ /dev/null @@ -1 +0,0 @@ -best \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/tags/estimator_class b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/tags/estimator_class deleted file mode 100644 index e049541749d94d9d1c082a3495fc52a31e663a30..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/tags/estimator_class +++ /dev/null @@ -1 +0,0 @@ -sklearn.tree._classes.DecisionTreeRegressor \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/tags/estimator_name b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/tags/estimator_name deleted file mode 100644 index 133de2e2ca4faccc3c53cd6fc5a81c142569960d..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/tags/estimator_name +++ /dev/null @@ -1 +0,0 @@ -DecisionTreeRegressor \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/tags/mlflow.autologging b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/tags/mlflow.autologging deleted file mode 100644 index 044bdd758636edf2ee49b03917cb416d76a71de4..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/tags/mlflow.autologging +++ /dev/null @@ -1 +0,0 @@ -sklearn \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/tags/mlflow.log-model.history b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/tags/mlflow.log-model.history deleted file mode 100644 index 22f5ed2a6e108e6a14f1d0bd86804075c364af71..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/tags/mlflow.log-model.history +++ /dev/null @@ -1 +0,0 @@ -[{"run_id": "78e67b5383da438dbe0df2e1e6c32e7c", "artifact_path": "model", "utc_time_created": "2024-09-30 12:32:34.192132", "model_uuid": "dd60929b3bde44f8ab45583146955d6d", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.11.0", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/tags/mlflow.runName b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/tags/mlflow.runName deleted file mode 100644 index 50165b02bb30c122460ed10b4c8bdef809b07b5e..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/tags/mlflow.runName +++ /dev/null @@ -1 +0,0 @@ -glamorous-sponge-699 \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/tags/mlflow.source.git.commit b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/tags/mlflow.source.git.commit deleted file mode 100644 index 83b9d55d7a9d72a0aef369f35cdee727bb417d17..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/tags/mlflow.source.git.commit +++ /dev/null @@ -1 +0,0 @@ -b13e0be6f336eebba6b424c99401c79da42bbe10 \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/tags/mlflow.source.name b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/tags/mlflow.source.name deleted file mode 100644 index 388245ab91c7c87b28f7aaca89980abf68c6aa80..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/tags/mlflow.source.name +++ /dev/null @@ -1 +0,0 @@ -c:\Users\User\AppData\Local\Programs\Python\Python311\Lib\site-packages\ipykernel_launcher.py \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/tags/mlflow.source.type b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/tags/mlflow.source.type deleted file mode 100644 index 0c2c1fe9dc63b7040bb81006635e50fd528f056f..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/tags/mlflow.source.type +++ /dev/null @@ -1 +0,0 @@ -LOCAL \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/tags/mlflow.user b/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/tags/mlflow.user deleted file mode 100644 index cd0fe7a3dfead13afba6009c6024733ef3a5cdde..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/78e67b5383da438dbe0df2e1e6c32e7c/tags/mlflow.user +++ /dev/null @@ -1 +0,0 @@ -User \ No newline at end of file diff --git a/notebooks/mlruns/198715715112686074/datasets/19d2a1faf215ef44b979bbf135902c21/meta.yaml b/notebooks/mlruns/198715715112686074/datasets/19d2a1faf215ef44b979bbf135902c21/meta.yaml deleted file mode 100644 index cc30c6abab0b0a97844824df99988ed143b71b12..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/datasets/19d2a1faf215ef44b979bbf135902c21/meta.yaml +++ /dev/null @@ -1,9 +0,0 @@ -digest: 2ba3734a -name: dataset -profile: '{"features_shape": [1052, 33], "features_size": 34716, "features_nbytes": - 277728}' -schema: '{"mlflow_tensorspec": {"features": "[{\"type\": \"tensor\", \"tensor-spec\": - {\"dtype\": \"float64\", \"shape\": [-1, 33]}}]", "targets": null}}' -source: '{"tags": {"mlflow.user": "User", "mlflow.source.name": "c:\\Users\\User\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\ipykernel_launcher.py", - "mlflow.source.type": "LOCAL", "mlflow.source.git.commit": "b13e0be6f336eebba6b424c99401c79da42bbe10"}}' -source_type: code diff --git a/notebooks/mlruns/198715715112686074/datasets/dd4d89a524510f8914834c3bc9cd9e95/meta.yaml b/notebooks/mlruns/198715715112686074/datasets/dd4d89a524510f8914834c3bc9cd9e95/meta.yaml deleted file mode 100644 index 9d2233514beee8ef0a44c87f49383a8e6ede4e27..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/datasets/dd4d89a524510f8914834c3bc9cd9e95/meta.yaml +++ /dev/null @@ -1,10 +0,0 @@ -digest: 527b50ca -name: dataset -profile: '{"features_shape": [2452, 33], "features_size": 80916, "features_nbytes": - 647328, "targets_shape": [2452, 6], "targets_size": 14712, "targets_nbytes": 117696}' -schema: '{"mlflow_tensorspec": {"features": "[{\"type\": \"tensor\", \"tensor-spec\": - {\"dtype\": \"float64\", \"shape\": [-1, 33]}}]", "targets": "[{\"type\": \"tensor\", - \"tensor-spec\": {\"dtype\": \"float64\", \"shape\": [-1, 6]}}]"}}' -source: '{"tags": {"mlflow.user": "User", "mlflow.source.name": "c:\\Users\\User\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\ipykernel_launcher.py", - "mlflow.source.type": "LOCAL", "mlflow.source.git.commit": "b13e0be6f336eebba6b424c99401c79da42bbe10"}}' -source_type: code diff --git a/notebooks/mlruns/198715715112686074/meta.yaml b/notebooks/mlruns/198715715112686074/meta.yaml deleted file mode 100644 index 67fd07ed26c1d7946c9867e9fbc18cc787ce4bf7..0000000000000000000000000000000000000000 --- a/notebooks/mlruns/198715715112686074/meta.yaml +++ /dev/null @@ -1,6 +0,0 @@ -artifact_location: file:///c:/Users/User/ML4I/air-quality-forecast/notebooks/mlruns/198715715112686074 -creation_time: 1727699207596 -experiment_id: '198715715112686074' -last_update_time: 1727699207596 -lifecycle_stage: active -name: DecisionTree-BayesianOptimization diff --git a/mlartifacts/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/artifacts/estimator.html b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/artifacts/estimator.html similarity index 70% rename from mlartifacts/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/artifacts/estimator.html rename to notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/artifacts/estimator.html index 4382cb542c5a9e966109ce86a3b14c67175729fb..722c081a3c24e0b0fc1af00f603caa0cb15bb581 100644 --- a/mlartifacts/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/artifacts/estimator.html +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/artifacts/estimator.html @@ -5,7 +5,7 @@ -
RandomForestRegressor(max_depth=34)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
+
DecisionTreeRegressor(max_depth=60, max_leaf_nodes=40,
+                      min_impurity_decrease=0.1398574529323852,
+                      min_samples_leaf=30, min_samples_split=10,
+                      min_weight_fraction_leaf=0.0052834607609149485)
In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook.
On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
\ No newline at end of file diff --git a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/artifacts/model/MLmodel b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/artifacts/model/MLmodel similarity index 74% rename from mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/artifacts/model/MLmodel rename to notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/artifacts/model/MLmodel index ca86498ecfc0efd92887613fd162daddbedf6cae..d9960f9a72c9cc91991286d0274e34e3ae9b574f 100644 --- a/mlruns/831635215727137506/19e5a64124e94737ab2ac4556d99a4d6/artifacts/model/MLmodel +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/artifacts/model/MLmodel @@ -7,19 +7,19 @@ flavors: loader_module: mlflow.sklearn model_path: model.pkl predict_fn: predict - python_version: 3.11.0 + python_version: 3.10.4 sklearn: code: null pickled_model: model.pkl serialization_format: cloudpickle sklearn_version: 1.5.2 mlflow_version: 2.16.2 -model_size_bytes: 550214 -model_uuid: a20fa37538e841fab3d8994d453d714b -run_id: 19e5a64124e94737ab2ac4556d99a4d6 +model_size_bytes: 7028 +model_uuid: 0b2feef9554944caacc5c5b73225664a +run_id: 3cbfdb0b05ee4ebda2b1a998d3371311 signature: inputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 33]}}]' outputs: '[{"type": "tensor", "tensor-spec": {"dtype": "float64", "shape": [-1, 6]}}]' params: null -utc_time_created: '2024-09-30 16:18:23.966394' +utc_time_created: '2024-10-03 11:57:27.249424' diff --git a/mlartifacts/149819317988706962/482f080397f8479f94024fbed2a3937a/artifacts/model/conda.yaml b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/artifacts/model/conda.yaml similarity index 66% rename from mlartifacts/149819317988706962/482f080397f8479f94024fbed2a3937a/artifacts/model/conda.yaml rename to notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/artifacts/model/conda.yaml index 0fcc3cb5715a8e10f788d928c3dad76e28e70059..98d4932c37218828e3ba6da9ca56e9c008828bc6 100644 --- a/mlartifacts/149819317988706962/482f080397f8479f94024fbed2a3937a/artifacts/model/conda.yaml +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/artifacts/model/conda.yaml @@ -1,15 +1,14 @@ channels: - conda-forge dependencies: -- python=3.11.0 -- pip<=24.2 +- python=3.10.4 +- pip<=22.0.4 - pip: - mlflow==2.16.2 - cloudpickle==3.0.0 - numpy==1.26.2 - pandas==2.2.2 - - psutil==5.9.4 + - psutil==5.9.0 - scikit-learn==1.5.2 - - scipy==1.11.4 - - typing==3.7.4.3 + - scipy==1.14.1 name: mlflow-env diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/artifacts/model/model.pkl b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/artifacts/model/model.pkl new file mode 100644 index 0000000000000000000000000000000000000000..3dbc77da207b668e98dad9d2b7059e83d919eaf9 --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/artifacts/model/model.pkl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a4d34684f40ae2e52582c403278fcef2c645318baa3c5192ea6b7947e08a3b7 +size 7028 diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/artifacts/model/python_env.yaml b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/artifacts/model/python_env.yaml new file mode 100644 index 0000000000000000000000000000000000000000..79b5874775a7ee4ee9d874bc85c1e9dc3283893f --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/artifacts/model/python_env.yaml @@ -0,0 +1,7 @@ +python: 3.10.4 +build_dependencies: +- pip==22.0.4 +- setuptools==62.1.0 +- wheel==0.37.1 +dependencies: +- -r requirements.txt diff --git a/mlartifacts/149819317988706962/135e604974134ca4877227251e765174/artifacts/model/requirements.txt b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/artifacts/model/requirements.txt similarity index 65% rename from mlartifacts/149819317988706962/135e604974134ca4877227251e765174/artifacts/model/requirements.txt rename to notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/artifacts/model/requirements.txt index a5c5ad219eeedd89e3e6e4f2b194dea4d044073c..c9b9f6f0d947980e296c385ff8743ca1f9e5de68 100644 --- a/mlartifacts/149819317988706962/135e604974134ca4877227251e765174/artifacts/model/requirements.txt +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/artifacts/model/requirements.txt @@ -2,7 +2,6 @@ mlflow==2.16.2 cloudpickle==3.0.0 numpy==1.26.2 pandas==2.2.2 -psutil==5.9.4 +psutil==5.9.0 scikit-learn==1.5.2 -scipy==1.11.4 -typing==3.7.4.3 \ No newline at end of file +scipy==1.14.1 \ No newline at end of file diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/inputs/8688ff537df57b2cf820f627137da3b5/meta.yaml b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/inputs/54f10df8d9c78b8fc0bdec1c2e5e9fa1/meta.yaml similarity index 100% rename from mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/inputs/8688ff537df57b2cf820f627137da3b5/meta.yaml rename to notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/inputs/54f10df8d9c78b8fc0bdec1c2e5e9fa1/meta.yaml diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/meta.yaml b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/meta.yaml new file mode 100644 index 0000000000000000000000000000000000000000..b86cbd945181a9bf1852d17c6c66b1ba53573c56 --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/meta.yaml @@ -0,0 +1,15 @@ +artifact_uri: file:///scratch/s5100534/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/artifacts +end_time: 1727956707688 +entry_point_name: '' +experiment_id: '247522349482579112' +lifecycle_stage: active +run_id: 3cbfdb0b05ee4ebda2b1a998d3371311 +run_name: wise-wolf-896 +run_uuid: 3cbfdb0b05ee4ebda2b1a998d3371311 +source_name: '' +source_type: 4 +source_version: '' +start_time: 1727955945863 +status: 3 +tags: [] +user_id: s5100534 diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/Correct Test MSE b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/Correct Test MSE new file mode 100644 index 0000000000000000000000000000000000000000..ad5260565bcd03163e3c2cda0040c5883ec1bd0d --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/Correct Test MSE @@ -0,0 +1 @@ +1727956707646 36.868293279401776 0 diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/Correct Test RMSE b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/Correct Test RMSE new file mode 100644 index 0000000000000000000000000000000000000000..82d106794203d0d96d09d14617e5b6ef2a199453 --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/Correct Test RMSE @@ -0,0 +1 @@ +1727956707679 5.7865330700583115 0 diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/Correct Train MSE b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/Correct Train MSE new file mode 100644 index 0000000000000000000000000000000000000000..e9d315b9dc0bd34463849a1ecda3754662d8868f --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/Correct Train MSE @@ -0,0 +1 @@ +1727956707607 43.89786697361695 0 diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/system/cpu_utilization_percentage b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/system/cpu_utilization_percentage new file mode 100644 index 0000000000000000000000000000000000000000..2148b8cb0d4d42304e78cb926d744747470062ac --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/system/cpu_utilization_percentage @@ -0,0 +1,75 @@ +1727955956148 6.0 0 +1727955966444 8.5 1 +1727955976487 11.1 2 +1727955986528 11.6 3 +1727955996569 11.5 4 +1727956006608 11.0 5 +1727956016649 12.0 6 +1727956026705 11.7 7 +1727956036780 11.8 8 +1727956046822 11.4 9 +1727956056926 11.5 10 +1727956066967 11.9 11 +1727956077006 11.6 12 +1727956087047 12.0 13 +1727956097115 11.9 14 +1727956107156 14.0 15 +1727956117226 14.5 16 +1727956127269 14.2 17 +1727956137312 15.1 18 +1727956147371 14.6 19 +1727956157410 14.9 20 +1727956167450 15.3 21 +1727956177503 15.4 22 +1727956187566 15.0 23 +1727956197609 15.8 24 +1727956207931 15.4 25 +1727956217973 16.0 26 +1727956228016 15.4 27 +1727956238081 15.0 28 +1727956248152 15.1 29 +1727956258195 15.0 30 +1727956268239 14.6 31 +1727956278284 15.0 32 +1727956288327 15.2 33 +1727956298390 15.1 34 +1727956308435 15.2 35 +1727956318480 16.3 36 +1727956328523 15.6 37 +1727956338718 14.8 38 +1727956348772 16.5 39 +1727956358817 14.6 40 +1727956368862 14.5 41 +1727956379059 14.7 42 +1727956389102 15.4 43 +1727956399147 13.7 44 +1727956409191 14.9 45 +1727956419234 10.7 46 +1727956429278 8.9 47 +1727956439332 10.9 48 +1727956449379 11.1 49 +1727956459517 10.4 50 +1727956469574 10.0 51 +1727956479618 6.8 52 +1727956489684 8.8 53 +1727956499894 8.8 54 +1727956509978 9.9 55 +1727956520022 7.9 56 +1727956530069 8.2 57 +1727956540116 6.6 58 +1727956550161 7.0 59 +1727956560206 8.3 60 +1727956570471 8.7 61 +1727956580518 8.4 62 +1727956590563 7.1 63 +1727956600607 7.4 64 +1727956610739 8.5 65 +1727956620788 8.9 66 +1727956630832 8.6 67 +1727956640878 8.8 68 +1727956650930 8.4 69 +1727956660976 5.5 70 +1727956671022 0.0 71 +1727956681071 0.0 72 +1727956691116 0.0 73 +1727956701178 0.0 74 diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/system/disk_available_megabytes b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/system/disk_available_megabytes new file mode 100644 index 0000000000000000000000000000000000000000..bcf741605d2ab9c02002bbcbb1a37fa0c47e12cb --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/system/disk_available_megabytes @@ -0,0 +1,75 @@ +1727955956148 213538.8 0 +1727955966444 213534.3 1 +1727955976487 213535.4 2 +1727955986528 213541.1 3 +1727955996569 213541.1 4 +1727956006608 213541.1 5 +1727956016649 213541.1 6 +1727956026705 213541.1 7 +1727956036780 213541.1 8 +1727956046822 213541.2 9 +1727956056926 213541.2 10 +1727956066967 213539.6 11 +1727956077006 213539.7 12 +1727956087047 213539.7 13 +1727956097115 213539.7 14 +1727956107156 213539.7 15 +1727956117226 213539.7 16 +1727956127269 213539.7 17 +1727956137312 213539.7 18 +1727956147371 213539.7 19 +1727956157410 213539.6 20 +1727956167450 213539.6 21 +1727956177503 213539.6 22 +1727956187566 213539.6 23 +1727956197609 213539.6 24 +1727956207931 213537.7 25 +1727956217973 213537.7 26 +1727956228016 213537.7 27 +1727956238081 213537.6 28 +1727956248152 213537.6 29 +1727956258195 213537.6 30 +1727956268239 213537.6 31 +1727956278284 213537.6 32 +1727956288327 213537.6 33 +1727956298390 213537.6 34 +1727956308435 213537.6 35 +1727956318480 213537.6 36 +1727956328523 213537.6 37 +1727956338718 213537.6 38 +1727956348772 213537.6 39 +1727956358817 213537.6 40 +1727956368862 213537.6 41 +1727956379059 213537.6 42 +1727956389102 213537.6 43 +1727956399147 213537.6 44 +1727956409191 213537.6 45 +1727956419234 213537.6 46 +1727956429278 213537.6 47 +1727956439332 213537.6 48 +1727956449379 213537.6 49 +1727956459517 213537.6 50 +1727956469574 213537.7 51 +1727956479618 213537.7 52 +1727956489684 213537.7 53 +1727956499894 213537.7 54 +1727956509978 213537.7 55 +1727956520022 213537.7 56 +1727956530069 213537.7 57 +1727956540116 213537.8 58 +1727956550161 213537.8 59 +1727956560206 213537.8 60 +1727956570471 213537.8 61 +1727956580518 213537.8 62 +1727956590563 213537.8 63 +1727956600607 213537.8 64 +1727956610739 213537.8 65 +1727956620788 213537.8 66 +1727956630832 213537.8 67 +1727956640878 213537.8 68 +1727956650930 213537.8 69 +1727956660976 213537.8 70 +1727956671022 213537.8 71 +1727956681071 213537.8 72 +1727956691116 213537.8 73 +1727956701178 213537.8 74 diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/system/disk_usage_megabytes b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/system/disk_usage_megabytes new file mode 100644 index 0000000000000000000000000000000000000000..04d10cf68eedbc81296d07a167b7c2670f59d5ef --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/system/disk_usage_megabytes @@ -0,0 +1,75 @@ +1727955956148 25280.7 0 +1727955966444 25285.2 1 +1727955976487 25284.0 2 +1727955986528 25278.4 3 +1727955996569 25278.4 4 +1727956006608 25278.3 5 +1727956016649 25278.3 6 +1727956026705 25278.3 7 +1727956036780 25278.4 8 +1727956046822 25278.3 9 +1727956056926 25278.3 10 +1727956066967 25279.9 11 +1727956077006 25279.8 12 +1727956087047 25279.8 13 +1727956097115 25279.8 14 +1727956107156 25279.8 15 +1727956117226 25279.8 16 +1727956127269 25279.8 17 +1727956137312 25279.8 18 +1727956147371 25279.8 19 +1727956157410 25279.8 20 +1727956167450 25279.8 21 +1727956177503 25279.8 22 +1727956187566 25279.8 23 +1727956197609 25279.8 24 +1727956207931 25281.8 25 +1727956217973 25281.8 26 +1727956228016 25281.8 27 +1727956238081 25281.9 28 +1727956248152 25281.9 29 +1727956258195 25281.9 30 +1727956268239 25281.9 31 +1727956278284 25281.9 32 +1727956288327 25281.9 33 +1727956298390 25281.9 34 +1727956308435 25281.9 35 +1727956318480 25281.9 36 +1727956328523 25281.9 37 +1727956338718 25281.9 38 +1727956348772 25281.9 39 +1727956358817 25281.9 40 +1727956368862 25281.9 41 +1727956379059 25281.9 42 +1727956389102 25281.9 43 +1727956399147 25281.9 44 +1727956409191 25281.9 45 +1727956419234 25281.9 46 +1727956429278 25281.9 47 +1727956439332 25281.9 48 +1727956449379 25281.8 49 +1727956459517 25281.8 50 +1727956469574 25281.8 51 +1727956479618 25281.8 52 +1727956489684 25281.8 53 +1727956499894 25281.8 54 +1727956509978 25281.8 55 +1727956520022 25281.8 56 +1727956530069 25281.8 57 +1727956540116 25281.7 58 +1727956550161 25281.7 59 +1727956560206 25281.7 60 +1727956570471 25281.7 61 +1727956580518 25281.7 62 +1727956590563 25281.7 63 +1727956600607 25281.7 64 +1727956610739 25281.7 65 +1727956620788 25281.7 66 +1727956630832 25281.7 67 +1727956640878 25281.7 68 +1727956650930 25281.7 69 +1727956660976 25281.7 70 +1727956671022 25281.7 71 +1727956681071 25281.7 72 +1727956691116 25281.7 73 +1727956701178 25281.7 74 diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/system/disk_usage_percentage b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/system/disk_usage_percentage new file mode 100644 index 0000000000000000000000000000000000000000..6dd53a18b1dc8100395ca04b6090e1d7c1f6dc4e --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/system/disk_usage_percentage @@ -0,0 +1,75 @@ +1727955956148 10.6 0 +1727955966444 10.6 1 +1727955976487 10.6 2 +1727955986528 10.6 3 +1727955996569 10.6 4 +1727956006608 10.6 5 +1727956016649 10.6 6 +1727956026705 10.6 7 +1727956036780 10.6 8 +1727956046822 10.6 9 +1727956056926 10.6 10 +1727956066967 10.6 11 +1727956077006 10.6 12 +1727956087047 10.6 13 +1727956097115 10.6 14 +1727956107156 10.6 15 +1727956117226 10.6 16 +1727956127269 10.6 17 +1727956137312 10.6 18 +1727956147371 10.6 19 +1727956157410 10.6 20 +1727956167450 10.6 21 +1727956177503 10.6 22 +1727956187566 10.6 23 +1727956197609 10.6 24 +1727956207931 10.6 25 +1727956217973 10.6 26 +1727956228016 10.6 27 +1727956238081 10.6 28 +1727956248152 10.6 29 +1727956258195 10.6 30 +1727956268239 10.6 31 +1727956278284 10.6 32 +1727956288327 10.6 33 +1727956298390 10.6 34 +1727956308435 10.6 35 +1727956318480 10.6 36 +1727956328523 10.6 37 +1727956338718 10.6 38 +1727956348772 10.6 39 +1727956358817 10.6 40 +1727956368862 10.6 41 +1727956379059 10.6 42 +1727956389102 10.6 43 +1727956399147 10.6 44 +1727956409191 10.6 45 +1727956419234 10.6 46 +1727956429278 10.6 47 +1727956439332 10.6 48 +1727956449379 10.6 49 +1727956459517 10.6 50 +1727956469574 10.6 51 +1727956479618 10.6 52 +1727956489684 10.6 53 +1727956499894 10.6 54 +1727956509978 10.6 55 +1727956520022 10.6 56 +1727956530069 10.6 57 +1727956540116 10.6 58 +1727956550161 10.6 59 +1727956560206 10.6 60 +1727956570471 10.6 61 +1727956580518 10.6 62 +1727956590563 10.6 63 +1727956600607 10.6 64 +1727956610739 10.6 65 +1727956620788 10.6 66 +1727956630832 10.6 67 +1727956640878 10.6 68 +1727956650930 10.6 69 +1727956660976 10.6 70 +1727956671022 10.6 71 +1727956681071 10.6 72 +1727956691116 10.6 73 +1727956701178 10.6 74 diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/system/network_receive_megabytes b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/system/network_receive_megabytes new file mode 100644 index 0000000000000000000000000000000000000000..808611e9f139a2be54c16311c10a7f8bfb853be2 --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/system/network_receive_megabytes @@ -0,0 +1,75 @@ +1727955956148 0.11096799373626709 0 +1727955966444 259.18187499046326 1 +1727955976487 531.967844992876 2 +1727955986528 787.5309439897537 3 +1727955996569 1059.8952369987965 4 +1727956006608 1254.669292986393 5 +1727956016649 1543.9384169876575 6 +1727956026705 1734.9752549827099 7 +1727956036780 1922.77330198884 8 +1727956046822 2178.417831003666 9 +1727956056926 2417.139676988125 10 +1727956066967 2588.488157004118 11 +1727956077006 2860.825423002243 12 +1727956087047 3014.7591210007668 13 +1727956097115 3270.096051990986 14 +1727956107156 3457.9372069835663 15 +1727956117226 3713.6349669992924 16 +1727956127269 3862.4211269915104 17 +1727956137312 4016.2976379990578 18 +1727956147371 4203.895682990551 19 +1727956157410 4299.593681007624 20 +1727956167450 4453.711995005608 21 +1727956177503 4557.079016000032 22 +1727956187566 4660.128437995911 23 +1727956197609 4806.39434799552 24 +1727956207931 4858.352321982384 25 +1727956217973 4927.7285459935665 26 +1727956228016 4963.099352002144 27 +1727956238081 4984.414177983999 28 +1727956248152 4989.101254999638 29 +1727956258195 4990.707468003035 30 +1727956268239 4992.143665999174 31 +1727956278284 4993.721338003874 32 +1727956288327 4995.582724004984 33 +1727956298390 4997.471235007048 34 +1727956308435 4999.020043998957 35 +1727956318480 5000.489805996418 36 +1727956328523 5002.089810997248 37 +1727956338718 5003.641692996025 38 +1727956348772 5005.791273981333 39 +1727956358817 5007.636424988508 40 +1727956368862 5009.192775994539 41 +1727956379059 5010.739802986383 42 +1727956389102 5012.751590996981 43 +1727956399147 5014.2780739963055 44 +1727956409191 5016.159969002008 45 +1727956419234 5017.581447988749 46 +1727956429278 5018.6570789813995 47 +1727956439332 5019.8096089959145 48 +1727956449379 5021.117024987936 49 +1727956459517 5022.555377990007 50 +1727956469574 5024.196536004543 51 +1727956479618 5025.376843988895 52 +1727956489684 5026.721776008606 53 +1727956499894 5028.229658007622 54 +1727956509978 5029.567781001329 55 +1727956520022 5030.766417980194 56 +1727956530069 5032.006567984819 57 +1727956540116 5033.1586029827595 58 +1727956550161 5034.468189001083 59 +1727956560206 5035.6516969799995 60 +1727956570471 5036.812438994646 61 +1727956580518 5037.96874499321 62 +1727956590563 5039.021807998419 63 +1727956600607 5040.154663980007 64 +1727956610739 5041.738018989563 65 +1727956620788 5042.932076990604 66 +1727956630832 5044.077535003424 67 +1727956640878 5045.2813619971275 68 +1727956650930 5046.49400100112 69 +1727956660976 5047.609851002693 70 +1727956671022 5048.009965002537 71 +1727956681071 5048.257587999105 72 +1727956691116 5048.585871994495 73 +1727956701178 5048.84040299058 74 diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/system/network_transmit_megabytes b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/system/network_transmit_megabytes new file mode 100644 index 0000000000000000000000000000000000000000..d26a0cba7e6d6e0d05c39b1ec8c16458e0ba9628 --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/system/network_transmit_megabytes @@ -0,0 +1,75 @@ +1727955956148 0.0056739747524261475 0 +1727955966444 5.432140976190567 1 +1727955976487 7.895155996084213 2 +1727955986528 10.101600974798203 3 +1727955996569 12.252655982971191 4 +1727956006608 14.697304993867874 5 +1727956016649 16.847133994102478 6 +1727956026705 18.888603001832962 7 +1727956036780 20.980927973985672 8 +1727956046822 23.250831991434097 9 +1727956056926 25.583281993865967 10 +1727956066967 27.738143980503082 11 +1727956077006 31.45805898308754 12 +1727956087047 33.472884982824326 13 +1727956097115 35.51568800210953 14 +1727956107156 37.66228899359703 15 +1727956117226 40.18750497698784 16 +1727956127269 42.02472999691963 17 +1727956137312 44.00092497467995 18 +1727956147371 45.9193069934845 19 +1727956157410 47.93206697702408 20 +1727956167450 50.07498198747635 21 +1727956177503 52.20883497595787 22 +1727956187566 54.04528099298477 23 +1727956197609 56.02118498086929 24 +1727956207931 59.11806699633598 25 +1727956217973 61.07632699608803 26 +1727956228016 62.75239297747612 27 +1727956238081 64.79731798171997 28 +1727956248152 66.71890199184418 29 +1727956258195 68.49989199638367 30 +1727956268239 70.11436399817467 31 +1727956278284 71.8746329843998 32 +1727956288327 73.95024198293686 33 +1727956298390 75.91340997815132 34 +1727956308435 77.68807899951935 35 +1727956318480 79.39554598927498 36 +1727956328523 81.28518497943878 37 +1727956338718 83.08320298790932 38 +1727956348772 85.26255097985268 39 +1727956358817 87.32361897826195 40 +1727956368862 89.03201398253441 41 +1727956379059 90.86483198404312 42 +1727956389102 92.92477098107338 43 +1727956399147 94.73741999268532 44 +1727956409191 96.9281889796257 45 +1727956419234 98.76894298195839 46 +1727956429278 100.13125598430634 47 +1727956439332 101.62085700035095 48 +1727956449379 103.0913459956646 49 +1727956459517 104.72728598117828 50 +1727956469574 106.53743499517441 51 +1727956479618 108.05628699064255 52 +1727956489684 109.7180569767952 53 +1727956499894 111.2086009979248 54 +1727956509978 112.91484299302101 55 +1727956520022 114.48177298903465 56 +1727956530069 116.08686098456383 57 +1727956540116 117.42569398880005 58 +1727956550161 118.88163897395134 59 +1727956560206 120.45818397402763 60 +1727956570471 122.02544698119164 61 +1727956580518 123.59617698192596 62 +1727956590563 124.82379800081253 63 +1727956600607 126.40499797463417 64 +1727956610739 128.32138699293137 65 +1727956620788 129.92650598287582 66 +1727956630832 131.26312699913979 67 +1727956640878 132.89644798636436 68 +1727956650930 134.54578599333763 69 +1727956660976 136.14049598574638 70 +1727956671022 136.6928139925003 71 +1727956681071 136.95008999109268 72 +1727956691116 137.28405597805977 73 +1727956701178 137.54569497704506 74 diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/system/system_memory_usage_megabytes b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/system/system_memory_usage_megabytes new file mode 100644 index 0000000000000000000000000000000000000000..facd6643855e745c9d228418eb26f9ce85520a77 --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/system/system_memory_usage_megabytes @@ -0,0 +1,75 @@ +1727955956148 49321.0 0 +1727955966444 52616.1 1 +1727955976487 52697.6 2 +1727955986528 52737.0 3 +1727955996569 52767.0 4 +1727956006608 52748.7 5 +1727956016649 52800.6 6 +1727956026705 52811.9 7 +1727956036780 52820.4 8 +1727956046822 52851.1 9 +1727956056926 52991.7 10 +1727956066967 52991.2 11 +1727956077006 52977.9 12 +1727956087047 52956.9 13 +1727956097115 52973.8 14 +1727956107156 53108.2 15 +1727956117226 53034.1 16 +1727956127269 53030.5 17 +1727956137312 53097.6 18 +1727956147371 52183.1 19 +1727956157410 53177.3 20 +1727956167450 53077.2 21 +1727956177503 53184.7 22 +1727956187566 53118.0 23 +1727956197609 53183.9 24 +1727956207931 53264.4 25 +1727956217973 53156.4 26 +1727956228016 48237.6 27 +1727956238081 48305.3 28 +1727956248152 47187.8 29 +1727956258195 47295.3 30 +1727956268239 47349.4 31 +1727956278284 47256.8 32 +1727956288327 47320.1 33 +1727956298390 47375.9 34 +1727956308435 47285.8 35 +1727956318480 47281.2 36 +1727956328523 42312.9 37 +1727956338718 42319.7 38 +1727956348772 41354.2 39 +1727956358817 36442.3 40 +1727956368862 36504.4 41 +1727956379059 34510.3 42 +1727956389102 35517.0 43 +1727956399147 35469.1 44 +1727956409191 35567.7 45 +1727956419234 35481.6 46 +1727956429278 30583.6 47 +1727956439332 25600.1 48 +1727956449379 24520.0 49 +1727956459517 24515.5 50 +1727956469574 18552.5 51 +1727956479618 18657.8 52 +1727956489684 18633.2 53 +1727956499894 17585.1 54 +1727956509978 17586.2 55 +1727956520022 17605.8 56 +1727956530069 17668.7 57 +1727956540116 17591.2 58 +1727956550161 17643.8 59 +1727956560206 17661.8 60 +1727956570471 17639.1 61 +1727956580518 17588.8 62 +1727956590563 17593.6 63 +1727956600607 17664.4 64 +1727956610739 17661.3 65 +1727956620788 17651.9 66 +1727956630832 17661.5 67 +1727956640878 17679.3 68 +1727956650930 17608.4 69 +1727956660976 17424.8 70 +1727956671022 17424.6 71 +1727956681071 17425.1 72 +1727956691116 17425.5 73 +1727956701178 17424.6 74 diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/system/system_memory_usage_percentage b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/system/system_memory_usage_percentage new file mode 100644 index 0000000000000000000000000000000000000000..de52ff72cf379cb0bd1b03d93681a123867e8175 --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/system/system_memory_usage_percentage @@ -0,0 +1,75 @@ +1727955956148 9.1 0 +1727955966444 9.7 1 +1727955976487 9.8 2 +1727955986528 9.8 3 +1727955996569 9.8 4 +1727956006608 9.8 5 +1727956016649 9.8 6 +1727956026705 9.8 7 +1727956036780 9.8 8 +1727956046822 9.8 9 +1727956056926 9.8 10 +1727956066967 9.8 11 +1727956077006 9.8 12 +1727956087047 9.8 13 +1727956097115 9.8 14 +1727956107156 9.8 15 +1727956117226 9.8 16 +1727956127269 9.8 17 +1727956137312 9.8 18 +1727956147371 9.7 19 +1727956157410 9.8 20 +1727956167450 9.8 21 +1727956177503 9.8 22 +1727956187566 9.8 23 +1727956197609 9.8 24 +1727956207931 9.9 25 +1727956217973 9.8 26 +1727956228016 8.9 27 +1727956238081 8.9 28 +1727956248152 8.7 29 +1727956258195 8.8 30 +1727956268239 8.8 31 +1727956278284 8.8 32 +1727956288327 8.8 33 +1727956298390 8.8 34 +1727956308435 8.8 35 +1727956318480 8.8 36 +1727956328523 7.8 37 +1727956338718 7.8 38 +1727956348772 7.7 39 +1727956358817 6.7 40 +1727956368862 6.8 41 +1727956379059 6.4 42 +1727956389102 6.6 43 +1727956399147 6.6 44 +1727956409191 6.6 45 +1727956419234 6.6 46 +1727956429278 5.7 47 +1727956439332 4.7 48 +1727956449379 4.5 49 +1727956459517 4.5 50 +1727956469574 3.4 51 +1727956479618 3.5 52 +1727956489684 3.5 53 +1727956499894 3.3 54 +1727956509978 3.3 55 +1727956520022 3.3 56 +1727956530069 3.3 57 +1727956540116 3.3 58 +1727956550161 3.3 59 +1727956560206 3.3 60 +1727956570471 3.3 61 +1727956580518 3.3 62 +1727956590563 3.3 63 +1727956600607 3.3 64 +1727956610739 3.3 65 +1727956620788 3.3 66 +1727956630832 3.3 67 +1727956640878 3.3 68 +1727956650930 3.3 69 +1727956660976 3.2 70 +1727956671022 3.2 71 +1727956681071 3.2 72 +1727956691116 3.2 73 +1727956701178 3.2 74 diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/training_mean_absolute_error b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/training_mean_absolute_error new file mode 100644 index 0000000000000000000000000000000000000000..71bf993f24d7a81d2cd4003e77aca1b40c336228 --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/training_mean_absolute_error @@ -0,0 +1 @@ +1727956647240 4.186873842725139 0 diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/training_mean_squared_error b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/training_mean_squared_error new file mode 100644 index 0000000000000000000000000000000000000000..1adf09112b950ec8d6f0e0861ba00812ef6be6c9 --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/training_mean_squared_error @@ -0,0 +1 @@ +1727956647240 34.664730921702976 0 diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/training_r2_score b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/training_r2_score new file mode 100644 index 0000000000000000000000000000000000000000..1567393a218eee51a405941eeac14624731bf53c --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/training_r2_score @@ -0,0 +1 @@ +1727956647240 0.49584244131973493 0 diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/training_root_mean_squared_error b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/training_root_mean_squared_error new file mode 100644 index 0000000000000000000000000000000000000000..badc44bc18f8297a872288d2dedcbd7044c10064 --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/training_root_mean_squared_error @@ -0,0 +1 @@ +1727956647240 5.887676190289593 0 diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/training_score b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/training_score new file mode 100644 index 0000000000000000000000000000000000000000..29ea9286cd92e26a6a0de527471078d7fb222e9d --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/metrics/training_score @@ -0,0 +1 @@ +1727956647241 0.49584244131973493 0 diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/alpha b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/alpha new file mode 100644 index 0000000000000000000000000000000000000000..7364623c0ea9c45183fdc110f9810a8fd45ed2be --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/alpha @@ -0,0 +1 @@ +1e-10 \ No newline at end of file diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/ccp_alpha b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/ccp_alpha similarity index 100% rename from mlruns/149819317988706962/135e604974134ca4877227251e765174/params/ccp_alpha rename to notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/ccp_alpha diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/bootstrap b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/copy_X_train similarity index 100% rename from mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/bootstrap rename to notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/copy_X_train diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/criterion b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/criterion similarity index 100% rename from mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/criterion rename to notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/criterion diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/kernel b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/kernel new file mode 100644 index 0000000000000000000000000000000000000000..092327021a8a3c33b65192397187731fa790cafe --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/kernel @@ -0,0 +1 @@ +1**2 * Matern(length_scale=[1, 1, 1, 1, 1, 1, 1], nu=2.5) + WhiteKernel(noise_level=1) \ No newline at end of file diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/kernel__k1 b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/kernel__k1 new file mode 100644 index 0000000000000000000000000000000000000000..4d6168bdb98e9f4d30e8d1cd3cdbb08802e9fc42 --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/kernel__k1 @@ -0,0 +1 @@ +1**2 * Matern(length_scale=[1, 1, 1, 1, 1, 1, 1], nu=2.5) \ No newline at end of file diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/kernel__k1__k1 b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/kernel__k1__k1 new file mode 100644 index 0000000000000000000000000000000000000000..071bc7cd77bac70119d5a9ed9006362c8588ac57 --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/kernel__k1__k1 @@ -0,0 +1 @@ +1**2 \ No newline at end of file diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/max_features b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/kernel__k1__k1__constant_value similarity index 100% rename from mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/max_features rename to notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/kernel__k1__k1__constant_value diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/kernel__k1__k1__constant_value_bounds b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/kernel__k1__k1__constant_value_bounds new file mode 100644 index 0000000000000000000000000000000000000000..b0b5ef311ba6dfd75c1aa12ae19f63e23aa19ed9 --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/kernel__k1__k1__constant_value_bounds @@ -0,0 +1 @@ +(0.01, 1000.0) \ No newline at end of file diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/kernel__k1__k2 b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/kernel__k1__k2 new file mode 100644 index 0000000000000000000000000000000000000000..0c7b10615898a3d56ba85ea82665803407b79f8e --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/kernel__k1__k2 @@ -0,0 +1 @@ +Matern(length_scale=[1, 1, 1, 1, 1, 1, 1], nu=2.5) \ No newline at end of file diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/kernel__k1__k2__length_scale b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/kernel__k1__k2__length_scale new file mode 100644 index 0000000000000000000000000000000000000000..ac580e2d9caffb5a3981f7fc44a1f31f9897282d --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/kernel__k1__k2__length_scale @@ -0,0 +1 @@ +[1. 1. 1. 1. 1. 1. 1.] \ No newline at end of file diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/kernel__k1__k2__length_scale_bounds b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/kernel__k1__k2__length_scale_bounds new file mode 100644 index 0000000000000000000000000000000000000000..f91c03a37f2027e7208796865de7955f6ce40812 --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/kernel__k1__k2__length_scale_bounds @@ -0,0 +1 @@ +[(0.01, 100), (0.01, 100), (0.01, 100), (0.01, 100), (0.01, 100), (0.01, 100), (0.01, 100)] \ No newline at end of file diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/kernel__k1__k2__nu b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/kernel__k1__k2__nu new file mode 100644 index 0000000000000000000000000000000000000000..68151b2e100d81a8e6521a3c29d354e582323ad7 --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/kernel__k1__k2__nu @@ -0,0 +1 @@ +2.5 \ No newline at end of file diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/kernel__k2 b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/kernel__k2 new file mode 100644 index 0000000000000000000000000000000000000000..b61e7057f35ffcdd3c66009c0b167f64ce7d6f93 --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/kernel__k2 @@ -0,0 +1 @@ +WhiteKernel(noise_level=1) \ No newline at end of file diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/max_features b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/kernel__k2__noise_level similarity index 100% rename from mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/max_features rename to notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/kernel__k2__noise_level diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/kernel__k2__noise_level_bounds b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/kernel__k2__noise_level_bounds new file mode 100644 index 0000000000000000000000000000000000000000..3d706fcdd07334e4fc20a564b0d0edff7706d66e --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/kernel__k2__noise_level_bounds @@ -0,0 +1 @@ +(1e-05, 100000.0) \ No newline at end of file diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/max_depth b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/max_depth new file mode 100644 index 0000000000000000000000000000000000000000..2b82dfea308730c4f925388dbb683e6eae360640 --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/max_depth @@ -0,0 +1 @@ +60 \ No newline at end of file diff --git a/mlruns/149819317988706962/135e604974134ca4877227251e765174/params/max_samples b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/max_features similarity index 100% rename from mlruns/149819317988706962/135e604974134ca4877227251e765174/params/max_samples rename to notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/max_features diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/max_leaf_nodes b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/max_leaf_nodes new file mode 100644 index 0000000000000000000000000000000000000000..86ee83a4a26867a79e0a5a8948153cff8f4cf9a4 --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/max_leaf_nodes @@ -0,0 +1 @@ +40 \ No newline at end of file diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/min_impurity_decrease b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/min_impurity_decrease new file mode 100644 index 0000000000000000000000000000000000000000..70fcfeac5f17bdac213a917f7e00cc39412e03f4 --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/min_impurity_decrease @@ -0,0 +1 @@ +0.1398574529323852 \ No newline at end of file diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/min_samples_leaf b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/min_samples_leaf new file mode 100644 index 0000000000000000000000000000000000000000..8580e7b684b14da5d9f84ab4eaf2f5139d508cbe --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/min_samples_leaf @@ -0,0 +1 @@ +30 \ No newline at end of file diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/min_samples_split b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/min_samples_split new file mode 100644 index 0000000000000000000000000000000000000000..9a037142aa3c1b4c490e1a38251620f113465330 --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/min_samples_split @@ -0,0 +1 @@ +10 \ No newline at end of file diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/min_weight_fraction_leaf b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/min_weight_fraction_leaf new file mode 100644 index 0000000000000000000000000000000000000000..f6727bee62a0d17001657320dac9fe08a82b25a9 --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/min_weight_fraction_leaf @@ -0,0 +1 @@ +0.0052834607609149485 \ No newline at end of file diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/monotonic_cst b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/monotonic_cst similarity index 100% rename from mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/params/monotonic_cst rename to notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/monotonic_cst diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/min_samples_split b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/n_restarts_optimizer similarity index 100% rename from mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/params/min_samples_split rename to notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/n_restarts_optimizer diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/noise b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/noise new file mode 100644 index 0000000000000000000000000000000000000000..4e6612ca4f4289e26b9258c13cea60275992e64b --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/noise @@ -0,0 +1 @@ +gaussian \ No newline at end of file diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/bootstrap b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/normalize_y similarity index 100% rename from mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/bootstrap rename to notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/normalize_y diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/optimizer b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/optimizer new file mode 100644 index 0000000000000000000000000000000000000000..524b16cff8744b16e3166dc5e2c3669cf3968caf --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/optimizer @@ -0,0 +1 @@ +fmin_l_bfgs_b \ No newline at end of file diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/random_state b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/random_state new file mode 100644 index 0000000000000000000000000000000000000000..873974b23645dbcbcc7a73242fc4f389043cfa1c --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/params/random_state @@ -0,0 +1 @@ +1395647406 \ No newline at end of file diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/tags/estimator_class b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/tags/estimator_class new file mode 100644 index 0000000000000000000000000000000000000000..a5cc85fcf5a9ceccd7f462b8358de777861297aa --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/tags/estimator_class @@ -0,0 +1 @@ +skopt.learning.gaussian_process.gpr.GaussianProcessRegressor \ No newline at end of file diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/tags/estimator_name b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/tags/estimator_name new file mode 100644 index 0000000000000000000000000000000000000000..dec5fdf8d27b03c4be20ba0b6ff2e95f780a5e32 --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/tags/estimator_name @@ -0,0 +1 @@ +GaussianProcessRegressor \ No newline at end of file diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/tags/mlflow.log-model.history b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/tags/mlflow.log-model.history new file mode 100644 index 0000000000000000000000000000000000000000..cbe594367fe26f961f516aa694a25484fae71921 --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/tags/mlflow.log-model.history @@ -0,0 +1 @@ +[{"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:45:51.363365", "model_uuid": "a37df25150c24fdaade758fd0519b3cd", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:45:56.401956", "model_uuid": "5d56d0d3c9634d91bfa0e001c8464b40", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:45:58.248929", "model_uuid": "7589ad46af024518bbe72f1b8b6a051c", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:46:00.081900", "model_uuid": "46a8b4dd92524bbd8c8267d0f0e44780", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:46:02.062003", "model_uuid": "93aa653d74464bc2b4f38aa4f3574aaa", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:46:04.080993", "model_uuid": "de00f570fabb4291bd07960f9cd63960", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:46:06.066027", "model_uuid": "83df36a08b3145e88531e3807cf8f910", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:46:08.106052", "model_uuid": "f9c54fdf57e44c5989daf8d54d7fdcf1", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:46:10.226666", "model_uuid": "93e8e508d2d84036a29f6e7b0a9760a0", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:46:12.159181", "model_uuid": "4c4a348b082e4b4b99ea0bc928f43c6c", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:46:14.103468", "model_uuid": "d8a6665d113a490690ac9bbc3e79749c", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:46:16.018776", "model_uuid": "9766b8d58f5f4e77892ef9ae58656bfd", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:46:18.034033", "model_uuid": "d24afa32e3a8420b94d6165abd34019f", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:46:20.098580", "model_uuid": "659a0ed267fe4438855b4caa99ef14cb", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:46:22.088402", "model_uuid": "de00a3a780294ad0a939bba678ed79be", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:46:24.098291", "model_uuid": "8cec56a5d22b4fe1b0455e41fe600541", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:46:26.091305", "model_uuid": "3bc5b7aa41e44b23ae57ef9324fac993", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:46:28.251477", "model_uuid": "e1cd4dda625e4cd9ae3063de7c3b8343", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:46:30.306569", "model_uuid": "97952d4c532343808d9d427daf800fe1", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:46:32.323095", "model_uuid": "bfe612cf984547bb8d19973ef5f034c7", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:46:34.365349", "model_uuid": "7c9cb06846e5424195c324d06e16fbde", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:46:36.404544", "model_uuid": "01e531cf391f4519a504a889d7281382", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:46:38.404506", "model_uuid": "c1762ee0e4cf4ed399346fb475fbceb3", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:46:40.375954", "model_uuid": "fec83f9594bc4f428c36b787a6e45cfc", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:46:42.373093", "model_uuid": "bf166c62a9d04b6798dbdbb4867d55d2", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:46:44.442781", "model_uuid": "ea8825460a5444dc93ad7711fba1d7cf", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:46:46.453601", "model_uuid": "9af29b72214d4f3485633e8273793ae8", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:46:48.477165", "model_uuid": "c08005eab91c4b04ae49d7c038dc48b0", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:46:50.493483", "model_uuid": "3b65a436e06b45ad86502893b8256615", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:46:52.475989", "model_uuid": "b6a039cb68c44ef59da74f8e8b40db0f", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:46:54.499690", "model_uuid": "bbb393e805b343f7825f1daf8f984d04", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:46:56.557517", "model_uuid": "58d9f09d0e004632b375fef00f643cd2", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:46:58.679741", "model_uuid": "bd35b3a0a3c34c789594a7f45eacb95a", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:47:00.692861", "model_uuid": "9df2c8836ec14460a220d3e5b7a4c635", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:47:02.746550", "model_uuid": "35d1f8e0b3564755bd336eb65dc8ac47", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:47:04.776669", "model_uuid": "bd2879f4b48e474b94d9659e1beed00a", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:47:06.753245", "model_uuid": "20b06d61dd5b439ab40cec139d02c41e", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:47:08.811035", "model_uuid": "02c9c61903e84dafb65bd41fe1f5b944", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:47:10.828835", "model_uuid": "038efa6fc8f6410fadca26540da40800", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:47:12.852616", "model_uuid": "c1c8e96ecdbf438b95858214408a9041", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:47:14.893747", "model_uuid": "6873aba07424476fa922080f097fd210", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:47:17.114148", "model_uuid": "0d606cdc41c54528aee76f34387fd00a", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:47:19.234832", "model_uuid": "23381134d1b54216875c0cf35203c31f", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:47:21.351804", "model_uuid": "90ebb896543e46678b602f51b9f3e96e", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:47:23.613012", "model_uuid": "546b0ffc6aac4874b2ade66c07d832b4", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:47:25.701805", "model_uuid": "a7b1b8f5d33348e680d28a6a1987e99c", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:47:27.792967", "model_uuid": "86e87c6d5a3149a69149862d6ffca12a", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:47:29.841086", "model_uuid": "c220e998ebb14c8ea4bb32908aab2f4c", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:47:31.894753", "model_uuid": "554dcf8069284463a7f1ffaf8d998aea", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:47:33.994474", "model_uuid": "5535486ba6b647e8b84d4a77772174aa", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:47:36.063641", "model_uuid": "0195b1fc7dc1457f8273e844cdda8e90", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:47:38.105580", "model_uuid": "c5d2ab2396ba46c9a140d52050431a3a", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:47:40.205865", "model_uuid": "745a3d273b75483d8529d4704456ed6f", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:47:42.312571", "model_uuid": "83000245b54c40a89dca8fbace4b4ee9", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:47:44.440903", "model_uuid": "af3b2e26aa344cb18a2054e1edbe3d2a", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:47:46.583198", "model_uuid": "6c826c6fff4743519a9759fc00153252", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:47:48.673200", "model_uuid": "2cd3a0f201e340d99f3c5753bc2489cd", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:47:50.713462", "model_uuid": "488d2c1fc01e4980af72a60f76f79138", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:47:52.828394", "model_uuid": "e8b03aa0d20c47db9b98fc6adc7995ac", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:47:54.883990", "model_uuid": "0ba45d6eeadc4c8994f4a3c34f87622b", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:47:56.899785", "model_uuid": "22b11e9959fd421db5ef4e86795f2ffe", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:47:59.007709", "model_uuid": "31b21ce7df09453799750522cf81fac2", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:48:00.983185", "model_uuid": "5d6eff446a66430183bd156f24bbd128", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:48:03.058733", "model_uuid": "ce39acf968514cd181e2a2f07e6bcb83", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:48:05.167635", "model_uuid": "9d17e947b11e4107a1d3551c68da3802", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:48:07.300359", "model_uuid": "96014d85d6f04f37bf5941536cd62fbd", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:48:09.433626", "model_uuid": "aabdbcfd5174417b8dfc38131e641cbd", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:48:11.702221", "model_uuid": "ad02125910964fff806329b07ab22684", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:48:13.856696", "model_uuid": "1245d10343954157afc8394b8ceec77f", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:48:15.881027", "model_uuid": "5801f88d532645fcb3e73a3515cddb0a", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:48:18.305398", "model_uuid": "98907140257643a68e72d4aad45539e7", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:48:20.539953", "model_uuid": "baf153e9cd5643ad98de65fdab247dad", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:48:22.691622", "model_uuid": "85db7371ea694ba3a9a0d6ed233947f5", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:48:24.915900", "model_uuid": "8c80b5849ade420fb5a7652becf27d04", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:48:26.927618", "model_uuid": "aee34ce2a6c342e3ac921fadea65dde4", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:48:29.058787", "model_uuid": "12daf6b16aaa4020ae2ab90f02f3c2e7", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:48:31.251671", "model_uuid": "21cd3851a3e94da2a7b307ae97d95be1", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:48:33.266674", "model_uuid": "0499b35574bd442598ede9ed2c387d9e", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:48:35.546745", "model_uuid": "a44b7d7ff7ec4e449dc7673549606c12", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:48:37.756945", "model_uuid": "d59349f23e2e489b86d6e981f63aa5a6", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:48:39.966027", "model_uuid": "26eb02fe61214ad39fe19af99661c8e6", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:48:42.088314", "model_uuid": "317f46bbb8ee4773bb6126a539eea0c6", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:48:44.315659", "model_uuid": "2271517c19d143b598f7e9f35161b3d8", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:48:46.541729", "model_uuid": "3a94054abed647e89c79b3b15d4ba3f7", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:48:48.844886", "model_uuid": "3390afb067cf4d388399405d6042551a", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:48:51.176636", "model_uuid": "2f88967372954414834f18527b007016", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:48:53.299618", "model_uuid": "b07a2e3699c14cd7b46bce5659492520", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:48:55.431893", "model_uuid": "f2e7c4c08b314609b8e6d10e129d6ac0", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:48:57.588591", "model_uuid": "0064a09f728b4670a39770d3080796d6", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:48:59.776584", "model_uuid": "dbac239d71db419e81c923d2035097f1", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:49:01.996187", "model_uuid": "f115a97da8fa4752af0f82a2f685ea06", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:49:04.198423", "model_uuid": "8cb8689ec30648cba06106869e06b09a", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:49:06.319464", "model_uuid": "b46a8344ac524708b1488f6d4e2f3459", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:49:08.468651", "model_uuid": "254e39aadb3945bcaabed8b11e4be70b", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:49:10.651883", "model_uuid": "2d1746085f904b7fb1926c819b975de2", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:49:12.820126", "model_uuid": "dfd97c9741f240a8abde7367b6771a92", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:49:14.995701", "model_uuid": "ef42b79af1bc43b39e48803031b1b207", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:49:17.193703", "model_uuid": "080fff7cc0b948f2ac7efd1fe16d27a1", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:49:19.911335", "model_uuid": "c9b89d5c31554628b81c08db5278c76f", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:49:22.270954", "model_uuid": "ad25d6b59c9e4b1fb884705729b229a0", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:49:24.472478", "model_uuid": "a914f6c5c9a742cd918c09481727de29", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:49:26.759905", "model_uuid": "98f6c18af5ba4653911dd3aecf287ed3", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:49:28.927516", "model_uuid": "cbd7cba3383e45499e8f6bec9b8ed47b", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:49:31.301697", "model_uuid": "548f24e6b2644a4ca58417d28f3973ec", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:49:33.575771", "model_uuid": "cb667028d5714662b15fcfe5ded7d951", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:49:35.793883", "model_uuid": "c5bc8ae0864642cba3e1fc816a1afebd", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:49:38.070859", "model_uuid": "6ec05e36235343c3aeb9ab2fd3b34af7", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:49:40.269772", "model_uuid": "c5f47f23822f4d61a4d7625acc0eb2ea", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:49:42.547836", "model_uuid": "0e73f3bb06dd47b29a17327987e90ac3", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:49:44.879531", "model_uuid": "93feeed970ef412eb35e6e4b576a59d7", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:49:47.104924", "model_uuid": "4718532571204a78bfa3ff53e22a53d4", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:49:49.357585", "model_uuid": "8707ce5add2f48afa3bf18698908205e", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:49:51.694096", "model_uuid": "0864a114a6a046d6980869415a2bbd94", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:49:54.070888", "model_uuid": "565f7dcd47464148ba0564b1e016ae14", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:49:56.296438", "model_uuid": "4c534082c9344689856d8cae917f0c31", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:49:58.661806", "model_uuid": "2ee2b96fdd7f4fac9ce0a5a3ed764ece", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:50:00.936621", "model_uuid": "b0d09fa000454dc1967bea9a2facb772", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:50:03.208865", "model_uuid": "c8bcc81a638c4aebaa72b8255fb562da", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:50:05.520989", "model_uuid": "bf023e04c82d4761bd06e7ac85fd3606", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:50:07.838682", "model_uuid": "4045bcc48568494b98df1f11e2251865", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:50:10.088634", "model_uuid": "cd12f459180b4f528b9f8a2ca841b1d2", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:50:12.412726", "model_uuid": "684c006b69284345a99614feb2699db6", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:50:14.701083", "model_uuid": "c1882bdc87ce4b9eb7b3faf15b3bc3a4", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:50:17.194035", "model_uuid": "3c44b4dda5ae45f3975e35b2afed4806", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:50:19.606789", "model_uuid": "86e8b616edbc40a2be999633c155aec6", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:50:21.887947", "model_uuid": "54081af06a5f494ab7d9fcbd7b9783dd", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:50:24.258225", "model_uuid": "1012ed9d716140c8872f1463d396056c", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:50:26.674758", "model_uuid": "aabec701c6c04ba69a251e36224b1e14", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:50:29.075028", "model_uuid": "f0522a2e8978439a95fba838e053cd4a", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:50:31.374872", "model_uuid": "a1813995be2e4dfab188215311a82f2f", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:50:33.712139", "model_uuid": "8071ad4e6b9b4700b0345becd6dbd8e8", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:50:36.015152", "model_uuid": "01168b1e1721452ca060a3c81e0ab64b", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:50:38.338060", "model_uuid": "0ba6179eae834679a151dd305c101aeb", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:50:40.727308", "model_uuid": "53e589243326498cb7f36dc8479011dc", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:50:43.023321", "model_uuid": "92a0ccc6d1a34f539c1de8865897ee07", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:50:45.290960", "model_uuid": "b55627ac7b0a4710808a5f5eb345f74e", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:50:47.580145", "model_uuid": "40f4ef97e12f4b29935fdaa1b0973fa0", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:50:49.880837", "model_uuid": "1d8df59305d347aebfd015a8b7f089c4", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:50:52.395087", "model_uuid": "f4492d50cc8c4762babd3de4290c75dd", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:50:54.678027", "model_uuid": "094519d3681b4cf3bb772a39af95301f", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:50:56.925640", "model_uuid": "a8382b44512f4d649cd922d01710236b", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:50:59.228412", "model_uuid": "0c82fc43a4c540d5a72c00cbd7960728", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:51:01.593108", "model_uuid": "6145c67af4a64d81896e5b31aee225a5", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:51:03.938477", "model_uuid": "fa1b537c4d6a47d686aa5247a100a23b", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:51:06.207586", "model_uuid": "eba6638bf2be46eb9a60f9d98017ce0d", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:51:08.669202", "model_uuid": "8386f60630ed4f11aca7fcfd5741f233", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:51:11.015213", "model_uuid": "4edbf4052b5448fcbe51dad359321849", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:51:13.274828", "model_uuid": "972876beaae64001bf30a49747ae3e65", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:51:15.587018", "model_uuid": "4e285e302b6341bfb7e94dfbc02cb674", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:51:17.798026", "model_uuid": "824d78579f2048fda0cd8964d6ca783b", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:51:20.162899", "model_uuid": "6498cf73918f4586b31dd1ec5ec8eea6", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:51:22.520008", "model_uuid": "b91a702110c14773b434e762b5184036", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:51:24.812903", "model_uuid": "f14729344ecd44e18462776ec80ab068", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:51:27.182688", "model_uuid": "104635c273454b8a8c4b19f4d6f43c5e", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:51:29.648689", "model_uuid": "bac4c9067a3e4121bbb67dbc3380d47f", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:51:32.094648", "model_uuid": "de170beece814378b8d2066a758f28df", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:51:34.338861", "model_uuid": "88d566d8eb1d464e96237d09edf454db", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:51:36.677693", "model_uuid": "877048234a5e4c5693b584a0ee0a4d09", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:51:38.921271", "model_uuid": "e4da93992f5140dd9098f320edcad181", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:51:41.968016", "model_uuid": "64e96edb7d3a40368d6c2309a846ea27", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:51:44.471875", "model_uuid": "f3d33c87bbd4471184098ca427ee16db", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:51:46.700011", "model_uuid": "9807b3cfc79e4caf9f167079f39b1df1", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:51:48.953783", "model_uuid": "ba877b68bd914e6dbeaa2b56254a4608", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:51:51.249727", "model_uuid": "7655113624714d68a24385182709e26b", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:51:53.530887", "model_uuid": "4033bf6c216743eeb562469d3d56063c", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:51:55.777686", "model_uuid": "aa7223d4c5a644d09ec04b2d1927e9ab", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:51:58.106394", "model_uuid": "48744cc55e5d438c9b166045f68c02bd", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:52:00.332669", "model_uuid": "ed796dbf4d254b3d84e86d504337f6a5", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:52:02.547671", "model_uuid": "9652a5d0748c4cffa839813d8293dfc6", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:52:04.858146", "model_uuid": "54e3064451e24195968550533f28573c", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:52:07.104002", "model_uuid": "32414612f4ac4264a439c0d874f5cb95", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:52:09.412350", "model_uuid": "f1a5d7f6ea9849b5b6d8113461a74b6c", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:52:11.664182", "model_uuid": "d23cb66431294ab58db33dc2fb221e38", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:52:13.919982", "model_uuid": "31f47edf446f4f80a42836c49dfb8235", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:52:16.182624", "model_uuid": "b8cb7c96d29140988b5cda6f0541686f", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:52:18.664856", "model_uuid": "22b503cbbada4dfb897ac6526f47ad3b", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:52:21.122016", "model_uuid": "385a5aaa00674af5ae3cabcdbc3cd7a3", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:52:23.475849", "model_uuid": "82d6388faf3e4d2abbc55892f44af4e9", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:52:25.909966", "model_uuid": "f15617a6a210467daa0ffebb308a2afd", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:52:28.333708", "model_uuid": "027c501b7fe1420682b9bf5b7d65bc0d", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:52:30.719076", "model_uuid": "9ded4d51f20748d78083c662c7b92f6b", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:52:33.051248", "model_uuid": "4cdb3c99f16c41c495f361ba3cfc618b", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:52:35.373691", "model_uuid": "63099c8fa8df4299959f6321317c7b51", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:52:37.669943", "model_uuid": "ef4b877899c041c4b829b745ce5c8ea7", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:52:39.991559", "model_uuid": "3c11a33c87c54ee988aa5f0cd5805549", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:52:42.303437", "model_uuid": "6c803f092cd641af8b66828f281ca959", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:52:44.612863", "model_uuid": "d073c60d7dbc4db2bff85158eeeeba9e", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:52:46.971627", "model_uuid": "b18462922b38428ebe37432e27f72a43", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:52:49.415921", "model_uuid": "aa6a1eb6c52545fdbd4f38a606e86add", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:52:51.736126", "model_uuid": "1ece4fc0e5884d00b8bfeb770ee93219", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:52:54.104750", "model_uuid": "107678fc1b1a452eb6e606f2940a30df", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:52:56.597653", "model_uuid": "de71624fbab54cd3bb97ed4e78cd2c1d", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:52:58.974690", "model_uuid": "684aa60b066741b5a3d124c1083be84e", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:53:01.365703", "model_uuid": "f7f1fdd9d49046dda3464bc871b422c4", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:53:03.638029", "model_uuid": "327715a630764f78ba5176bd706a6c95", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:53:05.923449", "model_uuid": "410c33a7ec984bf3a65bbc3e35a9b7a1", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:53:08.420685", "model_uuid": "9ceae180b93f4dab93eeaf41b0f22c2d", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:53:10.810673", "model_uuid": "8a7cef71864840ed9acb4d8b96f77a53", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:53:13.203890", "model_uuid": "bf69c4c657e047c0a6e0fb0317881d2d", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:53:15.685691", "model_uuid": "02c8ed5e3f3b49908541c4b04eb058a8", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:53:18.256733", "model_uuid": "ae1ad0fab1dd46fb8bbf65884b49637d", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:53:20.677843", "model_uuid": "63ea6393a8fc47e68f96bec2175b9acc", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:53:24.467664", "model_uuid": "f923ce61d8fb4dc8b58fe5ae8a9487a2", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:53:29.084683", "model_uuid": "57a7e15167004f9cbce0aa57826c6ceb", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:53:33.930679", "model_uuid": "4026372b82104b6c9c6aee04946a7862", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:53:37.181882", "model_uuid": "f3b834b145524b269191a3e2816fee51", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:53:40.323401", "model_uuid": "fb1833cd440541a2bf4cf33d2ab80aaf", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:53:43.775656", "model_uuid": "41f3fdff36bf4111ad999b4de27324e1", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:53:47.292907", "model_uuid": "243403422d0e4a43816faf2a42c77d59", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:53:50.390745", "model_uuid": "eafdef8cfa894c839fd0b019c9e1d638", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:53:53.724662", "model_uuid": "5fdbe657604b40e2819e48d0d999c08c", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:53:56.709477", "model_uuid": "0f1c5d6a30234643b5c9478eaea6aae8", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:54:00.058674", "model_uuid": "30058ad5fd0b4624938455e5de59728d", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:54:03.108929", "model_uuid": "6a26bbc65166421c8aad513b12da5dd3", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:54:06.238934", "model_uuid": "ecf2a2e4aa81431599d0146f501f13d3", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:54:09.849892", "model_uuid": "bd9bfb79f00147f9b36f849b9d3a3693", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:54:13.198840", "model_uuid": "96d5a1f25d1743a3ba38041ac9ed9695", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:54:16.555264", "model_uuid": "adc2e89cfc0f46e7b8e386bc2d63fd96", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:54:19.461695", "model_uuid": "1bb386226d38407ba68d0a3b905b0f73", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:54:22.546180", "model_uuid": "8e74c4f9ffe0412683a32b424e6de0eb", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:54:27.739037", "model_uuid": "75dbd7874fab4ec18a3898f64d252783", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:54:31.222892", "model_uuid": "e83a7bf416a64238bc1deaeecc399efd", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:54:35.466010", "model_uuid": "16958ad7e68b40bf97f61d00e7696fda", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:54:38.584699", "model_uuid": "364228bd32c94f0ebd1f2614439f1394", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:54:41.531957", "model_uuid": "64342d0bf9914c1d8a102d8eceb8af79", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:54:44.518754", "model_uuid": "ff7914fb59594d3cab7f2b3604b77916", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:54:47.375756", "model_uuid": "0367d4f076224b53b2493c59011591c6", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:54:50.623296", "model_uuid": "b2b5049c1b594debb93559f7cd77aea0", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:54:53.372153", "model_uuid": "e8e4a6d182bd4a42a7b344cac722c7f2", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:54:56.747351", "model_uuid": "05c4faacbfc0441eb2e00854225d037b", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:54:59.912647", "model_uuid": "d301a26dbb6f49dcac3a375672887a96", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:55:03.252954", "model_uuid": "65f30e25f9b04ad1bd05ba306ec0b3d7", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:55:06.132231", "model_uuid": "f44bcaf8cbaf4b62bdd805b40addb74d", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:55:09.530792", "model_uuid": "b2c274bb6521442cb2231b3f2e2514b3", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:55:12.792308", "model_uuid": "95ddb3a4c1e64e42b3d34130832592ea", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:55:16.046872", "model_uuid": "e0e5f4bcd43a49859e3833bc1164fddc", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:55:18.760971", "model_uuid": "ec41226b2cea45fda843e7ff4b945ef1", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:55:21.838692", "model_uuid": "619c38e8fe9f4852842c6ae60c43c961", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:55:24.809709", "model_uuid": "c5bbf88f1f2144adb846ffe0a2aca6d7", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:55:30.618238", "model_uuid": "c5625f6cf13f427287d88ed019204186", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:55:35.949893", "model_uuid": "202c27a311324658a5a98198e8a837d7", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:55:39.426966", "model_uuid": "9835a348bc62472bac27cbb9df1801a2", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:55:42.901089", "model_uuid": "86a29d8eb9c44cb2ae4533bfc860ef83", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:55:45.965676", "model_uuid": "c0382ed2a24c4b588dfdfc191dd103d1", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:55:48.849405", "model_uuid": "b0cbcd4126c54691af6933faf6bb783a", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:55:52.609660", "model_uuid": "7423e937de1349b1aa9e67684002a41e", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:55:56.064053", "model_uuid": "717dc7c86711446f8b31b494378f6184", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:55:59.725652", "model_uuid": "ecc15e4e06f548d2ac449cd7ef4134f4", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:56:02.794464", "model_uuid": "9a119cfdf45e4524ab85b69c591cb66e", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:56:06.200846", "model_uuid": "81ad1b99e8634a78923173d38e8853de", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:56:10.380594", "model_uuid": "5fe85787a374451f8000b68f445c5aca", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:56:14.424372", "model_uuid": "2148639f9c9f4ca2ae10c8f0f6cb0619", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:56:17.644506", "model_uuid": "a4b7ec6334c442c89117fa4d5d62092f", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:56:21.227414", "model_uuid": "d67a72df3fcf4faca81caf9a6678240b", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:56:24.757254", "model_uuid": "2b61107d6c9a40c8876d464f287f4da7", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:56:28.570945", "model_uuid": "8f1731dce70e4c89b43c49af35d817c9", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:56:32.849667", "model_uuid": "30411a8b782144e3a282775484caad25", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:56:36.370053", "model_uuid": "240d36cb08774ddb89f61ab2d23ba7d5", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:56:39.499504", "model_uuid": "bbcdf05a8fe9420cb4f2457986f4a855", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:56:42.792027", "model_uuid": "83de3f95b2774172b715df7a18d88428", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:56:46.423651", "model_uuid": "310214cf00004800b903bc8f91769a33", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:56:49.827853", "model_uuid": "5cc9917108964c5f8109c17b67fb9256", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:56:53.437416", "model_uuid": "82e06fe31c484751a7ee83ae2fdcf298", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:56:56.730319", "model_uuid": "7ecb1b690256401ab2d3fb521cfe2552", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:56:59.857351", "model_uuid": "9d4c701375b549e9bf18d4ae5a8e9d4b", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:57:03.656225", "model_uuid": "1430b9ff161f4ef48ab239378b5201d7", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:57:06.460585", "model_uuid": "27fcbeefc9404129a557be279bd9d1d7", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:57:09.368978", "model_uuid": "57e4fe078e984795898c0bf47c391039", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:57:13.294289", "model_uuid": "283b59dd1f724af8856d5b81846d15ed", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:57:17.048243", "model_uuid": "81eb7c6bdb33459699b66fbceee3d83e", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:57:20.441399", "model_uuid": "052a7c4d0bad4d59ab2f719fc2b8add3", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:57:23.780885", "model_uuid": "9bdcb03c5f334629b11cdce28ea5803a", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "3cbfdb0b05ee4ebda2b1a998d3371311", "artifact_path": "model", "utc_time_created": "2024-10-03 11:57:27.249424", "model_uuid": "0b2feef9554944caacc5c5b73225664a", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/tags/mlflow.runName b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/tags/mlflow.runName new file mode 100644 index 0000000000000000000000000000000000000000..1f363ecf849fbab707d14e9d1829f77eaa217544 --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/tags/mlflow.runName @@ -0,0 +1 @@ +wise-wolf-896 \ No newline at end of file diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/tags/mlflow.source.name b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/tags/mlflow.source.name new file mode 100644 index 0000000000000000000000000000000000000000..e3455416d6ff97faef741b494bcd4f7375068d7e --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/tags/mlflow.source.name @@ -0,0 +1 @@ +/cvmfs/hpc.rug.nl/versions/2023.01/rocky8/x86_64/amd/zen3/software/IPython/8.5.0-GCCcore-11.3.0/lib/python3.10/site-packages/ipykernel_launcher.py \ No newline at end of file diff --git a/mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/tags/mlflow.source.type b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/tags/mlflow.source.type similarity index 100% rename from mlruns/149819317988706962/15225421949b40d1a7edf73fbc1c5acc/tags/mlflow.source.type rename to notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/tags/mlflow.source.type diff --git a/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/tags/mlflow.user b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/tags/mlflow.user new file mode 100644 index 0000000000000000000000000000000000000000..2800e99f36624ea2ef6af03f42bb3c9dfab954c3 --- /dev/null +++ b/notebooks/mlruns/247522349482579112/3cbfdb0b05ee4ebda2b1a998d3371311/tags/mlflow.user @@ -0,0 +1 @@ +s5100534 \ No newline at end of file diff --git a/mlruns/149819317988706962/datasets/dd4d89a524510f8914834c3bc9cd9e95/meta.yaml b/notebooks/mlruns/247522349482579112/datasets/dd4d89a524510f8914834c3bc9cd9e95/meta.yaml similarity index 64% rename from mlruns/149819317988706962/datasets/dd4d89a524510f8914834c3bc9cd9e95/meta.yaml rename to notebooks/mlruns/247522349482579112/datasets/dd4d89a524510f8914834c3bc9cd9e95/meta.yaml index fbdf23f6c403eb72b82fce264d8ed369a148f984..d66d3325f521c20f2b698440ef75a81a93b3af8c 100644 --- a/mlruns/149819317988706962/datasets/dd4d89a524510f8914834c3bc9cd9e95/meta.yaml +++ b/notebooks/mlruns/247522349482579112/datasets/dd4d89a524510f8914834c3bc9cd9e95/meta.yaml @@ -5,6 +5,6 @@ profile: '{"features_shape": [2452, 33], "features_size": 80916, "features_nbyte schema: '{"mlflow_tensorspec": {"features": "[{\"type\": \"tensor\", \"tensor-spec\": {\"dtype\": \"float64\", \"shape\": [-1, 33]}}]", "targets": "[{\"type\": \"tensor\", \"tensor-spec\": {\"dtype\": \"float64\", \"shape\": [-1, 6]}}]"}}' -source: '{"tags": {"mlflow.user": "User", "mlflow.source.name": "c:/Users/User/ML4I/air-quality-forecast/air-quality-forecast/model_development.py", - "mlflow.source.type": "LOCAL", "mlflow.source.git.commit": "da08d56ac3b3131519322c57e8db01547d638865"}}' +source: '{"tags": {"mlflow.user": "s5100534", "mlflow.source.name": "/cvmfs/hpc.rug.nl/versions/2023.01/rocky8/x86_64/amd/zen3/software/IPython/8.5.0-GCCcore-11.3.0/lib/python3.10/site-packages/ipykernel_launcher.py", + "mlflow.source.type": "LOCAL"}}' source_type: code diff --git a/notebooks/mlruns/247522349482579112/meta.yaml b/notebooks/mlruns/247522349482579112/meta.yaml new file mode 100644 index 0000000000000000000000000000000000000000..250317aa732d27cf4d24238ec0c472b4f6ffa12c --- /dev/null +++ b/notebooks/mlruns/247522349482579112/meta.yaml @@ -0,0 +1,6 @@ +artifact_location: file:///scratch/s5100534/mlruns/247522349482579112 +creation_time: 1727955942477 +experiment_id: '247522349482579112' +last_update_time: 1727955942477 +lifecycle_stage: active +name: DecisionTree-BayesianOptimization diff --git a/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/meta.yaml b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/meta.yaml new file mode 100644 index 0000000000000000000000000000000000000000..bef2ea9050c7cb70d66fbbdba6026334ce186fb0 --- /dev/null +++ b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/meta.yaml @@ -0,0 +1,15 @@ +artifact_uri: mlflow-artifacts:/371509179810119961/442b56b8dbb5497d8b360a75c6933267/artifacts +end_time: null +entry_point_name: '' +experiment_id: '371509179810119961' +lifecycle_stage: active +run_id: 442b56b8dbb5497d8b360a75c6933267 +run_name: luminous-seal-751 +run_uuid: 442b56b8dbb5497d8b360a75c6933267 +source_name: '' +source_type: 4 +source_version: '' +start_time: 1727956708276 +status: 1 +tags: [] +user_id: s5100534 diff --git a/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/metrics/system/cpu_utilization_percentage b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/metrics/system/cpu_utilization_percentage new file mode 100644 index 0000000000000000000000000000000000000000..67ae5a6775ee49cf399b5a17e08153e02642a556 --- /dev/null +++ b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/metrics/system/cpu_utilization_percentage @@ -0,0 +1,18 @@ +1727956718503 0.1 0 +1727956728744 2.7 1 +1727956738786 2.6 2 +1727956748826 3.4 3 +1727956758869 2.2 4 +1727956768928 2.6 5 +1727956778974 1.7 6 +1727956789021 3.1 7 +1727956799061 1.8 8 +1727956809100 4.8 9 +1727956819143 5.0 10 +1727956829184 5.0 11 +1727956839221 5.3 12 +1727956849263 3.4 13 +1727956859342 4.8 14 +1727956869386 4.5 15 +1727956879424 5.2 16 +1727956889464 4.3 17 diff --git a/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/metrics/system/disk_available_megabytes b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/metrics/system/disk_available_megabytes new file mode 100644 index 0000000000000000000000000000000000000000..b0f99c2c3f13ad45715ed767cf457062d2319ca3 --- /dev/null +++ b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/metrics/system/disk_available_megabytes @@ -0,0 +1,18 @@ +1727956718503 213537.8 0 +1727956728744 213537.8 1 +1727956738786 213537.8 2 +1727956748826 213537.8 3 +1727956758869 213537.8 4 +1727956768928 213537.8 5 +1727956778974 213537.8 6 +1727956789021 213537.8 7 +1727956799061 213537.8 8 +1727956809100 213537.8 9 +1727956819143 213537.8 10 +1727956829184 213537.8 11 +1727956839221 213537.8 12 +1727956849263 213537.8 13 +1727956859342 213537.8 14 +1727956869386 213537.8 15 +1727956879424 213537.8 16 +1727956889464 213537.8 17 diff --git a/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/metrics/system/disk_usage_megabytes b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/metrics/system/disk_usage_megabytes new file mode 100644 index 0000000000000000000000000000000000000000..98dc9402133c64213d64d5196b9fb9bbfb3f0681 --- /dev/null +++ b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/metrics/system/disk_usage_megabytes @@ -0,0 +1,18 @@ +1727956718503 25281.7 0 +1727956728744 25281.7 1 +1727956738786 25281.7 2 +1727956748826 25281.7 3 +1727956758869 25281.7 4 +1727956768928 25281.7 5 +1727956778974 25281.7 6 +1727956789021 25281.7 7 +1727956799061 25281.7 8 +1727956809100 25281.7 9 +1727956819143 25281.7 10 +1727956829184 25281.7 11 +1727956839221 25281.7 12 +1727956849263 25281.7 13 +1727956859342 25281.7 14 +1727956869386 25281.7 15 +1727956879424 25281.7 16 +1727956889464 25281.7 17 diff --git a/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/metrics/system/disk_usage_percentage b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/metrics/system/disk_usage_percentage new file mode 100644 index 0000000000000000000000000000000000000000..693145348b8a5bb8001a8ef58d00a5dd23cd3cb9 --- /dev/null +++ b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/metrics/system/disk_usage_percentage @@ -0,0 +1,18 @@ +1727956718503 10.6 0 +1727956728744 10.6 1 +1727956738786 10.6 2 +1727956748826 10.6 3 +1727956758869 10.6 4 +1727956768928 10.6 5 +1727956778974 10.6 6 +1727956789021 10.6 7 +1727956799061 10.6 8 +1727956809100 10.6 9 +1727956819143 10.6 10 +1727956829184 10.6 11 +1727956839221 10.6 12 +1727956849263 10.6 13 +1727956859342 10.6 14 +1727956869386 10.6 15 +1727956879424 10.6 16 +1727956889464 10.6 17 diff --git a/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/metrics/system/network_receive_megabytes b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/metrics/system/network_receive_megabytes new file mode 100644 index 0000000000000000000000000000000000000000..651b78b2c6f7caf1764907df02a31419c34dc5ac --- /dev/null +++ b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/metrics/system/network_receive_megabytes @@ -0,0 +1,18 @@ +1727956718503 0.003322005271911621 0 +1727956728744 5.28930801153183 1 +1727956738786 5.419147998094559 2 +1727956748826 5.546283006668091 3 +1727956758869 5.698040008544922 4 +1727956768928 5.822885990142822 5 +1727956778974 7.26672101020813 6 +1727956789021 8.139064997434616 7 +1727956799061 8.256357997655869 8 +1727956809100 9.371573001146317 9 +1727956819143 10.475100010633469 10 +1727956829184 11.604423999786377 11 +1727956839221 12.852416008710861 12 +1727956849263 14.253394991159439 13 +1727956859342 15.239111989736557 14 +1727956869386 16.263043016195297 15 +1727956879424 17.717949002981186 16 +1727956889464 18.482800006866455 17 diff --git a/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/metrics/system/network_transmit_megabytes b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/metrics/system/network_transmit_megabytes new file mode 100644 index 0000000000000000000000000000000000000000..c7151e864528e8bc343de6dad85be7b21903aa60 --- /dev/null +++ b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/metrics/system/network_transmit_megabytes @@ -0,0 +1,18 @@ +1727956718503 0.003322005271911621 0 +1727956728744 0.6934800148010254 1 +1727956738786 0.8870140016078949 2 +1727956748826 1.0687319934368134 3 +1727956758869 1.273457020521164 4 +1727956768928 1.4477860033512115 5 +1727956778974 3.1648130118846893 6 +1727956789021 4.088457018136978 7 +1727956799061 4.304167002439499 8 +1727956809100 5.7410330176353455 9 +1727956819143 7.119235992431641 10 +1727956829184 8.527389019727707 11 +1727956839221 10.049091011285782 12 +1727956849263 11.685991019010544 13 +1727956859342 12.890776008367538 14 +1727956869386 14.18173599243164 15 +1727956879424 16.01127400994301 16 +1727956889464 16.99702301621437 17 diff --git a/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/metrics/system/system_memory_usage_megabytes b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/metrics/system/system_memory_usage_megabytes new file mode 100644 index 0000000000000000000000000000000000000000..b3cb30b87eb9570e88bc93d7e6c2283057de187b --- /dev/null +++ b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/metrics/system/system_memory_usage_megabytes @@ -0,0 +1,18 @@ +1727956718503 17421.1 0 +1727956728744 17694.0 1 +1727956738786 18052.4 2 +1727956748826 18263.4 3 +1727956758869 18490.8 4 +1727956768928 18775.2 5 +1727956778974 18996.4 6 +1727956789021 19057.9 7 +1727956799061 19111.0 8 +1727956809100 19184.0 9 +1727956819143 19249.9 10 +1727956829184 19267.8 11 +1727956839221 19275.0 12 +1727956849263 19324.6 13 +1727956859342 19402.1 14 +1727956869386 19442.3 15 +1727956879424 19497.4 16 +1727956889464 19505.3 17 diff --git a/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/metrics/system/system_memory_usage_percentage b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/metrics/system/system_memory_usage_percentage new file mode 100644 index 0000000000000000000000000000000000000000..74de1c38428e4781ca7f5a10cc0e27032a38ab55 --- /dev/null +++ b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/metrics/system/system_memory_usage_percentage @@ -0,0 +1,18 @@ +1727956718503 3.2 0 +1727956728744 3.3 1 +1727956738786 3.3 2 +1727956748826 3.4 3 +1727956758869 3.4 4 +1727956768928 3.5 5 +1727956778974 3.5 6 +1727956789021 3.5 7 +1727956799061 3.5 8 +1727956809100 3.6 9 +1727956819143 3.6 10 +1727956829184 3.6 11 +1727956839221 3.6 12 +1727956849263 3.6 13 +1727956859342 3.6 14 +1727956869386 3.6 15 +1727956879424 3.6 16 +1727956889464 3.6 17 diff --git a/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/alpha b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/alpha new file mode 100644 index 0000000000000000000000000000000000000000..7364623c0ea9c45183fdc110f9810a8fd45ed2be --- /dev/null +++ b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/alpha @@ -0,0 +1 @@ +1e-10 \ No newline at end of file diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/bootstrap b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/copy_X_train similarity index 100% rename from mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/bootstrap rename to notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/copy_X_train diff --git a/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/kernel b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/kernel new file mode 100644 index 0000000000000000000000000000000000000000..dc444957809b0485a5b6b2d89e4a15ab349c1839 --- /dev/null +++ b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/kernel @@ -0,0 +1 @@ +1**2 * Matern(length_scale=[1, 1, 1, 1, 1, 1, 1, 1, 1], nu=2.5) + WhiteKernel(noise_level=1) \ No newline at end of file diff --git a/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/kernel__k1 b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/kernel__k1 new file mode 100644 index 0000000000000000000000000000000000000000..ae4f56b432eeeed7c0b9a07f6290b7bf457e64d1 --- /dev/null +++ b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/kernel__k1 @@ -0,0 +1 @@ +1**2 * Matern(length_scale=[1, 1, 1, 1, 1, 1, 1, 1, 1], nu=2.5) \ No newline at end of file diff --git a/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/kernel__k1__k1 b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/kernel__k1__k1 new file mode 100644 index 0000000000000000000000000000000000000000..071bc7cd77bac70119d5a9ed9006362c8588ac57 --- /dev/null +++ b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/kernel__k1__k1 @@ -0,0 +1 @@ +1**2 \ No newline at end of file diff --git a/mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/max_features b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/kernel__k1__k1__constant_value similarity index 100% rename from mlruns/149819317988706962/5479a322736e4663944d983720a6648e/params/max_features rename to notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/kernel__k1__k1__constant_value diff --git a/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/kernel__k1__k1__constant_value_bounds b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/kernel__k1__k1__constant_value_bounds new file mode 100644 index 0000000000000000000000000000000000000000..b0b5ef311ba6dfd75c1aa12ae19f63e23aa19ed9 --- /dev/null +++ b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/kernel__k1__k1__constant_value_bounds @@ -0,0 +1 @@ +(0.01, 1000.0) \ No newline at end of file diff --git a/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/kernel__k1__k2 b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/kernel__k1__k2 new file mode 100644 index 0000000000000000000000000000000000000000..a67ab35a6761b4226d46d0233ea932693a9c66c4 --- /dev/null +++ b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/kernel__k1__k2 @@ -0,0 +1 @@ +Matern(length_scale=[1, 1, 1, 1, 1, 1, 1, 1, 1], nu=2.5) \ No newline at end of file diff --git a/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/kernel__k1__k2__length_scale b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/kernel__k1__k2__length_scale new file mode 100644 index 0000000000000000000000000000000000000000..507d8c0cb2ee9fd15692fdc4ef6bc84058fd0bf6 --- /dev/null +++ b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/kernel__k1__k2__length_scale @@ -0,0 +1 @@ +[1. 1. 1. 1. 1. 1. 1. 1. 1.] \ No newline at end of file diff --git a/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/kernel__k1__k2__length_scale_bounds b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/kernel__k1__k2__length_scale_bounds new file mode 100644 index 0000000000000000000000000000000000000000..d0f884fbc8394ce596d394465387e51001a9a9f4 --- /dev/null +++ b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/kernel__k1__k2__length_scale_bounds @@ -0,0 +1 @@ +[(0.01, 100), (0.01, 100), (0.01, 100), (0.01, 100), (0.01, 100), (0.01, 100), (0.01, 100), (0.01, 100), (0.01, 100)] \ No newline at end of file diff --git a/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/kernel__k1__k2__nu b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/kernel__k1__k2__nu new file mode 100644 index 0000000000000000000000000000000000000000..68151b2e100d81a8e6521a3c29d354e582323ad7 --- /dev/null +++ b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/kernel__k1__k2__nu @@ -0,0 +1 @@ +2.5 \ No newline at end of file diff --git a/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/kernel__k2 b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/kernel__k2 new file mode 100644 index 0000000000000000000000000000000000000000..b61e7057f35ffcdd3c66009c0b167f64ce7d6f93 --- /dev/null +++ b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/kernel__k2 @@ -0,0 +1 @@ +WhiteKernel(noise_level=1) \ No newline at end of file diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/max_features b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/kernel__k2__noise_level similarity index 100% rename from mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/max_features rename to notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/kernel__k2__noise_level diff --git a/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/kernel__k2__noise_level_bounds b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/kernel__k2__noise_level_bounds new file mode 100644 index 0000000000000000000000000000000000000000..3d706fcdd07334e4fc20a564b0d0edff7706d66e --- /dev/null +++ b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/kernel__k2__noise_level_bounds @@ -0,0 +1 @@ +(1e-05, 100000.0) \ No newline at end of file diff --git a/mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/min_samples_split b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/n_restarts_optimizer similarity index 100% rename from mlruns/149819317988706962/482f080397f8479f94024fbed2a3937a/params/min_samples_split rename to notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/n_restarts_optimizer diff --git a/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/noise b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/noise new file mode 100644 index 0000000000000000000000000000000000000000..4e6612ca4f4289e26b9258c13cea60275992e64b --- /dev/null +++ b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/noise @@ -0,0 +1 @@ +gaussian \ No newline at end of file diff --git a/mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/bootstrap b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/normalize_y similarity index 100% rename from mlruns/149819317988706962/d256fba7a7fe43c39749afef37154210/params/bootstrap rename to notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/normalize_y diff --git a/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/optimizer b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/optimizer new file mode 100644 index 0000000000000000000000000000000000000000..524b16cff8744b16e3166dc5e2c3669cf3968caf --- /dev/null +++ b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/optimizer @@ -0,0 +1 @@ +fmin_l_bfgs_b \ No newline at end of file diff --git a/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/random_state b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/random_state new file mode 100644 index 0000000000000000000000000000000000000000..873974b23645dbcbcc7a73242fc4f389043cfa1c --- /dev/null +++ b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/params/random_state @@ -0,0 +1 @@ +1395647406 \ No newline at end of file diff --git a/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/tags/estimator_class b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/tags/estimator_class new file mode 100644 index 0000000000000000000000000000000000000000..a5cc85fcf5a9ceccd7f462b8358de777861297aa --- /dev/null +++ b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/tags/estimator_class @@ -0,0 +1 @@ +skopt.learning.gaussian_process.gpr.GaussianProcessRegressor \ No newline at end of file diff --git a/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/tags/estimator_name b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/tags/estimator_name new file mode 100644 index 0000000000000000000000000000000000000000..dec5fdf8d27b03c4be20ba0b6ff2e95f780a5e32 --- /dev/null +++ b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/tags/estimator_name @@ -0,0 +1 @@ +GaussianProcessRegressor \ No newline at end of file diff --git a/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/tags/mlflow.log-model.history b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/tags/mlflow.log-model.history new file mode 100644 index 0000000000000000000000000000000000000000..8091d0d81dff2476a83263d7d0187cd11f00fafa --- /dev/null +++ b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/tags/mlflow.log-model.history @@ -0,0 +1 @@ +[{"run_id": "442b56b8dbb5497d8b360a75c6933267", "artifact_path": "model", "utc_time_created": "2024-10-03 11:59:22.507711", "model_uuid": "5636f92ea52740888da9d958c64c886f", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "442b56b8dbb5497d8b360a75c6933267", "artifact_path": "model", "utc_time_created": "2024-10-03 11:59:49.381859", "model_uuid": "a63ad11a0da745099ada153d9701b201", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "442b56b8dbb5497d8b360a75c6933267", "artifact_path": "model", "utc_time_created": "2024-10-03 11:59:51.828596", "model_uuid": "988eede56125493697afc231af3ea471", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "442b56b8dbb5497d8b360a75c6933267", "artifact_path": "model", "utc_time_created": "2024-10-03 11:59:54.495502", "model_uuid": "8bac17aafa424ce0b63bb9ab601e79f0", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "442b56b8dbb5497d8b360a75c6933267", "artifact_path": "model", "utc_time_created": "2024-10-03 11:59:59.481417", "model_uuid": "7b939003345440698767adf24577e943", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "442b56b8dbb5497d8b360a75c6933267", "artifact_path": "model", "utc_time_created": "2024-10-03 12:00:01.836219", "model_uuid": "3d99d50bb01546d796bea0fd391c1e94", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "442b56b8dbb5497d8b360a75c6933267", "artifact_path": "model", "utc_time_created": "2024-10-03 12:00:04.309100", "model_uuid": "53d53fff163e4813b2fbe2423b3e644d", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "442b56b8dbb5497d8b360a75c6933267", "artifact_path": "model", "utc_time_created": "2024-10-03 12:00:10.516728", "model_uuid": "8c9a498c64cf4172a37cf663a228e5c4", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "442b56b8dbb5497d8b360a75c6933267", "artifact_path": "model", "utc_time_created": "2024-10-03 12:00:13.174694", "model_uuid": "64aceb6ace154138817db42bf23cc3e8", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "442b56b8dbb5497d8b360a75c6933267", "artifact_path": "model", "utc_time_created": "2024-10-03 12:00:15.375572", "model_uuid": "5bbfe7920a2f42aab6b9fb120336ed9a", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "442b56b8dbb5497d8b360a75c6933267", "artifact_path": "model", "utc_time_created": "2024-10-03 12:00:20.691763", "model_uuid": "d2940aa66a55413bb118710071bb15d7", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "442b56b8dbb5497d8b360a75c6933267", "artifact_path": "model", "utc_time_created": "2024-10-03 12:00:22.783895", "model_uuid": "49500b84abc74ae791113949612b66c0", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "442b56b8dbb5497d8b360a75c6933267", "artifact_path": "model", "utc_time_created": "2024-10-03 12:00:24.747215", "model_uuid": "54f6ab49141a45bab5cef57defa137ca", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "442b56b8dbb5497d8b360a75c6933267", "artifact_path": "model", "utc_time_created": "2024-10-03 12:00:32.765347", "model_uuid": "31800f30aaf643ec84c9d244e7227162", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "442b56b8dbb5497d8b360a75c6933267", "artifact_path": "model", "utc_time_created": "2024-10-03 12:00:36.523676", "model_uuid": "dd9b3b92c12546fa8870abc2cd9efa15", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "442b56b8dbb5497d8b360a75c6933267", "artifact_path": "model", "utc_time_created": "2024-10-03 12:00:38.938919", "model_uuid": "8a894480dc9541898253d95f58a41767", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "442b56b8dbb5497d8b360a75c6933267", "artifact_path": "model", "utc_time_created": "2024-10-03 12:00:44.533093", "model_uuid": "77655ab961da4f07a40fb176d8799fdf", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "442b56b8dbb5497d8b360a75c6933267", "artifact_path": "model", "utc_time_created": "2024-10-03 12:00:47.039345", "model_uuid": "af4f2ea5c85c435db35fdaa5b212008b", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "442b56b8dbb5497d8b360a75c6933267", "artifact_path": "model", "utc_time_created": "2024-10-03 12:00:49.510487", "model_uuid": "8f2d297940fe44ddaa44b6ad03b46e73", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "442b56b8dbb5497d8b360a75c6933267", "artifact_path": "model", "utc_time_created": "2024-10-03 12:00:54.955333", "model_uuid": "56c4d6ed8a0a4b24b85564eea55c6493", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "442b56b8dbb5497d8b360a75c6933267", "artifact_path": "model", "utc_time_created": "2024-10-03 12:00:57.496834", "model_uuid": "1ae44fe8b1994801aefb12c1ea1632a6", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "442b56b8dbb5497d8b360a75c6933267", "artifact_path": "model", "utc_time_created": "2024-10-03 12:00:59.909484", "model_uuid": "545b0a2972794e88934f84ed8de645d4", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "442b56b8dbb5497d8b360a75c6933267", "artifact_path": "model", "utc_time_created": "2024-10-03 12:01:04.128330", "model_uuid": "1b5c238f59dd433f9527d919417cb1e7", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "442b56b8dbb5497d8b360a75c6933267", "artifact_path": "model", "utc_time_created": "2024-10-03 12:01:06.661240", "model_uuid": "16123db9f67e4aebaca48f2ebf7ff007", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "442b56b8dbb5497d8b360a75c6933267", "artifact_path": "model", "utc_time_created": "2024-10-03 12:01:08.847400", "model_uuid": "eec0316fbbc84540bb684ec229ed10a9", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "442b56b8dbb5497d8b360a75c6933267", "artifact_path": "model", "utc_time_created": "2024-10-03 12:01:16.788361", "model_uuid": "0c7bfcd730434977adbfbf1a55833dd4", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "442b56b8dbb5497d8b360a75c6933267", "artifact_path": "model", "utc_time_created": "2024-10-03 12:01:19.416664", "model_uuid": "6d965578bdf042fda1c0936217438a2c", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}, {"run_id": "442b56b8dbb5497d8b360a75c6933267", "artifact_path": "model", "utc_time_created": "2024-10-03 12:01:21.648114", "model_uuid": "053c1598f2e141d1b6db8759fd0709a5", "flavors": {"python_function": {"model_path": "model.pkl", "predict_fn": "predict", "loader_module": "mlflow.sklearn", "python_version": "3.10.4", "env": {"conda": "conda.yaml", "virtualenv": "python_env.yaml"}}, "sklearn": {"pickled_model": "model.pkl", "sklearn_version": "1.5.2", "serialization_format": "cloudpickle", "code": null}}}] \ No newline at end of file diff --git a/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/tags/mlflow.runName b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/tags/mlflow.runName new file mode 100644 index 0000000000000000000000000000000000000000..f3e245891589080685eeb58ecce9d9ec674fc172 --- /dev/null +++ b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/tags/mlflow.runName @@ -0,0 +1 @@ +luminous-seal-751 \ No newline at end of file diff --git a/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/tags/mlflow.source.name b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/tags/mlflow.source.name new file mode 100644 index 0000000000000000000000000000000000000000..e3455416d6ff97faef741b494bcd4f7375068d7e --- /dev/null +++ b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/tags/mlflow.source.name @@ -0,0 +1 @@ +/cvmfs/hpc.rug.nl/versions/2023.01/rocky8/x86_64/amd/zen3/software/IPython/8.5.0-GCCcore-11.3.0/lib/python3.10/site-packages/ipykernel_launcher.py \ No newline at end of file diff --git a/mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/tags/mlflow.source.type b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/tags/mlflow.source.type similarity index 100% rename from mlruns/149819317988706962/39324cef8f2443b7b4b77eefe61ef6ca/tags/mlflow.source.type rename to notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/tags/mlflow.source.type diff --git a/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/tags/mlflow.user b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/tags/mlflow.user new file mode 100644 index 0000000000000000000000000000000000000000..2800e99f36624ea2ef6af03f42bb3c9dfab954c3 --- /dev/null +++ b/notebooks/mlruns/371509179810119961/442b56b8dbb5497d8b360a75c6933267/tags/mlflow.user @@ -0,0 +1 @@ +s5100534 \ No newline at end of file diff --git a/notebooks/mlruns/371509179810119961/meta.yaml b/notebooks/mlruns/371509179810119961/meta.yaml new file mode 100644 index 0000000000000000000000000000000000000000..a877afe0c4a82fa89d2edcb84d8b4b6065ecf0de --- /dev/null +++ b/notebooks/mlruns/371509179810119961/meta.yaml @@ -0,0 +1,6 @@ +artifact_location: mlflow-artifacts:/371509179810119961 +creation_time: 1727956707779 +experiment_id: '371509179810119961' +last_update_time: 1727956707779 +lifecycle_stage: active +name: XGBoost-BayesianOptimization diff --git a/notebooks/n3_model_selection_training.ipynb b/notebooks/n3_model_selection_training.ipynb index 6aa5d21db0d678bc10a30f6899b6714a7943b266..a88b1d0a9c65517fbedc2b0bab3b47e29beecfc4 100644 --- a/notebooks/n3_model_selection_training.ipynb +++ b/notebooks/n3_model_selection_training.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": 10, + "execution_count": 1, "metadata": {}, "outputs": [], "source": [