The Active Learning Pipeline initializes by training an SVGP model on a seed RF dataset using composite kernels. It then iteratively queries informative unlabeled points with acquisition functions (e.g., Entropy, BALD), acquires RF measurements, and updates the model via variational inference until convergence.
Active Learning Pipeline
{ "headers": [ "Step", "Description", "Key Methods" ], "rows": [ [ "1. Initialization", "Train initial SVGP model on seed RF dataset", "SVGP, Composite Kernels" ], [ "2. Query Strategy", "Select most informative unlabeled RF data points", "Acquisition Functions (e.g., Entropy, BALD)" ], [ "3. Data Selection & Acquisition", "Acquire measurements for queried RF data", "RF Measurement Setup" ], [ "4. Model Update & Loop", "Incorporate new data into SVGP and iterate until convergence", "Variational Inference, Loop back to Query" ] ] }
Source: Thesis Survey: RF Characterization using SVGP, Composite Kernels, and Active Learning
Speaker Notes
Query strategy β Model update β RF data selection loop for optimal characterization.