| name | experiment-structure |
| description | Standard experiment folder structure and templates. Reference for creating or validating experiment folders. |
| user-invocable | false |
Experiment Folder Structure
Standard structure for experiments in this research project.
Directory Structure
mkdir -p experiments/exp_NNN_name/{outputs,judgments,scratch,suggested_utils}
Required Files
config.yaml
name: exp_NNN_name
description: |
[What this experiment tests]
report.md
# Experiment Report: exp_NNN_name
## Experiment
[What you tested]
## Method
[How you ran it - commands, configs, tools used]
## Observations
[Raw results, verbatim outputs]
## Judgments
[Aggregated scores, patterns - if applicable]
## Anomalies
[Anything unexpected]
## Data
- **Outputs**: `outputs/`
- **Judgments**: `judgments/`
- **Reproduction**: `reproduce.py`
reproduce.py
"""Reproduce key results from this experiment."""
def main():
pass
if __name__ == "__main__":
main()
Pre-flight Check
Before running an experiment, verify the folder has:
If anything is missing, create it using the templates above.