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

apps.py 3.7 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
  1. import os
  2. import sys
  3. from sklearn.linear_model import ElasticNet
  4. from sklearn.metrics import mean_squared_error, mean_absolute_error, r2_score
  5. from sklearn.model_selection import train_test_split
  6. from urllib.parse import urlparse
  7. import numpy as np
  8. import pandas as pd
  9. import mlflow
  10. import mlflow.sklearn
  11. from mlflow.models import infer_signature
  12. import logging
  13. logging.basicConfig(level=logging.WARN)
  14. logger = logging.getLogger(__name__)
  15. import warnings
  16. def eval_metrics(actual, pred):
  17. rmse = np.sqrt(mean_squared_error(actual, pred))
  18. mae = mean_absolute_error(actual, pred)
  19. r2 = r2_score(actual, pred)
  20. return rmse, mae, r2
  21. if __name__ == "__main__":
  22. warnings.filterwarnings("ignore")
  23. np.random.seed(40)
  24. # Read the wine-quality csv file from the URL
  25. csv_url = (
  26. "https://raw.githubusercontent.com/mlflow/mlflow/master/tests/datasets/winequality-red.csv"
  27. )
  28. try:
  29. data = pd.read_csv(csv_url, sep=";")
  30. except Exception as e:
  31. logger.exception(
  32. "Unable to download training & test CSV, check your internet connection. Error: %s", e
  33. )
  34. # Split the data into training and test sets. (0.75, 0.25) split.
  35. train, test = train_test_split(data)
  36. # The predicted column is "quality" which is a scalar from [3, 9]
  37. train_x = train.drop(["quality"], axis=1)
  38. test_x = test.drop(["quality"], axis=1)
  39. train_y = train[["quality"]]
  40. test_y = test[["quality"]]
  41. import argparse
  42. parser = argparse.ArgumentParser()
  43. # Add an argument
  44. parser.add_argument('--alpha', type=float)
  45. parser.add_argument('--l1_ratio', type=float)
  46. # Parse the argument
  47. args = parser.parse_args()
  48. print(args.alpha, args.l1_ratio)
  49. # alpha = float(sys.argv[1]) if len(sys.argv) > 1 else 0.5
  50. # l1_ratio = float(sys.argv[2]) if len(sys.argv) > 2 else 0.5
  51. with mlflow.start_run():
  52. lr = ElasticNet(alpha=args.alpha, l1_ratio=args.l1_ratio, random_state=42)
  53. lr.fit(train_x, train_y)
  54. predicted_qualities = lr.predict(test_x)
  55. (rmse, mae, r2) = eval_metrics(test_y, predicted_qualities)
  56. print("Elasticnet model (alpha={:f}, l1_ratio={:f}):".format(args.alpha, args.l1_ratio))
  57. print(" RMSE: %s" % rmse)
  58. print(" MAE: %s" % mae)
  59. print(" R2: %s" % r2)
  60. mlflow.log_param("alpha", args.alpha)
  61. mlflow.log_param("l1_ratio", args.l1_ratio)
  62. mlflow.log_metric("rmse", rmse)
  63. mlflow.log_metric("r2", r2)
  64. mlflow.log_metric("mae", mae)
  65. predictions = lr.predict(train_x)
  66. signature = infer_signature(train_x, predictions)
  67. ## For Remote server only(DAGShub)
  68. mlflow_tracking_uri="https://dagshub.com/nsd8888/mlops-mlflow.mlflow"
  69. # MLFLOW_TRACKING_USERNAME="nsd8888"
  70. # MLFLOW_TRACKING_PASSWORD="4ba6357cf461a8fb63f8bd0a797cf96be9d75932"
  71. mlflow.set_tracking_uri(mlflow_tracking_uri)
  72. tracking_url_type_store = urlparse(mlflow.get_tracking_uri()).scheme
  73. # Model registry does not work with file store
  74. print(tracking_url_type_store)
  75. if tracking_url_type_store != "file":
  76. # Register the model
  77. # There are other ways to use the Model Registry, which depends on the use case,
  78. # please refer to the doc for more information:
  79. # https://mlflow.org/docs/latest/model-registry.html#api-workflow
  80. mlflow.sklearn.log_model(
  81. lr, "model", registered_model_name="ElasticnetWineModel"
  82. )
  83. else:
  84. 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...