forked from dask-contrib/dask-sql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_model.py
More file actions
781 lines (699 loc) · 21.5 KB
/
test_model.py
File metadata and controls
781 lines (699 loc) · 21.5 KB
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
import os
import pickle
import sys
import joblib
import pandas as pd
import pytest
from dask.datasets import timeseries
pytest.importorskip("dask_ml")
def check_trained_model(c, model_name=None):
if model_name is None:
sql = """
SELECT * FROM PREDICT(
MODEL my_model,
SELECT x, y FROM timeseries
)
"""
else:
sql = f"""
SELECT * FROM PREDICT(
MODEL {model_name},
SELECT x, y FROM timeseries
)
"""
result_df = c.sql(sql).compute()
assert "target" in result_df.columns
assert len(result_df["target"]) > 0
@pytest.fixture()
def training_df(c):
df = timeseries(freq="1d").reset_index(drop=True)
c.create_table("timeseries", df, persist=True)
return training_df
def test_training_and_prediction(c, training_df):
c.sql(
"""
CREATE MODEL my_model WITH (
model_class = 'sklearn.ensemble.GradientBoostingClassifier',
wrap_predict = True,
target_column = 'target'
) AS (
SELECT x, y, x*y > 0 AS target
FROM timeseries
LIMIT 100
)
"""
)
check_trained_model(c)
def test_clustering_and_prediction(c, training_df):
c.sql(
"""
CREATE MODEL my_model WITH (
model_class = 'dask_ml.cluster.KMeans'
) AS (
SELECT x, y
FROM timeseries
LIMIT 100
)
"""
)
check_trained_model(c)
@pytest.mark.xfail(reason="dask-ml is broken for dask==2021.11.x")
def test_iterative_and_prediction(c, training_df):
c.sql(
"""
CREATE MODEL my_model WITH (
model_class = 'sklearn.linear_model.SGDClassifier',
wrap_fit = True,
target_column = 'target',
fit_kwargs = ( classes = ARRAY [0, 1] )
) AS (
SELECT x, y, x*y > 0 AS target
FROM timeseries
LIMIT 100
)
"""
)
check_trained_model(c)
@pytest.mark.xfail(reason="dask-ml is broken for dask==2021.11.x")
def test_show_models(c, training_df):
c.sql(
"""
CREATE MODEL my_model1 WITH (
model_class = 'sklearn.ensemble.GradientBoostingClassifier',
wrap_predict = True,
target_column = 'target'
) AS (
SELECT x, y, x*y > 0 AS target
FROM timeseries
LIMIT 100
)
"""
)
c.sql(
"""
CREATE MODEL my_model2 WITH (
model_class = 'dask_ml.cluster.KMeans'
) AS (
SELECT x, y
FROM timeseries
LIMIT 100
)
"""
)
c.sql(
"""
CREATE MODEL my_model3 WITH (
model_class = 'sklearn.linear_model.SGDClassifier',
wrap_fit = True,
target_column = 'target',
fit_kwargs = ( classes = ARRAY [0, 1] )
) AS (
SELECT x, y, x*y > 0 AS target
FROM timeseries
LIMIT 100
)
"""
)
expected = pd.DataFrame(["my_model1", "my_model2", "my_model3"], columns=["Models"])
result: pd.DataFrame = c.sql("SHOW MODELS").compute()
# test
pd.testing.assert_frame_equal(expected, result)
def test_wrong_training_or_prediction(c, training_df):
with pytest.raises(KeyError):
c.sql(
"""
SELECT * FROM PREDICT(
MODEL my_model,
SELECT x, y FROM timeseries
)
"""
)
with pytest.raises(ValueError):
c.sql(
"""
CREATE MODEL my_model WITH (
target_column = 'target'
) AS (
SELECT x, y, x*y > 0 AS target
FROM timeseries
LIMIT 100
)
"""
)
with pytest.raises(ValueError):
c.sql(
"""
CREATE MODEL my_model WITH (
model_class = 'that.is.not.a.python.class',
target_column = 'target'
) AS (
SELECT x, y, x*y > 0 AS target
FROM timeseries
LIMIT 100
)
"""
)
def test_correct_argument_passing(c, training_df):
c.sql(
"""
CREATE MODEL my_model WITH (
model_class = 'mock.MagicMock',
target_column = 'target',
fit_kwargs = (
first_arg = 3,
second_arg = ARRAY [ 1, 2 ],
third_arg = MAP [ 'a', 1 ],
forth_arg = MULTISET [ 1, 1, 2, 3 ]
)
) AS (
SELECT x, y, x*y > 0 AS target
FROM timeseries
LIMIT 100
)
"""
)
mocked_model, columns = c.schema[c.schema_name].models["my_model"]
assert list(columns) == ["x", "y"]
fit_function = mocked_model.fit
fit_function.assert_called_once()
call_kwargs = fit_function.call_args.kwargs
assert call_kwargs == dict(
first_arg=3, second_arg=[1, 2], third_arg={"a": 1}, forth_arg=set([1, 2, 3])
)
def test_replace_and_error(c, training_df):
c.sql(
"""
CREATE MODEL my_model WITH (
model_class = 'mock.MagicMock',
target_column = 'target'
) AS (
SELECT x, y, x*y > 0 AS target
FROM timeseries
LIMIT 100
)
"""
)
first_mock, _ = c.schema[c.schema_name].models["my_model"]
with pytest.raises(RuntimeError):
c.sql(
"""
CREATE MODEL my_model WITH (
model_class = 'mock.MagicMock',
target_column = 'target'
) AS (
SELECT x, y, x*y > 0 AS target
FROM timeseries
LIMIT 100
)
"""
)
c.sql(
"""
CREATE MODEL IF NOT EXISTS my_model WITH (
model_class = 'mock.MagicMock',
target_column = 'target'
) AS (
SELECT x, y, x*y > 0 AS target
FROM timeseries
LIMIT 100
)
"""
)
assert c.schema[c.schema_name].models["my_model"][0] == first_mock
c.sql(
"""
CREATE OR REPLACE MODEL my_model WITH (
model_class = 'mock.MagicMock',
target_column = 'target'
) AS (
SELECT x, y, x*y > 0 AS target
FROM timeseries
LIMIT 100
)
"""
)
assert c.schema[c.schema_name].models["my_model"][0] != first_mock
second_mock, _ = c.schema[c.schema_name].models["my_model"]
c.sql("DROP MODEL my_model")
c.sql(
"""
CREATE MODEL IF NOT EXISTS my_model WITH (
model_class = 'mock.MagicMock',
target_column = 'target'
) AS (
SELECT x, y, x*y > 0 AS target
FROM timeseries
LIMIT 100
)
"""
)
assert c.schema[c.schema_name].models["my_model"][0] != second_mock
def test_drop_model(c, training_df):
with pytest.raises(RuntimeError):
c.sql("DROP MODEL my_model")
c.sql("DROP MODEL IF EXISTS my_model")
c.sql(
"""
CREATE MODEL IF NOT EXISTS my_model WITH (
model_class = 'mock.MagicMock',
target_column = 'target'
) AS (
SELECT x, y, x*y > 0 AS target
FROM timeseries
LIMIT 100
)
"""
)
c.sql("DROP MODEL IF EXISTS my_model")
assert "my_model" not in c.schema[c.schema_name].models
def test_describe_model(c, training_df):
c.sql(
"""
CREATE MODEL ex_describe_model WITH (
model_class = 'sklearn.ensemble.GradientBoostingClassifier',
wrap_predict = True,
target_column = 'target'
) AS (
SELECT x, y, x*y > 0 AS target
FROM timeseries
LIMIT 100
)
"""
)
model, training_columns = c.schema[c.schema_name].models["ex_describe_model"]
expected_dict = model.get_params()
expected_dict["training_columns"] = training_columns.tolist()
# hack for converting model class into string
expected_series = (
pd.DataFrame.from_dict(expected_dict, orient="index", columns=["Params"])[
"Params"
]
.apply(lambda x: str(x))
.sort_index()
)
# test
result = (
c.sql("DESCRIBE MODEL ex_describe_model")
.compute()["Params"]
.apply(lambda x: str(x))
)
pd.testing.assert_series_equal(expected_series, result)
with pytest.raises(RuntimeError):
c.sql("DESCRIBE MODEL undefined_model")
def test_export_model(c, training_df, tmpdir):
with pytest.raises(RuntimeError):
c.sql(
"""EXPORT MODEL not_available_model with (
format ='pickle',
location = '/tmp/model.pkl'
)"""
)
c.sql(
"""
CREATE MODEL IF NOT EXISTS my_model WITH (
model_class = 'sklearn.ensemble.GradientBoostingClassifier',
target_column = 'target'
) AS (
SELECT x, y, x*y > 0 AS target
FROM timeseries
LIMIT 100
)
"""
)
# Happy flow
temporary_file = os.path.join(tmpdir, "pickle_model.pkl")
c.sql(
"""EXPORT MODEL my_model with (
format ='pickle',
location = '{}'
)""".format(
temporary_file
)
)
assert (
pickle.load(open(str(temporary_file), "rb")).__class__.__name__
== "GradientBoostingClassifier"
)
temporary_file = os.path.join(tmpdir, "model.joblib")
c.sql(
"""EXPORT MODEL my_model with (
format ='joblib',
location = '{}'
)""".format(
temporary_file
)
)
assert (
joblib.load(str(temporary_file)).__class__.__name__
== "GradientBoostingClassifier"
)
with pytest.raises(NotImplementedError):
temporary_dir = os.path.join(tmpdir, "model.onnx")
c.sql(
"""EXPORT MODEL my_model with (
format ='onnx',
location = '{}'
)""".format(
temporary_dir
)
)
def test_mlflow_export(c, training_df, tmpdir):
# Test only when mlflow was installed
mlflow = pytest.importorskip("mlflow", reason="mlflow not installed")
c.sql(
"""
CREATE MODEL IF NOT EXISTS my_model WITH (
model_class = 'sklearn.ensemble.GradientBoostingClassifier',
target_column = 'target'
) AS (
SELECT x, y, x*y > 0 AS target
FROM timeseries
LIMIT 100
)
"""
)
temporary_dir = os.path.join(tmpdir, "mlflow")
c.sql(
"""EXPORT MODEL my_model with (
format ='mlflow',
location = '{}'
)""".format(
temporary_dir
)
)
# for sklearn compatible model
assert (
mlflow.sklearn.load_model(str(temporary_dir)).__class__.__name__
== "GradientBoostingClassifier"
)
# test for non sklearn compatible model
c.sql(
"""
CREATE MODEL IF NOT EXISTS non_sklearn_model WITH (
model_class = 'mock.MagicMock',
target_column = 'target'
) AS (
SELECT x, y, x*y > 0 AS target
FROM timeseries
LIMIT 100
)
"""
)
temporary_dir = os.path.join(tmpdir, "non_sklearn")
with pytest.raises(NotImplementedError):
c.sql(
"""EXPORT MODEL non_sklearn_model with (
format ='mlflow',
location = '{}'
)""".format(
temporary_dir
)
)
@pytest.mark.xfail(
sys.platform == "win32",
reason="Windows is not officially supported for dask/xgboost",
)
def test_mlflow_export_xgboost(c, client, training_df, tmpdir):
# Test only when mlflow & xgboost was installed
mlflow = pytest.importorskip("mlflow", reason="mlflow not installed")
xgboost = pytest.importorskip("xgboost", reason="xgboost not installed")
c.sql(
"""
CREATE MODEL IF NOT EXISTS my_model_xgboost WITH (
model_class = 'xgboost.dask.DaskXGBClassifier',
target_column = 'target'
) AS (
SELECT x, y, x*y > 0 AS target
FROM timeseries
LIMIT 100
)
"""
)
temporary_dir = os.path.join(tmpdir, "mlflow_xgboost")
c.sql(
"""EXPORT MODEL my_model_xgboost with (
format = 'mlflow',
location = '{}'
)""".format(
temporary_dir
)
)
assert (
mlflow.sklearn.load_model(str(temporary_dir)).__class__.__name__
== "DaskXGBClassifier"
)
def test_mlflow_export_lightgbm(c, training_df, tmpdir):
# Test only when mlflow & lightgbm was installed
mlflow = pytest.importorskip("mlflow", reason="mlflow not installed")
lightgbm = pytest.importorskip("lightgbm", reason="lightgbm not installed")
c.sql(
"""
CREATE MODEL IF NOT EXISTS my_model_lightgbm WITH (
model_class = 'lightgbm.LGBMClassifier',
target_column = 'target'
) AS (
SELECT x, y, x*y > 0 AS target
FROM timeseries
LIMIT 100
)
"""
)
temporary_dir = os.path.join(tmpdir, "mlflow_lightgbm")
c.sql(
"""EXPORT MODEL my_model_lightgbm with (
format = 'mlflow',
location = '{}'
)""".format(
temporary_dir
)
)
assert (
mlflow.sklearn.load_model(str(temporary_dir)).__class__.__name__
== "LGBMClassifier"
)
def test_ml_experiment(c, client, training_df):
with pytest.raises(
ValueError,
match="Parameters must include a 'model_class' " "or 'automl_class' parameter.",
):
c.sql(
"""
CREATE EXPERIMENT my_exp WITH (
experiment_class = 'dask_ml.model_selection.GridSearchCV',
tune_parameters = (n_estimators = ARRAY [16, 32, 2],learning_rate = ARRAY [0.1,0.01,0.001],
max_depth = ARRAY [3,4,5,10]),
target_column = 'target'
) AS (
SELECT x, y, x*y > 0 AS target
FROM timeseries
LIMIT 100
)
"""
)
with pytest.raises(
ValueError,
match="Parameters must include a 'experiment_class' "
"parameter for tuning sklearn.ensemble.GradientBoostingClassifier.",
):
c.sql(
"""
CREATE EXPERIMENT my_exp WITH (
model_class = 'sklearn.ensemble.GradientBoostingClassifier',
tune_parameters = (n_estimators = ARRAY [16, 32, 2],learning_rate = ARRAY [0.1,0.01,0.001],
max_depth = ARRAY [3,4,5,10]),
target_column = 'target'
) AS (
SELECT x, y, x*y > 0 AS target
FROM timeseries
LIMIT 100
)
"""
)
with pytest.raises(
ValueError,
match="Can not import model that.is.not.a.python.class. Make sure you spelled "
"it correctly and have installed all packages.",
):
c.sql(
"""
CREATE EXPERIMENT IF NOT EXISTS my_exp WITH (
model_class = 'that.is.not.a.python.class',
experiment_class = 'dask_ml.model_selection.GridSearchCV',
tune_parameters = (n_estimators = ARRAY [16, 32, 2],learning_rate = ARRAY [0.1,0.01,0.001],
max_depth = ARRAY [3,4,5,10]),
target_column = 'target'
) AS (
SELECT x, y, x*y > 0 AS target
FROM timeseries
LIMIT 100
)
"""
)
with pytest.raises(
ValueError,
match="Can not import tuner that.is.not.a.python.class. Make sure you spelled "
"it correctly and have installed all packages.",
):
c.sql(
"""
CREATE EXPERIMENT IF NOT EXISTS my_exp WITH (
model_class = 'sklearn.ensemble.GradientBoostingClassifier',
experiment_class = 'that.is.not.a.python.class',
tune_parameters = (n_estimators = ARRAY [16, 32, 2],learning_rate = ARRAY [0.1,0.01,0.001],
max_depth = ARRAY [3,4,5,10]),
target_column = 'target'
) AS (
SELECT x, y, x*y > 0 AS target
FROM timeseries
LIMIT 100
)
"""
)
with pytest.raises(
ValueError,
match="Can not import automl model that.is.not.a.python.class. "
"Make sure you spelled "
"it correctly and have installed all packages.",
):
c.sql(
"""
CREATE EXPERIMENT my_exp64 WITH (
automl_class = 'that.is.not.a.python.class',
automl_kwargs = (population_size = 2 ,generations=2,cv=2,n_jobs=-1,use_dask=True,max_eval_time_mins=1),
target_column = 'target'
) AS (
SELECT x, y, x*y > 0 AS target
FROM timeseries
LIMIT 100
)
"""
)
# happy flow
c.sql(
"""
CREATE EXPERIMENT my_exp WITH (
model_class = 'sklearn.ensemble.GradientBoostingClassifier',
experiment_class = 'dask_ml.model_selection.GridSearchCV',
tune_parameters = (n_estimators = ARRAY [16, 32, 2],learning_rate = ARRAY [0.1,0.01,0.001],
max_depth = ARRAY [3,4,5,10]),
target_column = 'target'
) AS (
SELECT x, y, x*y > 0 AS target
FROM timeseries
LIMIT 100
)
"""
)
assert "my_exp" in c.schema[c.schema_name].models, "Best model was not registered"
check_trained_model(c, "my_exp")
with pytest.raises(RuntimeError):
# my_exp already exists
c.sql(
"""
CREATE EXPERIMENT my_exp WITH (
model_class = 'sklearn.ensemble.GradientBoostingClassifier',
experiment_class = 'dask_ml.model_selection.GridSearchCV',
tune_parameters = (n_estimators = ARRAY [16, 32, 2],learning_rate = ARRAY [0.1,0.01,0.001],
max_depth = ARRAY [3,4,5,10]),
target_column = 'target'
) AS (
SELECT x, y, x*y > 0 AS target
FROM timeseries
LIMIT 100
)
"""
)
c.sql(
"""
CREATE EXPERIMENT IF NOT EXISTS my_exp WITH (
model_class = 'sklearn.ensemble.GradientBoostingClassifier',
experiment_class = 'dask_ml.model_selection.GridSearchCV',
tune_parameters = (n_estimators = ARRAY [16, 32, 2],learning_rate = ARRAY [0.1,0.01,0.001],
max_depth = ARRAY [3,4,5,10]),
target_column = 'target'
) AS (
SELECT x, y, x*y > 0 AS target
FROM timeseries
LIMIT 100
)
"""
)
c.sql(
"""
CREATE OR REPLACE EXPERIMENT my_exp WITH (
model_class = 'sklearn.ensemble.GradientBoostingClassifier',
experiment_class = 'dask_ml.model_selection.GridSearchCV',
tune_parameters = (n_estimators = ARRAY [16, 32, 2],learning_rate = ARRAY [0.1,0.01,0.001],
max_depth = ARRAY [3,4,5,10]),
target_column = 'target'
) AS (
SELECT x, y, x*y > 0 AS target
FROM timeseries
LIMIT 100
)
"""
)
with pytest.raises(
ValueError,
match="Unsupervised Algorithm cannot be tuned Automatically,"
"Consider providing 'target column'",
):
c.sql(
"""
CREATE EXPERIMENT my_exp1 WITH (
model_class = 'dask_ml.cluster.KMeans',
experiment_class = 'dask_ml.model_selection.RandomizedSearchCV',
tune_parameters = (n_clusters = ARRAY [3,4,16],tol = ARRAY [0.1,0.01,0.001],
max_iter = ARRAY [3,4,5,10])
) AS (
SELECT x, y
FROM timeseries
LIMIT 100
)
"""
)
def test_experiment_automl_classifier(c, client, training_df):
tpot = pytest.importorskip("tpot", reason="tpot not installed")
# currently tested with tpot==
c.sql(
"""
CREATE EXPERIMENT my_automl_exp1 WITH (
automl_class = 'tpot.TPOTClassifier',
automl_kwargs = (population_size = 2 ,generations=2,cv=2,n_jobs=-1,use_dask=True),
target_column = 'target'
) AS (
SELECT x, y, x*y > 0 AS target
FROM timeseries
LIMIT 100
)
"""
)
assert (
"my_automl_exp1" in c.schema[c.schema_name].models
), "Best model was not registered"
check_trained_model(c, "my_automl_exp1")
def test_experiement_automl_regressor(c, client, training_df):
tpot = pytest.importorskip("tpot", reason="tpot not installed")
# test regressor
c.sql(
"""
CREATE EXPERIMENT my_automl_exp2 WITH (
automl_class = 'tpot.TPOTRegressor',
automl_kwargs = (population_size = 2,
generations=2,
cv=2,
n_jobs=-1,
use_dask=True,
max_eval_time_mins=1),
target_column = 'target'
) AS (
SELECT x, y, x*y AS target
FROM timeseries
LIMIT 100
)
"""
)
assert (
"my_automl_exp2" in c.schema[c.schema_name].models
), "Best model was not registered"
check_trained_model(c, "my_automl_exp2")