@takk/bayesoutputgate 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +92 -0
- package/LICENSE +190 -0
- package/NOTICE +45 -0
- package/README.md +403 -0
- package/SECURITY.md +98 -0
- package/SPEC.md +467 -0
- package/dist/adapter/index.cjs +411 -0
- package/dist/adapter/index.d.cts +29 -0
- package/dist/adapter/index.d.ts +29 -0
- package/dist/adapter/index.js +404 -0
- package/dist/audit/index.cjs +82 -0
- package/dist/audit/index.d.cts +40 -0
- package/dist/audit/index.d.ts +40 -0
- package/dist/audit/index.js +77 -0
- package/dist/bayesfactor/index.cjs +152 -0
- package/dist/bayesfactor/index.d.cts +15 -0
- package/dist/bayesfactor/index.d.ts +15 -0
- package/dist/bayesfactor/index.js +149 -0
- package/dist/beta/index.cjs +180 -0
- package/dist/beta/index.d.cts +45 -0
- package/dist/beta/index.d.ts +45 -0
- package/dist/beta/index.js +178 -0
- package/dist/calibration/index.cjs +339 -0
- package/dist/calibration/index.d.cts +53 -0
- package/dist/calibration/index.d.ts +53 -0
- package/dist/calibration/index.js +333 -0
- package/dist/cli/index.cjs +968 -0
- package/dist/cli/index.d.cts +1 -0
- package/dist/cli/index.d.ts +1 -0
- package/dist/cli/index.js +966 -0
- package/dist/dimensions/index.cjs +106 -0
- package/dist/dimensions/index.d.cts +33 -0
- package/dist/dimensions/index.d.ts +33 -0
- package/dist/dimensions/index.js +104 -0
- package/dist/edge/index.cjs +1141 -0
- package/dist/edge/index.d.cts +12 -0
- package/dist/edge/index.d.ts +12 -0
- package/dist/edge/index.js +1109 -0
- package/dist/gate/index.cjs +803 -0
- package/dist/gate/index.d.cts +77 -0
- package/dist/gate/index.d.ts +77 -0
- package/dist/gate/index.js +799 -0
- package/dist/hypothesis/index.cjs +268 -0
- package/dist/hypothesis/index.d.cts +38 -0
- package/dist/hypothesis/index.d.ts +38 -0
- package/dist/hypothesis/index.js +266 -0
- package/dist/index.cjs +1141 -0
- package/dist/index.d.cts +29 -0
- package/dist/index.d.ts +29 -0
- package/dist/index.js +1109 -0
- package/dist/likelihood/index.cjs +137 -0
- package/dist/likelihood/index.d.cts +23 -0
- package/dist/likelihood/index.d.ts +23 -0
- package/dist/likelihood/index.js +132 -0
- package/dist/node/index.cjs +1282 -0
- package/dist/node/index.d.cts +24 -0
- package/dist/node/index.d.ts +24 -0
- package/dist/node/index.js +1246 -0
- package/dist/policy/index.cjs +88 -0
- package/dist/policy/index.d.cts +11 -0
- package/dist/policy/index.d.ts +11 -0
- package/dist/policy/index.js +85 -0
- package/dist/types-bMjn1j4e.d.cts +159 -0
- package/dist/types-bMjn1j4e.d.ts +159 -0
- package/package.json +142 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export { TOOL_NAME, bayesOutputGateTool, describeTool, parseGateInput, runTool, toJsonSafe } from '../adapter/index.cjs';
|
|
2
|
+
export { AuditChain, AuditEntry, AuditMeta, ChainVerification, GENESIS_HASH, sha256Hex, verifyChain } from '../audit/index.cjs';
|
|
3
|
+
export { bayesFactor, jeffreysStrength } from '../bayesfactor/index.cjs';
|
|
4
|
+
export { BetaModel, BetaModelOptions, BetaModelSnapshot } from '../beta/index.cjs';
|
|
5
|
+
export { AssessOptions, GoodnessOfFit, Prediction, ReliabilityBin, assessAssumptions, brierScore, expectedCalibrationError, goodnessOfFit, reliability } from '../calibration/index.cjs';
|
|
6
|
+
export { DependenceDiagnostic, DependenceOptions, DimensionCorrelation, dependenceDiagnostic } from '../dimensions/index.cjs';
|
|
7
|
+
export { BayesOutputGateError, BayesOutputGateErrorCode, invariant } from '../index.cjs';
|
|
8
|
+
export { MonitorGuards, OutputGate, OutputGateMonitor, OutputGateMonitorOptions, OutputGateOptions, evaluate } from '../gate/index.cjs';
|
|
9
|
+
export { DimensionConfig, HypothesisManager, HypothesisManagerOptions } from '../hypothesis/index.cjs';
|
|
10
|
+
export { logBinaryMarginalLikelihood, logScoreLikelihood, logVectorLikelihood, toScoreMap } from '../likelihood/index.cjs';
|
|
11
|
+
export { decide, posteriorHighQuality } from '../policy/index.cjs';
|
|
12
|
+
export { A as AssumptionReport, B as BayesFactorPolicy, a as BayesFactorResult, b as BetaParams, D as DecisionPolicy, c as DecisionTheoreticPolicy, d as DimensionContribution, e as DimensionModel, E as EvidenceStrength, f as ExpectedLoss, G as GateAction, g as GateDecision, h as GateGuards, H as HypothesisKind, L as LabeledObservation, P as PolicyConfig, i as PolicyDecision, Q as QualityScore, S as ScoreVector } from '../types-bMjn1j4e.cjs';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export { TOOL_NAME, bayesOutputGateTool, describeTool, parseGateInput, runTool, toJsonSafe } from '../adapter/index.js';
|
|
2
|
+
export { AuditChain, AuditEntry, AuditMeta, ChainVerification, GENESIS_HASH, sha256Hex, verifyChain } from '../audit/index.js';
|
|
3
|
+
export { bayesFactor, jeffreysStrength } from '../bayesfactor/index.js';
|
|
4
|
+
export { BetaModel, BetaModelOptions, BetaModelSnapshot } from '../beta/index.js';
|
|
5
|
+
export { AssessOptions, GoodnessOfFit, Prediction, ReliabilityBin, assessAssumptions, brierScore, expectedCalibrationError, goodnessOfFit, reliability } from '../calibration/index.js';
|
|
6
|
+
export { DependenceDiagnostic, DependenceOptions, DimensionCorrelation, dependenceDiagnostic } from '../dimensions/index.js';
|
|
7
|
+
export { BayesOutputGateError, BayesOutputGateErrorCode, invariant } from '../index.js';
|
|
8
|
+
export { MonitorGuards, OutputGate, OutputGateMonitor, OutputGateMonitorOptions, OutputGateOptions, evaluate } from '../gate/index.js';
|
|
9
|
+
export { DimensionConfig, HypothesisManager, HypothesisManagerOptions } from '../hypothesis/index.js';
|
|
10
|
+
export { logBinaryMarginalLikelihood, logScoreLikelihood, logVectorLikelihood, toScoreMap } from '../likelihood/index.js';
|
|
11
|
+
export { decide, posteriorHighQuality } from '../policy/index.js';
|
|
12
|
+
export { A as AssumptionReport, B as BayesFactorPolicy, a as BayesFactorResult, b as BetaParams, D as DecisionPolicy, c as DecisionTheoreticPolicy, d as DimensionContribution, e as DimensionModel, E as EvidenceStrength, f as ExpectedLoss, G as GateAction, g as GateDecision, h as GateGuards, H as HypothesisKind, L as LabeledObservation, P as PolicyConfig, i as PolicyDecision, Q as QualityScore, S as ScoreVector } from '../types-bMjn1j4e.js';
|