Skip to main content

Module experiment

Module experiment 

Source
Expand description

Experiment specification for EDD - YAML-driven declarative experiments.

Every experiment in the EDD framework must be declaratively specified with:

  • Explicit seed for reproducibility
  • Falsification criteria for scientific validity
  • Governing equation reference
  • Hypotheses to test

§Example YAML Specification

experiment:
  name: "Little's Law Validation"
  seed: 42
  emc: "littles_law_v1.0"
  hypothesis:
    null: "L ≠ λW"
    alternative: "L = λW holds under stochastic conditions"
  falsification:
    - criterion: "relative_error > 0.05"
      action: reject_model

Structs§

ExperimentHypothesis
A hypothesis to test in the experiment.
ExperimentSpec
Experiment specification following EDD principles.
ExperimentSpecBuilder
Builder for ExperimentSpec.
FalsificationCriterion
A criterion that would falsify the model.

Enums§

FalsificationAction
Action to take when falsification criterion is met.