Differentially-private mean (Laplace mechanism)
Per-row — runs once for each row.
| name | type | description |
|---|---|---|
| values | JSON | — |
| epsilon(optional) | DOUBLE | — |
| sensitivity(optional) | DOUBLE | — |
DP mean with high epsilon = very little noise
SELECT
dp_mean (
JSON('[10,20,30,40,50,60,70,80,90,100]'),
epsilon := 100.0,
sensitivity := 1.0
);Bayesian A/B test (Beta-Binomial) returning full posterior + recommendation
Assess the confidence/quality of a cascade execution result.
Compare values in a group for similarities, differences, and patterns
Generate the strongest counterargument to a position
Differentially-private count (Laplace mechanism, sensitivity=1)
Detect logical fallacies in an argument
Differentially-private mean (Laplace mechanism)
Per-row — runs once for each row.
| name | type | description |
|---|---|---|
| values | JSON | — |
| epsilon(optional) | DOUBLE | — |
| sensitivity(optional) | DOUBLE | — |
DP mean with high epsilon = very little noise
SELECT
dp_mean (
JSON('[10,20,30,40,50,60,70,80,90,100]'),
epsilon := 100.0,
sensitivity := 1.0
);Bayesian A/B test (Beta-Binomial) returning full posterior + recommendation
Assess the confidence/quality of a cascade execution result.
Compare values in a group for similarities, differences, and patterns
Generate the strongest counterargument to a position
Differentially-private count (Laplace mechanism, sensitivity=1)
Detect logical fallacies in an argument