make lint happy
Value: [1e-9 to 1e-5]
This commit is contained in:
parent
e2762a0f62
commit
d595285078
|
@ -230,8 +230,9 @@ module T = Dist({
|
|||
}
|
||||
|
||||
let logScore = (base: t, reference: t) => {
|
||||
combinePointwise(~fn=PointSetDist_Scoring.LogScoring.logScore, base, reference)
|
||||
|> E.R2.bind(integralEndYResult)
|
||||
combinePointwise(~fn=PointSetDist_Scoring.LogScoring.logScore, base, reference) |> E.R2.bind(
|
||||
integralEndYResult,
|
||||
)
|
||||
// |> (r => Ok(r))
|
||||
}
|
||||
})
|
||||
|
|
|
@ -44,7 +44,11 @@ let combinePointwise = (
|
|||
t2: t,
|
||||
): result<t, 'e> => {
|
||||
let reducedDiscrete =
|
||||
[t1, t2] |> E.A.fmap(toDiscrete) |> E.A.O.concatSomes |> Discrete.reduce(~integralSumCachesFn, fn) |> E.R.toExn("foo")
|
||||
[t1, t2]
|
||||
|> E.A.fmap(toDiscrete)
|
||||
|> E.A.O.concatSomes
|
||||
|> Discrete.reduce(~integralSumCachesFn, fn)
|
||||
|> E.R.toExn("foo")
|
||||
|
||||
let reducedContinuous =
|
||||
[t1, t2]
|
||||
|
|
|
@ -212,9 +212,8 @@ let dispatchToGenericOutput = (call: ExpressionValue.functionCall): option<
|
|||
a,
|
||||
)->Some
|
||||
| ("normalize", [EvDistribution(dist)]) => Helpers.toDistFn(Normalize, dist)
|
||||
| ("logScore", [EvDistribution(a), EvDistribution(b)]) => Some(
|
||||
runGenericOperation(FromDist(ToScore(LogScore(b)), a)),
|
||||
)
|
||||
| ("logScore", [EvDistribution(a), EvDistribution(b)]) =>
|
||||
Some(runGenericOperation(FromDist(ToScore(LogScore(b)), a)))
|
||||
| ("isNormalized", [EvDistribution(dist)]) => Helpers.toBoolFn(IsNormalized, dist)
|
||||
| ("toPointSet", [EvDistribution(dist)]) => Helpers.toDistFn(ToPointSet, dist)
|
||||
| ("scaleLog", [EvDistribution(dist)]) =>
|
||||
|
|
Loading…
Reference in New Issue
Block a user