IPSN Reproducibility
Use this before submission and again before camera-ready. IPSN's artifact and Best Research Artifact
culture makes reproducibility a scored dimension — but a sensor-systems artifact is harder than a
software one: it involves firmware, hardware, physical ground truth, and measurements that depend on
the bench. The goal is that a competent reader could rebuild as much of your evidence as the physical
setup allows, and knows exactly which parts need your hardware.
Evidence map
- Map each claim and reported number to a verifiable location — a paper section, a figure
generated from logged traces, a firmware build, or a script in the artifact.
- For an IP-track method, give the algorithm, parameters, and the analysis scripts that turn raw
traces into the paper's figures.
- For a SPOTS-track platform, ship firmware sources, build instructions, a bill of materials or
board files, and the pinned toolchain (compiler, SDK, RTOS versions).
- For a deployment, ship the raw sensor traces, the ground-truth reference, and the calibration
data — not only the derived metrics.
- Keep the paper and artifact consistent: a number in the PDF that no script or trace in the
artifact produces is the contradiction reviewers read as carelessness.
What a sensor-systems artifact contains
| Component |
Weak version |
IPSN-ready version |
| Firmware |
"Available on request" |
Sources + build instructions + pinned toolchain, flashable or emulatable |
| Hardware |
"We built a custom board" |
BOM / board files, or a clear statement of what needs the physical board |
| Datasets |
"Dataset available on request" |
Anonymized raw traces + the exact processing scripts, DOI-archived after acceptance |
| Ground truth |
Nothing |
Surveyed positions / labels / reference-instrument data with its own error |
| Energy/latency |
"Measured on our setup" |
The measurement harness + conditions (rail, instrument, clock, runs) |
| Calibration |
Implicit |
Procedure, date, and drift data |
"Available on request" is treated as not available; convert every such line into a concrete,
anonymized package or an explicit, justified exception (e.g., proprietary board, private deployment
site).
Provenance pinning
[Firmware] pin compiler/SDK/RTOS versions; record board revision; make the build deterministic
[Traces] archive raw sensor data with timestamps; record the sensor and sampling regime
[Ground truth] archive the reference data and state its measurement error
[Energy] record the measurement harness (rail, shunt, instrument, sampling rate) and the platform clock
[Learned parts] record model versions, quantization, seeds; cache inputs/outputs for any offline step
Degrees of reproducibility (state the one you achieved)
- Turnkey (software path): one documented command regenerates each figure from logged traces.
- Hardware-in-the-loop: reproducing requires the board/sensor; you provide firmware, BOM, and a
clear "you will need X hardware" statement.
- Deployment-bound: the in-field result cannot be re-run without the site; you provide the raw
traces and analysis so the processing reproduces even if the collection cannot.
For IPSN, aim turnkey for the analysis path (traces → figures) and be explicit about the
hardware/deployment parts that cannot be reproduced without your equipment. Stating the achieved
level honestly beats promising turnkey behavior that fails on an evaluator's bench.
Anonymized but runnable (double-blind)
- No author/lab strings in firmware repos, board silkscreen, dataset DOIs, or file paths.
- Board photos and scope screenshots stripped of lab logos and watermarks; testbed/site names
generalized.
- The artifact opens clean: no
.git history, credentials, or lab-identifying README.
Consistency and camera-ready pass
- Before submission: every scored number traces to the artifact; the release statement matches
reality; the package is anonymized.
- Before camera-ready: swap anonymized links for permanent, DOI-issuing archives (Zenodo / IEEE
DataPort / figshare), restore real names, and align with the badges and Best Research Artifact
Award you are pursuing (
ipsn-artifact-evaluation).
Vignette: a deployment plus estimator
A paper deploys nodes and proposes an estimator. Its reproducibility spine: firmware sources with a
pinned toolchain and board revision; the raw traces and the surveyed ground truth; the calibration
procedure and drift log; the analysis scripts that turn traces into every figure; the
power-measurement harness and conditions; and one honest paragraph on what needs the physical board
and the deployment site and therefore cannot be re-collected — only re-processed.
Output format
[Claim inventory] <claim -> evidence location (section / figure / firmware / trace / script)>
[Artifact completeness] firmware / BOM / traces / ground truth / calibration / harness present?
[Reproducibility level] turnkey / hardware-in-the-loop / deployment-bound, stated honestly
[Provenance gaps] <toolchain pins / trace archive / energy conditions / seeds>
[Anonymity] package + hardware imagery clean of identity? passed/issues
[Fixes] <paper fixes that must appear + artifact additions before upload>
Source: brycewang-stanford/Awesome-Journal-Skills → IPSN-Skills/skills/ipsn-reproducibility/SKILL.md
1---2name: ipsn-reproducibility3description: Use when strengthening IPSN-lineage reproducibility for a hardware/embedded/deployment artifact, covering firmware and board files, pinned toolchains, raw traces and calibration, honest degrees of reproducibility for a physical system, anonymized-but-runnable artifacts, and consistency between the paper and the package.4---567# IPSN Reproducibility89Use this before submission and again before camera-ready. IPSN's artifact and Best Research Artifact10culture makes reproducibility a scored dimension — but a sensor-systems artifact is harder than a11software one: it involves firmware, hardware, physical ground truth, and measurements that depend on12the bench. The goal is that a competent reader could rebuild as much of your evidence as the physical13setup allows, and knows exactly which parts need your hardware.1415## Evidence map1617- Map each claim and reported number to a **verifiable location** — a paper section, a figure18 generated from logged traces, a firmware build, or a script in the artifact.19- For an **IP-track** method, give the algorithm, parameters, and the analysis scripts that turn raw20 traces into the paper's figures.21- For a **SPOTS-track** platform, ship firmware sources, build instructions, a bill of materials or22 board files, and the pinned toolchain (compiler, SDK, RTOS versions).23- For a **deployment**, ship the raw sensor traces, the ground-truth reference, and the calibration24 data — not only the derived metrics.25- Keep the paper and artifact **consistent**: a number in the PDF that no script or trace in the26 artifact produces is the contradiction reviewers read as carelessness.2728## What a sensor-systems artifact contains2930| Component | Weak version | IPSN-ready version |31|---|---|---|32| Firmware | "Available on request" | Sources + build instructions + pinned toolchain, flashable or emulatable |33| Hardware | "We built a custom board" | BOM / board files, or a clear statement of what needs the physical board |34| Datasets | "Dataset available on request" | Anonymized raw traces + the exact processing scripts, DOI-archived after acceptance |35| Ground truth | Nothing | Surveyed positions / labels / reference-instrument data with its own error |36| Energy/latency | "Measured on our setup" | The measurement harness + conditions (rail, instrument, clock, runs) |37| Calibration | Implicit | Procedure, date, and drift data |3839"Available on request" is treated as *not available*; convert every such line into a concrete,40anonymized package or an explicit, justified exception (e.g., proprietary board, private deployment41site).4243## Provenance pinning4445```text46[Firmware] pin compiler/SDK/RTOS versions; record board revision; make the build deterministic47[Traces] archive raw sensor data with timestamps; record the sensor and sampling regime48[Ground truth] archive the reference data and state its measurement error49[Energy] record the measurement harness (rail, shunt, instrument, sampling rate) and the platform clock50[Learned parts] record model versions, quantization, seeds; cache inputs/outputs for any offline step51```5253## Degrees of reproducibility (state the one you achieved)5455- **Turnkey (software path):** one documented command regenerates each figure from logged traces.56- **Hardware-in-the-loop:** reproducing requires the board/sensor; you provide firmware, BOM, and a57 clear "you will need X hardware" statement.58- **Deployment-bound:** the in-field result cannot be re-run without the site; you provide the raw59 traces and analysis so the *processing* reproduces even if the *collection* cannot.6061For IPSN, aim turnkey for the analysis path (traces → figures) and be explicit about the62hardware/deployment parts that cannot be reproduced without your equipment. Stating the achieved63level honestly beats promising turnkey behavior that fails on an evaluator's bench.6465## Anonymized but runnable (double-blind)6667- No author/lab strings in firmware repos, board silkscreen, dataset DOIs, or file paths.68- Board photos and scope screenshots stripped of lab logos and watermarks; testbed/site names69 generalized.70- The artifact opens clean: no `.git` history, credentials, or lab-identifying README.7172## Consistency and camera-ready pass7374- Before submission: every scored number traces to the artifact; the release statement matches75 reality; the package is anonymized.76- Before camera-ready: swap anonymized links for permanent, DOI-issuing archives (Zenodo / IEEE77 DataPort / figshare), restore real names, and align with the badges and Best Research Artifact78 Award you are pursuing (`ipsn-artifact-evaluation`).7980## Vignette: a deployment plus estimator8182A paper deploys nodes and proposes an estimator. Its reproducibility spine: firmware sources with a83pinned toolchain and board revision; the raw traces and the surveyed ground truth; the calibration84procedure and drift log; the analysis scripts that turn traces into every figure; the85power-measurement harness and conditions; and one honest paragraph on what needs the physical board86and the deployment site and therefore cannot be re-collected — only re-processed.8788## Output format8990```text91[Claim inventory] <claim -> evidence location (section / figure / firmware / trace / script)>92[Artifact completeness] firmware / BOM / traces / ground truth / calibration / harness present?93[Reproducibility level] turnkey / hardware-in-the-loop / deployment-bound, stated honestly94[Provenance gaps] <toolchain pins / trace archive / energy conditions / seeds>95[Anonymity] package + hardware imagery clean of identity? passed/issues96[Fixes] <paper fixes that must appear + artifact additions before upload>97```9899---100101**Source:** [`brycewang-stanford/Awesome-Journal-Skills`](https://github.com/brycewang-stanford/Awesome-Journal-Skills) → `IPSN-Skills/skills/ipsn-reproducibility/SKILL.md`