forked from dask-contrib/dask-sql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_model.py
1026 lines (914 loc) · 27.8 KB
/
test_model.py
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
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import os
import pickle
import joblib
import pandas as pd
import pytest
from dask.datasets import timeseries
from tests.integration.fixtures import skip_if_external_scheduler
from tests.utils import assert_eq
try:
import cuml
import dask_cudf
import xgboost
except ImportError:
cuml = None
xgboost = None
dask_cudf = None
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
)
"""
tables_before = c.schema["root"].tables.keys()
result_df = c.sql(sql).compute()
# assert that there are no additional tables in context from prediction
assert tables_before == c.schema["root"].tables.keys()
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 None
@pytest.fixture()
def gpu_training_df(c):
if dask_cudf:
df = timeseries(freq="1d").reset_index(drop=True)
df = dask_cudf.from_dask_dataframe(df)
c.create_table("timeseries", input_table=df)
return None
# TODO - many ML tests fail on clusters without sklearn - can we avoid this?
@skip_if_external_scheduler
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)
@pytest.mark.gpu
def test_cuml_training_and_prediction(c, gpu_training_df):
model_query = """
CREATE OR REPLACE MODEL my_model WITH (
model_class = 'cuml.linear_model.LogisticRegression',
wrap_predict = True,
wrap_fit = False,
target_column = 'target'
) AS (
SELECT x, y, x*y > 0 AS target
FROM timeseries
)
"""
c.sql(model_query)
check_trained_model(c)
@pytest.mark.gpu
@skip_if_external_scheduler
def test_dask_cuml_training_and_prediction(c, gpu_training_df, gpu_client):
model_query = """
CREATE OR REPLACE MODEL my_model WITH (
model_class = 'cuml.dask.linear_model.LinearRegression',
target_column = 'target'
) AS (
SELECT x, y, x*y AS target
FROM timeseries
)
"""
c.sql(model_query)
check_trained_model(c)
@skip_if_external_scheduler
@pytest.mark.gpu
def test_dask_xgboost_training_prediction(c, gpu_training_df, gpu_client):
model_query = """
CREATE OR REPLACE MODEL my_model WITH (
model_class = 'xgboost.dask.DaskXGBRegressor',
target_column = 'target',
tree_method= 'gpu_hist'
) AS (
SELECT x, y, x*y AS target
FROM timeseries
)
"""
c.sql(model_query)
check_trained_model(c)
@pytest.mark.gpu
def test_xgboost_training_prediction(c, gpu_training_df):
model_query = """
CREATE OR REPLACE MODEL my_model WITH (
model_class = 'xgboost.XGBRegressor',
wrap_predict = True,
target_column = 'target',
tree_method= 'gpu_hist'
) AS (
SELECT x, y, x*y AS target
FROM timeseries
)
"""
c.sql(model_query)
check_trained_model(c)
# TODO - many ML tests fail on clusters without sklearn - can we avoid this?
@skip_if_external_scheduler
def test_clustering_and_prediction(c, training_df):
c.sql(
"""
CREATE MODEL my_model WITH (
model_class = 'sklearn.cluster.KMeans'
) AS (
SELECT x, y
FROM timeseries
LIMIT 100
)
"""
)
check_trained_model(c)
@pytest.mark.gpu
def test_gpu_clustering_and_prediction(c, gpu_training_df, gpu_client):
c.sql(
"""
CREATE MODEL my_model WITH (
model_class = 'cuml.dask.cluster.KMeans'
) AS (
SELECT x, y
FROM timeseries
LIMIT 100
)
"""
)
check_trained_model(c)
# TODO - many ML tests fail on clusters without sklearn - can we avoid this?
@skip_if_external_scheduler
def test_create_model_with_prediction(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 = 'sklearn.ensemble.GradientBoostingClassifier',
wrap_predict = True,
target_column = 'target'
) AS (
SELECT * FROM PREDICT (
MODEL my_model1,
SELECT x, y FROM timeseries LIMIT 100
)
)
"""
)
check_trained_model(c, "my_model2")
# TODO - many ML tests fail on clusters without sklearn - can we avoid this?
@skip_if_external_scheduler
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)
# TODO - many ML tests fail on clusters without sklearn - can we avoid this?
@skip_if_external_scheduler
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 = 'sklearn.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
)
"""
)
result = c.sql("SHOW MODELS")
expected = pd.DataFrame(["my_model1", "my_model2", "my_model3"], columns=["Models"])
assert_eq(result, expected)
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 = (
single_quoted_string = 'hello',
double_quoted_string = "hi",
integer = -300,
float = 23.45,
boolean = False,
array = ARRAY [ 1, 2 ],
dict = MAP [ 'a', 1 ],
set = 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(
single_quoted_string="hello",
double_quoted_string="hi",
integer=-300,
float=23.45,
boolean=False,
array=[1, 2],
dict={"a": 1},
set=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
# TODO - many ML tests fail on clusters without sklearn - can we avoid this?
@skip_if_external_scheduler
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")["Params"].apply(lambda x: str(x))
assert_eq(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
)
)
# TODO - many ML tests fail on clusters without sklearn - can we avoid this?
@skip_if_external_scheduler
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
)
)
# TODO - many ML tests fail on clusters without sklearn - can we avoid this?
@skip_if_external_scheduler
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"
)
# TODO - many ML tests fail on clusters without sklearn - can we avoid this?
@skip_if_external_scheduler
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 = 'sklearn.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 = 'sklearn.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 = 'sklearn.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 = 'sklearn.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 = 'sklearn.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 = 'sklearn.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 = 'sklearn.cluster.KMeans',
experiment_class = 'sklearn.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
)
"""
)
# TODO - many ML tests fail on clusters without sklearn - can we avoid this?
@skip_if_external_scheduler
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),
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")
# TODO - many ML tests fail on clusters without sklearn - can we avoid this?
@skip_if_external_scheduler
def test_experiment_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,
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")
# TODO - many ML tests fail on clusters without sklearn - can we avoid this?
@skip_if_external_scheduler
def test_predict_with_nullable_types(c):
df = pd.DataFrame(
{
"rough_day_of_year": [0, 1, 2, 3],
"prev_day_inches_rained": [0.0, 1.0, 2.0, 3.0],
"rained": [False, False, False, True],
}
)
c.create_table("train_set", df)
model_class = "'sklearn.linear_model.LogisticRegression'"
c.sql(
f"""
CREATE OR REPLACE MODEL model WITH (
model_class = {model_class},
wrap_predict = True,
wrap_fit = False,
target_column = 'rained'
) AS (
SELECT *
FROM train_set
)
"""
)
expected = c.sql(
"""
SELECT * FROM PREDICT(
MODEL model,
SELECT * FROM train_set
)
"""
)
df = pd.DataFrame(
{
"rough_day_of_year": pd.Series([0, 1, 2, 3], dtype="Int32"),
"prev_day_inches_rained": pd.Series([0.0, 1.0, 2.0, 3.0], dtype="Float32"),
"rained": pd.Series([False, False, False, True]),
}
)
c.create_table("train_set", df)
c.sql(
f"""