ClickHouse/dbms/tests/performance/linear_regression.xml

33 lines
1.5 KiB
XML
Raw Normal View History

2019-05-24 22:41:33 +00:00
<test>
<type>loop</type>
<stop_conditions>
<any_of>
<total_time_ms>10000</total_time_ms>
2019-05-24 22:41:33 +00:00
</any_of>
</stop_conditions>
<preconditions>
<table_exists>test.hits</table_exists>
</preconditions>
2019-05-24 22:41:33 +00:00
<create_query>DROP TABLE IF EXISTS test_model</create_query>
<create_query>CREATE TABLE test_model engine = Memory as select stochasticLinearRegressionState(0.0001)(Age, Income, ParamPrice, Robotness, RefererHash) as state from test.hits</create_query>
2019-05-24 22:41:33 +00:00
2019-08-08 23:55:08 +00:00
<!-- Check model fit -->
<query>WITH (SELECT stochasticLinearRegressionState(0.0001, 0, 15)(Age, Income, ParamPrice, Robotness, RefererHash) FROM test.hits) AS model SELECT 1</query>
<query>SELECT stochasticLinearRegression(Age, Income, ParamPrice, Robotness, RefererHash) FROM test.hits</query>
2019-05-24 22:41:33 +00:00
2019-08-08 23:55:08 +00:00
<!-- Check model fit with Momentum -->
<query>WITH (SELECT stochasticLinearRegressionState(0.0001, 0, 15, 'Momentum')(Age, Income, ParamPrice, Robotness, RefererHash) FROM test.hits) AS model SELECT 1</query>
2019-05-24 22:41:33 +00:00
2019-08-08 23:55:08 +00:00
<!-- Check model fit with Nesterov -->
<query>WITH (SELECT stochasticLinearRegressionState(0.0001, 0, 15, 'Nesterov')(Age, Income, ParamPrice, Robotness, RefererHash) FROM test.hits) AS model SELECT 1</query>
2019-05-24 22:41:33 +00:00
2019-08-08 23:55:08 +00:00
<!-- Check model predict -->
<query>with (SELECT state FROM test_model) as model select evalMLMethod(model, Income, ParamPrice, Robotness, RefererHash) from test.hits</query>
2019-05-24 22:41:33 +00:00
<drop_query>DROP TABLE IF EXISTS test_model</drop_query>
</test>