Skip to content

Allowing PROBABILITY OF * and GIVEN * #70

@MathieuHuot

Description

@MathieuHuot

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).

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions