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

example.py 2.5 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
  1. import os
  2. import warnings
  3. import sys
  4. import pandas as pd
  5. import numpy as np
  6. from sklearn.metrics import mean_squared_error, mean_absolute_error, r2_score
  7. from sklearn.model_selection import train_test_split
  8. from sklearn.linear_model import ElasticNet
  9. from urllib.parse import urlparse
  10. import mlflow
  11. from mlflow.models.signature import infer_signature
  12. import mlflow.sklearn
  13. import logging
  14. logging.basicConfig(level = logging.WARN)
  15. logger = logging.getLogger(__name__)
  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 teh wine-quality csv file from thr url
  25. csv_url = ""
  26. try:
  27. data = pd.read_csv(csv_url, sep=";")
  28. except Exception as e:
  29. logger.exception("Unable to download csv")
  30. # Split the data into trainin g and test test sets
  31. train, test = train_test_split(data)
  32. # The predicted column is quality which is a scaler from [3,9]
  33. train_x = train.drop(["quality"], axis = 1)
  34. test_x = test.drop(["quality"], axis = 1)
  35. train_y = train["quality"]
  36. test_y = test["quality"]
  37. alpha = float(sys.argv[1]) if len(sys.argv)> 1 else 0.5
  38. l1_ratio = float(sys.argv[2]) if len(sys.argv)> 2 else 0.5
  39. with mlflow.start_run():
  40. lr = ElasticNet(alpha=alpha, l1_ratio=l1_ratio,random_state=42)
  41. lr.fit(train_x, train_y)
  42. predicted_qualities = lr.predict(test_x)
  43. (rmse, mae, r2) = eval_metrics(test_y, predicted_qualities)
  44. print("Elasticnet model (alpha = {:f}, l1_ratio = {:f}):".format(alpha, l1_ratio))
  45. print(" RMSE: %s" % rmse)
  46. print(" MAE: %s" % mae)
  47. print(" R2: %s" % r2)
  48. mlflow.log_param("alpha", alpha)
  49. mlflow.log_param("l1_ratio", l1_ratio)
  50. mlflow.log_metric("rmse", rmse)
  51. mlflow.log_metric("mae", mae)
  52. mlflow.log_metric("r2", r2)
  53. predictions = lr.predict(train_x)
  54. signature = infer_signature(train_x, predictions)
  55. tracking_url_type_store = urlparse(mlflow.get_tracking_uri()).scheme
  56. # Model registry does not work with file store
  57. if tracking_url_type_store != "file":
  58. mlflow.sklearn.log_model(
  59. lr, "model", registered_model_name="ElasticnetWineModel", signature=signature
  60. )
  61. else:
  62. mlflow.sklearn.log_model(lr, "model", signature=signature)
Tip!

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

Comments

Loading...