Skip to content
AI.info

Research

SiMiC: Context-Aware Silicon Microstructure Characterization Using Attention-Based Convolutional Neural Networks for Field-Emission Tip Analysis

SiMiC: Context-Aware Silicon Microstructure Characterization Using Attention-Based Convolutional Neural Networks for Field-Emission Tip Analysis Overview Research area: Computer vision applied to elec

arXiv
2601.17048
Published
2026-01-21
Authors
Jing Jie Tan, Rupert Schreiner, Matthias Hausladen, Ali Asgharzade, Simon Edler, Julian Bartsch, Michael Bachmann, Andreas Schels, Ban-Hoe Kwan, Danny Wee-Kiat Ng, Yan-Chai Hum

AI summary

SiMiC: Context-Aware Silicon Microstructure Characterization Using Attention-Based Convolutional Neural Networks for Field-Emission Tip Analysis

Overview

  • Research area: Computer vision applied to electron microscopy — deep learning for automated geometric characterization of silicon field-emitter tips from SEM images.
  • Technical level: Intermediate. The paper assumes familiarity with CNN backbones (ResNet, EfficientNet, MobileNet), attention mechanisms, and standard regression metrics (RMSE, R²), but the writing is accessible and the transferable concepts are simple.
  • Scope: The paper builds a 900-sample SEM dataset of silicon field-emitter tips, trains attention-augmented CNN regressors to predict tip width, height, and apex radius, and benchmarks backbones, attention variants, and augmentation strategies against classical image-processing baselines.

What This Paper Is About

Measuring the geometry of silicon microstructures — particularly the apex radius of field-emission tips — currently relies on manual evaluation of Scanning Electron Microscopy (SEM) images, which is slow, labor-intensive, and inconsistent. The authors ask whether a deep learning model can extract these morphological features automatically and consistently enough to replace or assist manual measurement. They propose SiMiC, an attention-based CNN framework trained on a purpose-built dataset of silicon field-emitter tips, and compare its dimensional predictions across several architectures and training settings.

Key Contributions

  1. A new dataset for an unaddressed problem. The authors state that they found no prior work specifically on silicon microstructure characterization (particularly tip geometry) using machine learning, and no publicly available dataset for this purpose. They therefore created a 900-sample SEM dataset of silicon-based field-emitter tips, acquired under documented imaging conditions, and released it together with the algorithm repository at https://research.jingjietan.com/?q=SIMIC.
  2. An attention-based architecture for geometry-aware regression. SiMiC combines a CNN backbone, an optional CoordConv-based structure module that encodes object width and height, and an attention module (Bahdanau-style additive attention or Multi-Head Attention) that lets the structure features guide where the backbone looks.
  3. A controlled benchmark of backbones, attention types, and augmentation. The paper systematically compares ResNet18, EfficientNet, and MobileNet, with and without each attention mechanism, with and without contrast/brightness augmentation, and in "full-prediction" versus "half-prediction" settings.
  4. Attention-map analysis linking input features to model behavior. Visualizations show that the model shifts its focus depending on whether geometric cues are supplied, providing interpretability evidence alongside the numerical results.

Main Findings

  • ResNet is the strongest backbone. ResNet18 achieved lower RMSE than EfficientNet and MobileNet on all predicted variables — width RMSE 1.1947 versus 1.2982 (EfficientNet) and 1.2712 (MobileNet), and radius RMSE 0.0443 versus 0.0942 and 0.0574.
  • Predictive correlation remains modest overall. R² values stayed at roughly 0.2 across all backbones, which the authors interpret as a limited ability to explain the variance in the target variables.
  • Multi-head attention beats additive attention. Paired with ResNet, multi-head attention reduced radius RMSE from 0.0443 (plain ResNet) and 0.0421 (additive attention + ResNet) to 0.0395.
  • Data augmentation improves accuracy. Adding augmentation to the multi-head attention + ResNet configuration lowered full-prediction radius RMSE from 0.0395 to 0.0319, and half-prediction radius RMSE from 0.0192 to 0.0117.
  • Supplying width and height nearly halves radius error. In the half-prediction setting, ResNet radius RMSE dropped from 0.0443 to 0.0225 (R² 0.2227 to 0.2623), and the augmented multi-head attention configuration dropped from 0.0319 to 0.0117 (R² 0.2362 to 0.3098).
  • Best R² came from the most enriched configuration. Augmentation + multi-head attention + ResNet reached R² of 0.2362 (full prediction) and 0.3098 (half prediction), the highest across all configurations in the table.
  • Attention maps change with available inputs. When width and height are withheld, the model concentrates on the object's bounding structure; when they are provided, attention shifts to object contours. The model also attends to background regions in several cases, which the authors suggest may act as contextual anchors for scale and positioning.
  • Numerical inconsistency in the reported text. The discussion states the baseline ResNet radius R² was 0.2323, while Table 4 lists ResNet's full-prediction radius R² as 0.2227.

Methodology in Plain English

The team imaged 900 silicon field-emitter tips with a Scanning Electron Microscope using fixed settings (300 pA beam current, 5 kV acceleration voltage, 10 mm working distance, 45° sample tilt, 1 µm field of view for tip radii measurement, 1024×768 resolution). They annotated each image with three target dimensions: width, height, and radius.

The data was split carefully: 80% for training and 20% held back as an untouched evaluation set; the training portion was then split again 80:20 into training and validation, with the validation set used only for tuning. To counter the natural variability in SEM brightness and contrast, each original image was expanded into nine augmented versions using a linear transform that applies a contrast factor (α = 0.6, 1.1, 1.6) and a brightness offset (β = −40, 10, 60), with each variant keeping the original image's label.

The model has three parts. A CNN backbone (ResNet18, EfficientNet, or MobileNet) reads the image. An optional structure module projects the supplied width and height through a linear layer into an embedding. An attention module — either additive attention or Multi-Head Attention — uses that structure embedding as a query against spatial positions in the CNN feature map, so the network learns to look at regions relevant to the object's scale.

Training used Huber loss, which mixes the outlier robustness of L1 with the smoothness of L2. Hyperparameters were a learning rate of 1×10⁻⁴, batch size 32, up to 500 epochs with early stopping, the ADAM optimizer, and weight decay of 1×10⁻⁵, all on an NVIDIA A100 GPU. Performance was measured with RMSE and R². Crucially, the authors ran two regimes: "full prediction" (predict width, height, and radius from the image alone) and "half prediction" (give the model width and height, and ask only for radius).

Why This Matters

The work targets a real bottleneck: manual SEM-based tip measurement limits throughput and reproducibility, and ML predictions only become acceptable substitutes if their error approaches the inherent resolution of the instrument being replaced. The paper explicitly frames its error targets against the resolution ranges of SEM (~2–10 nm), TEM (~0.05–0.5 nm), AFM (~0.1–0.5 nm), and optical microscopy (~200–300 nm).

Real-world applications:

  • Cold-cathode and field-emission electron source design, where emission current depends exponentially on tip sharpness and surface uniformity under Fowler–Nordheim theory.
  • Quality control in microscale fabrication, enabling automated inspection and classification of emitter geometries at scale.
  • Improved emission modeling, by feeding CNN-derived tip radii into modified Fowler–Nordheim formulations or machine-learning regressors.
  • SEM instrument maintenance and source characterization, since tip geometry directly affects imaging performance.

Industry relevance: the collaboration includes KETEK GmbH (a semiconductor detector manufacturer) alongside Universiti Tunku Abdul Rahman and Ostbayerische Technische Hochschule Regensburg, and the work is supported by a DAAD Research Grant. The use of lightweight backbones such as MobileNet signals an interest in deployment on resource-constrained platforms, which matters for inline or in-fab inspection workflows.

Future Directions

  • Correlate microstructure with emission performance. The authors propose using the framework to link geometric parameters to measured emission behavior, enabling data-driven optimization of emitter tip geometry and material design.
  • Adopt visual transformer and decoder-style architectures. They suggest exploring architectures inspired by visual transformers and decoder systems, potentially adapted for classification tasks.
  • Address hard samples and class imbalance. Techniques from that literature are proposed to improve model robustness.
  • Improve the weak correlation. Since even the best-performing model shows only modest positive correlation, and no prior work exists for direct comparison, raising R² remains an explicit open problem. The strong dependence of radius accuracy on width and height inputs also motivates further investigation into cross-feature interactions.

Target Audience

This paper benefits researchers and engineers working at the intersection of computer vision and electron microscopy, particularly those involved in semiconductor metrology, field-emission source development, and cold-cathode design. It is also useful for machine learning practitioners interested in geometry-aware attention mechanisms and in how augmentation strategies behave on scientific imaging data. Materials scientists and fabrication engineers who rely on SEM characterization but want to reduce manual measurement effort will find the benchmark results directly applicable, as will readers looking for a documented baseline dataset in an area the authors describe as previously lacking one.

Authors’ abstract

Accurate characterization of silicon microstructures is essential for advancing microscale fabrication, quality control, and device performance. Traditional analysis using Scanning Electron Microscopy (SEM) often requires labor-intensive, manual evaluation of feature geometry, limiting throughput and reproducibility. In this study, we propose SiMiC: Context-Aware Silicon Microstructure Characterization Using Attention-Based Convolutional Neural Networks for Field-Emission Tip Analysis. By leveraging deep learning, our approach efficiently extracts morphological features-such as size, shape, and apex curvature-from SEM images, significantly reducing human intervention while improving measurement consistency. A specialized dataset of silicon-based field-emitter tips was developed, and a customized CNN architecture incorporating attention mechanisms was trained for multi-class microstructure classification and dimensional prediction. Comparative analysis with classical image processing techniques demonstrates that SiMiC achieves high accuracy while maintaining interpretability. The proposed framework establishes a foundation for data-driven microstructure analysis directly linked to field-emission performance, opening avenues for correlating emitter geometry with emission behavior and guiding the design of optimized cold-cathode and SEM electron sources. The related dataset and algorithm repository that could serve as a baseline in this area can be found at https://research.jingjietan.com/?q=SIMIC

Read the original paper