squiggle/packages/squiggle-lang/__tests__/Distributions/Symbolic_test.res

164 lines
6.3 KiB
Plaintext
Raw Normal View History

2022-04-07 02:24:00 +00:00
open Jest
open Expect
2022-04-07 22:38:49 +00:00
open TestHelpers
2022-04-07 02:24:00 +00:00
2022-04-07 22:38:49 +00:00
// TODO: use Normal.make (but preferably after teh new validation dispatch is in)
let mkNormal = (mean, stdev) => DistributionTypes.Symbolic(#Normal({mean: mean, stdev: stdev}))
2022-04-07 02:24:00 +00:00
2022-04-07 17:33:12 +00:00
describe("(Symbolic) normalize", () => {
2022-04-07 22:38:49 +00:00
testAll("has no impact on normal distributions", list{-1e8, -1e-2, 0.0, 1e-4, 1e16}, mean => {
let normalValue = mkNormal(mean, 2.0)
let normalizedValue = run(FromDist(#ToDist(Normalize), normalValue))
2022-04-12 23:59:40 +00:00
normalizedValue->unpackDist->expect->toEqual(normalValue)
2022-04-07 02:24:00 +00:00
})
})
2022-04-07 14:55:51 +00:00
describe("(Symbolic) mean", () => {
2022-04-07 02:24:00 +00:00
testAll("of normal distributions", list{-1e8, -16.0, -1e-2, 0.0, 1e-4, 32.0, 1e16}, mean => {
run(FromDist(#ToFloat(#Mean), mkNormal(mean, 4.0)))->unpackFloat->expect->toBeCloseTo(mean)
2022-04-07 02:24:00 +00:00
})
2022-04-07 14:55:51 +00:00
Skip.test("of normal(0, -1) (it NaNs out)", () => {
run(FromDist(#ToFloat(#Mean), mkNormal(1e1, -1e0)))->unpackFloat->expect->ExpectJs.toBeFalsy
2022-04-07 14:55:51 +00:00
})
test("of normal(0, 1e-8) (it doesn't freak out at tiny stdev)", () => {
run(FromDist(#ToFloat(#Mean), mkNormal(0.0, 1e-8)))->unpackFloat->expect->toBeCloseTo(0.0)
2022-04-07 14:55:51 +00:00
})
2022-04-07 02:24:00 +00:00
testAll("of exponential distributions", list{1e-7, 2.0, 10.0, 100.0}, rate => {
2022-04-12 23:59:40 +00:00
let meanValue = run(
FromDist(#ToFloat(#Mean), DistributionTypes.Symbolic(#Exponential({rate: rate}))),
2022-04-12 23:59:40 +00:00
)
meanValue->unpackFloat->expect->toBeCloseTo(1.0 /. rate) // https://en.wikipedia.org/wiki/Exponential_distribution#Mean,_variance,_moments,_and_median
2022-04-07 02:24:00 +00:00
})
2022-04-07 14:55:51 +00:00
test("of a cauchy distribution", () => {
2022-04-12 23:59:40 +00:00
let meanValue = run(
FromDist(#ToFloat(#Mean), DistributionTypes.Symbolic(#Cauchy({local: 1.0, scale: 1.0}))),
2022-04-12 23:59:40 +00:00
)
2022-04-13 04:35:07 +00:00
meanValue->unpackFloat->expect->toBeSoCloseTo(1.0098094001641797, ~digits=5)
2022-04-07 14:55:51 +00:00
//-> toBe(GenDistError(Other("Cauchy distributions may have no mean value.")))
})
2022-04-07 02:24:00 +00:00
2022-04-12 23:59:40 +00:00
testAll(
"of triangular distributions",
list{(1.0, 2.0, 3.0), (-1e7, -1e-7, 1e-7), (-1e-7, 1e0, 1e7), (-1e-16, 0.0, 1e-16)},
tup => {
let (low, medium, high) = tup
let meanValue = run(
FromDist(
#ToFloat(#Mean),
2022-04-13 04:35:07 +00:00
DistributionTypes.Symbolic(#Triangular({low: low, medium: medium, high: high})),
2022-04-12 23:59:40 +00:00
),
)
meanValue->unpackFloat->expect->toBeCloseTo((low +. medium +. high) /. 3.0) // https://www.statology.org/triangular-distribution/
},
)
// TODO: nonpositive inputs are SUPPOSED to crash.
testAll(
"of beta distributions",
list{(1e-4, 6.4e1), (1.28e2, 1e0), (1e-16, 1e-16), (1e16, 1e16), (-1e4, 1e1), (1e1, -1e4)},
tup => {
let (alpha, beta) = tup
let meanValue = run(
FromDist(#ToFloat(#Mean), DistributionTypes.Symbolic(#Beta({alpha: alpha, beta: beta}))),
2022-04-12 23:59:40 +00:00
)
meanValue->unpackFloat->expect->toBeCloseTo(1.0 /. (1.0 +. beta /. alpha)) // https://en.wikipedia.org/wiki/Beta_distribution#Mean
},
)
2022-04-07 02:24:00 +00:00
2022-04-07 17:33:12 +00:00
// TODO: When we have our theory of validators we won't want this to be NaN but to be an error.
2022-04-07 14:55:51 +00:00
test("of beta(0, 0)", () => {
2022-04-12 23:59:40 +00:00
let meanValue = run(
FromDist(#ToFloat(#Mean), DistributionTypes.Symbolic(#Beta({alpha: 0.0, beta: 0.0}))),
2022-04-12 23:59:40 +00:00
)
meanValue->unpackFloat->expect->ExpectJs.toBeFalsy
2022-04-07 02:24:00 +00:00
})
testAll(
"of beta distributions from mean and standard dev",
list{(0.39, 0.1), (0.08, 0.1), (0.8, 0.3)},
tup => {
let (mean, stdev) = tup
let betaDistribution = SymbolicDist.Beta.fromMeanAndStdev(mean, stdev)
let meanValue =
betaDistribution->E.R2.fmap(d =>
run(FromDist(ToFloat(#Mean), d->DistributionTypes.Symbolic))
)
switch meanValue {
| Ok(value) => value->unpackFloat->expect->toBeCloseTo(mean)
| Error(err) => err->expect->toBe("shouldn't happen")
}
},
)
2022-04-12 23:59:40 +00:00
testAll(
"of lognormal distributions",
list{(2.0, 4.0), (1e-7, 1e-2), (-1e6, 10.0), (1e3, -1e2), (-1e8, -1e4), (1e2, 1e-5)},
tup => {
let (mu, sigma) = tup
let meanValue = run(
FromDist(#ToFloat(#Mean), DistributionTypes.Symbolic(#Lognormal({mu: mu, sigma: sigma}))),
2022-04-12 23:59:40 +00:00
)
meanValue->unpackFloat->expect->toBeCloseTo(Js.Math.exp(mu +. sigma ** 2.0 /. 2.0)) // https://brilliant.org/wiki/log-normal-distribution/
},
)
testAll(
"of uniform distributions",
list{(1e-5, 12.345), (-1e4, 1e4), (-1e16, -1e2), (5.3e3, 9e9)},
tup => {
let (low, high) = tup
let meanValue = run(
FromDist(#ToFloat(#Mean), DistributionTypes.Symbolic(#Uniform({low: low, high: high}))),
2022-04-12 23:59:40 +00:00
)
meanValue->unpackFloat->expect->toBeCloseTo((low +. high) /. 2.0) // https://en.wikipedia.org/wiki/Continuous_uniform_distribution#Moments
},
)
2022-04-07 02:24:00 +00:00
test("of a float", () => {
let meanValue = run(FromDist(#ToFloat(#Mean), DistributionTypes.Symbolic(#Float(7.7))))
2022-04-12 23:59:40 +00:00
meanValue->unpackFloat->expect->toBeCloseTo(7.7)
2022-04-07 02:24:00 +00:00
})
})
describe("Normal distribution with sparklines", () => {
2022-04-07 14:55:51 +00:00
let parameterWiseAdditionPdf = (n1: SymbolicDistTypes.normal, n2: SymbolicDistTypes.normal) => {
2022-04-07 02:24:00 +00:00
let normalDistAtSumMeanConstr = SymbolicDist.Normal.add(n1, n2)
let normalDistAtSumMean: SymbolicDistTypes.normal = switch normalDistAtSumMeanConstr {
2022-04-12 23:59:40 +00:00
| #Normal(params) => params
2022-04-07 02:24:00 +00:00
}
x => SymbolicDist.Normal.pdf(x, normalDistAtSumMean)
}
let normalDistAtMean5: SymbolicDistTypes.normal = {mean: 5.0, stdev: 2.0}
let normalDistAtMean10: SymbolicDistTypes.normal = {mean: 10.0, stdev: 2.0}
2022-04-08 13:19:03 +00:00
let range20Float = E.A.Floats.range(0.0, 20.0, 20) // [0.0,1.0,2.0,3.0,4.0,...19.0,]
2022-04-07 02:24:00 +00:00
2022-04-07 14:55:51 +00:00
test("mean=5 pdf", () => {
let pdfNormalDistAtMean5 = x => SymbolicDist.Normal.pdf(x, normalDistAtMean5)
2022-04-12 23:59:40 +00:00
let sparklineMean5 = fnImage(pdfNormalDistAtMean5, range20Float)
Sparklines.create(sparklineMean5, ())
->expect
->toEqual(`▁▂▃▆██▇▅▂▁▁▁▁▁▁▁▁▁▁▁`)
2022-04-07 02:24:00 +00:00
})
2022-04-12 23:59:40 +00:00
test("parameter-wise addition of two normal distributions", () => {
let sparklineMean15 =
normalDistAtMean5->parameterWiseAdditionPdf(normalDistAtMean10)->fnImage(range20Float)
2022-04-07 02:24:00 +00:00
Sparklines.create(sparklineMean15, ())
2022-04-12 23:59:40 +00:00
->expect
->toEqual(`▁▁▁▁▁▁▁▁▁▂▃▄▆███▇▅▄▂`)
2022-04-07 02:24:00 +00:00
})
2022-04-07 14:55:51 +00:00
2022-04-07 18:33:49 +00:00
test("mean=10 cdf", () => {
2022-04-07 14:55:51 +00:00
let cdfNormalDistAtMean10 = x => SymbolicDist.Normal.cdf(x, normalDistAtMean10)
let sparklineMean10 = fnImage(cdfNormalDistAtMean10, range20Float)
Sparklines.create(sparklineMean10, ())
2022-04-12 23:59:40 +00:00
->expect
->toEqual(`▁▁▁▁▁▁▁▁▂▄▅▇████████`)
2022-04-07 14:55:51 +00:00
})
2022-04-07 02:24:00 +00:00
})