Skip to content

Basic Training Materials

Core terms

A trainable dataset has labels, splits, consistent sample shape, metadata, and enough examples for the target class or scenario. The WavesFM path adds adapter and transform expectations, so mismatched input shape or missing label fields should be fixed before launching a run.

Class balance preview

Example modulation classes before and after curation checks.

BPSKQPSK8PSK16QAM
  • Before
  • After
Data table
SeriesBPSKQPSK8PSK16QAM
Before32 slices18 slices12 slices9 slices
After28 slices27 slices25 slices24 slices

Training curve placeholder

Example loss and accuracy trend for a short model run.

012345
  • Loss
  • Accuracy
Data table
Series012345
Loss1.20.940.720.580.470.41
Accuracy0.420.550.680.740.80.84

Training gotchas

Labels are missing or too broad

Define the target label before slicing so the dataset can be evaluated consistently.

Sample shapes are inconsistent

Check that transforms produce the expected tensor shape for the selected model template.

Metadata is incomplete

Keep source OIDs, branch, directory, and qualifier information attached to examples.

  • Inspect the datasetInspect a Dataset walks through balance analysis and anomaly detection before launching a run.
  • Train a model — When the dataset passes inspection, continue to Train a Model.