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_modelStructs§
- Experiment
Hypothesis - A hypothesis to test in the experiment.
- Experiment
Spec - Experiment specification following EDD principles.
- Experiment
Spec Builder - Builder for
ExperimentSpec. - Falsification
Criterion - A criterion that would falsify the model.
Enums§
- Falsification
Action - Action to take when falsification criterion is met.