-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Labels
Description
Similarly to the currently allowed
SELECT *
FROM data
as sugar for
SELECT data.col1, data.col2,...
FROM data
We can add
SELECT PROBABILITY OF * AS Pr_Data UNDER model
FROM data
as sugar for
SELECT PROBABILITY OF model.col1 = data.col1 and model.col2=data.col2 and ... AS Pr_Data UNDER model
FROM data
for all columns which appear both in model and data.
Likewise, they could be compatible with the EXCEPT keyword (that I've seen used in the AutoML paper).
Reactions are currently unavailable