Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

new.py 3.2 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
  1. # The data set used in this example is from http://archive.ics.uci.edu/ml/datasets/Wine+Quality
  2. # P. Cortez, A. Cerdeira, F. Almeida, T. Matos and J. Reis.
  3. # Modeling wine preferences by data mining from physicochemical properties. In Decision Support Systems, Elsevier, 47(4):547-553, 2009.
  4. import os
  5. import warnings
  6. import sys
  7. import pandas as pd
  8. import numpy as np
  9. from sklearn.metrics import mean_squared_error, mean_absolute_error, r2_score
  10. from sklearn.model_selection import train_test_split
  11. from sklearn.linear_model import ElasticNet
  12. from urllib.parse import urlparse
  13. import mlflow
  14. import mlflow.sklearn
  15. import logging
  16. logging.basicConfig(level=logging.WARN)
  17. logger = logging.getLogger(__name__)
  18. def eval_metrics(actual, pred):
  19. rmse = np.sqrt(mean_squared_error(actual, pred))
  20. mae = mean_absolute_error(actual, pred)
  21. r2 = r2_score(actual, pred)
  22. return rmse, mae, r2
  23. if __name__ == "__main__":
  24. warnings.filterwarnings("ignore")
  25. np.random.seed(40)
  26. # Read the wine-quality csv file from the URL
  27. csv_url = (
  28. "http://archive.ics.uci.edu/ml/machine-learning-databases/wine-quality/winequality-red.csv"
  29. )
  30. try:
  31. data = pd.read_csv(csv_url, sep=";")
  32. except Exception as e:
  33. logger.exception(
  34. "Unable to download training & test CSV, check your internet connection. Error: %s", e
  35. )
  36. # Split the data into training and test sets. (0.75, 0.25) split.
  37. train, test = train_test_split(data)
  38. # The predicted column is "quality" which is a scalar from [3, 9]
  39. train_x = train.drop(["quality"], axis=1)
  40. test_x = test.drop(["quality"], axis=1)
  41. train_y = train[["quality"]]
  42. test_y = test[["quality"]]
  43. alpha = float(sys.argv[1]) if len(sys.argv) > 1 else 0.5
  44. l1_ratio = float(sys.argv[2]) if len(sys.argv) > 2 else 0.5
  45. with mlflow.start_run():
  46. lr = ElasticNet(alpha=alpha, l1_ratio=l1_ratio, random_state=42)
  47. lr.fit(train_x, train_y)
  48. predicted_qualities = lr.predict(test_x)
  49. (rmse, mae, r2) = eval_metrics(test_y, predicted_qualities)
  50. print("Elasticnet model (alpha=%f, l1_ratio=%f):" % (alpha, l1_ratio))
  51. print(" RMSE: %s" % rmse)
  52. print(" MAE: %s" % mae)
  53. print(" R2: %s" % r2)
  54. mlflow.log_param("alpha", alpha)
  55. mlflow.log_param("l1_ratio", l1_ratio)
  56. mlflow.log_metric("rmse", rmse)
  57. mlflow.log_metric("r2", r2)
  58. mlflow.log_metric("mae", mae)
  59. remote_server_uri="MLFLOW_TRACKING_URI=https://dagshub.com/naimurborno/Loan_prediction_tracking_using_mlflow.mlflow"
  60. mlflow.set_tracking_uri(remote_server_uri)
  61. tracking_url_type_store = urlparse(mlflow.get_tracking_uri()).scheme
  62. # Model registry does not work with file store
  63. if tracking_url_type_store != "file":
  64. # Register the model
  65. # There are other ways to use the Model Registry, which depends on the use case,
  66. # please refer to the doc for more information:
  67. # https://mlflow.org/docs/latest/model-registry.html#api-workflow
  68. mlflow.sklearn.log_model(lr, "model", registered_model_name="ElasticnetWineModel")
  69. else:
  70. mlflow.sklearn.log_model(lr, "model")
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...