Lesson Flow

Learn

Goals and Concepts

Start with the capability target and concept set for this module.

Practice

Studio Activity

Apply the ideas in a guided activity tied to realistic outputs.

Check

Assessment Rubric

Use the rubric to verify competency and identify improvement targets.

Interactive Lab

Practice in short loops: checkpoint quiz, microtask decision, and competency progress tracking.

Checkpoint Quiz

Q1. Which output most clearly demonstrates module competency?

Competency is shown through measurable, method-linked evidence.

Q2. What should always accompany a technical claim in this curriculum?

Every claim should include boundaries and uncertainty.

Q3. What is the best next step after identifying a gap in understanding?

Progress improves when gaps become explicit practice targets.

Microtask Decision

Choose the action that best improves scientific reliability.

Progress Tracker

State is saved locally in your browser for this module.

0% complete

Annotation Challenge

Click the hotspot with the strongest evidence for the requested feature.

Connectomics training scene

Selected hotspot: none

Capability target

Design and evaluate a CV pipeline for EM imagery that is fit for a specific connectomics task and explicitly bounded by known failure modes.

Why this module matters

CV is central to modern connectomics throughput. Without rigorous validation and domain-aware error analysis, CV outputs can silently corrupt reconstruction and inference.

Concept set

1) Task-model fit

2) Error taxonomy over headline metrics

3) Validation as release gate

Core workflow

  1. Define EM task and acceptable error envelope.
  2. Select baseline and candidate CV approaches.
  3. Run evaluation using biologically relevant metrics.
  4. Perform failure-case review on ambiguous regions.
  5. Publish model card with limitations and intended use.

60-minute tutorial run-of-show

  1. 00:00-08:00 task framing + exemplar failure modes.
  2. 08:00-20:00 choose metrics tied to downstream biology.
  3. 20:00-34:00 evaluate baseline vs candidate model.
  4. 34:00-46:00 error taxonomy and triage discussion.
  5. 46:00-56:00 model card drafting.
  6. 56:00-60:00 competency check.

Studio activity

Scenario: Compare two segmentation-support CV models for an EM subvolume.

Outputs

Assessment rubric

Key architectures for EM connectomics

U-Net (Ronneberger et al. 2015)

Encoder-decoder architecture with skip connections. The encoder downsamples the image to extract features; the decoder upsamples to produce pixel-level predictions; skip connections preserve fine-grained spatial detail. Originally designed for biomedical image segmentation. In connectomics, 3D U-Nets predict boundary/affinity maps at each voxel.

Why it works for EM: EM images have consistent texture and contrast patterns. The encoder learns to detect membranes, vesicles, and other structures; the decoder produces a per-voxel prediction map.

Flood-Filling Networks (Januszewski et al. 2018)

An iterative approach: a CNN predicts whether each neighboring voxel belongs to the same object as the current seed, and the segment “grows” outward. FFNs produce instance segmentation directly (each neuron gets a unique ID) without the separate watershed + agglomeration step.

When to use: FFNs are computationally expensive but produce high-quality segmentation with fewer post-processing stages. Used in FlyWire and other Google-based reconstructions.

Affinity prediction + watershed + agglomeration

The standard two-stage pipeline: (1) A 3D CNN predicts pairwise affinity between neighboring voxels (probability they belong to the same segment). (2) Watershed transform produces an over-segmentation of millions of supervoxels. (3) Agglomeration merges supervoxels based on affinity scores at boundaries.

When to use: More modular and parallelizable than FFN. Standard in academic pipelines (Funke et al. 2019).

Data augmentation for EM

Training data is expensive (manual annotation). Augmentation expands the effective training set:

Content library references

Teaching resources

References

Quick practice prompt

Document one CV result with one supported use case and one forbidden use case.

Teaching Materials

Activity Worksheet

Learner worksheet aligned to the studio activity and rubric.

Open worksheet

Slide Source

Marp source file for editing and rendering.

course/decks/marp/modules/module14.marp.md

Related Content