---
title: 'SlaKoNet: ML-based Slater-Koster Model'
url: https://www.emergentmind.com/topics/slakonet
type: topic
---

# SlaKoNet: ML-based Slater-Koster Model

SlaKoNet is a tight-binding (TB) formalism built on the two-center Slater–Koster (SK) framework, in which the conventional analytic functions for radial hopping integrals and on-site energies are replaced by machine-learned predictors. Each SK Hamiltonian matrix element between orbital $u$ on atom $i$ and orbital $v$ on atom $j$ at interatomic vector $\mathbf{R}_{ij}$ is computed as
\[
H_{i u,\,j v}(R) = \sum_{\alpha,\beta} V_{\alpha\beta}(R) S_{i u,\,j v}^{\,\alpha\beta}(\hat{\mathbf{R}})
\]
where $S^{\alpha\beta}(\hat{\mathbf{R}})$ are the SK angular functions (e.g. $ss\sigma$, $sp\sigma$, $pp\pi$, etc.) and $V_{\alpha\beta}(R)$ are the radial hopping integrals, predicted by a feed-forward neural network as a function of interatomic separation and, in principle, local coordination. SlaKoNet targets efficient, transferable predictions of bandgaps for large-scale electronic structure calculations, especially in the context of semiconductor and insulator materials [2511.20740].

## 1. Functional Formulation and Parametrization

SlaKoNet adopts the standard two-center Slater–Koster form for constructing the TB Hamiltonian. The central innovation is the prediction of each $V_{\alpha\beta}(R)$ radial integral by a dedicated neural network, implemented in PyTorch, incorporating interatomic distance $R$ (and optionally coordination) as inputs. Likewise, on-site energy parameters $\varepsilon_\ell(R)$ are machine-learned analogously.

Each $V_{\alpha\beta}(R)$ is multiplied by a smooth, differentiable cutoff function $f_{\rm cut}(R)$:
\[
f_{\rm cut}(R)=
\begin{cases}
1,& R < R_{\rm in} \\
\frac{1}{2} [ \cos(\pi (R - R_{\rm in}) / (R_{\rm out} - R_{\rm in})) + 1 ], & R_{\rm in} < R < R_{\rm out} \\
0,& R > R_{\rm out}
\end{cases}
\]
This guarantees continuity and differentiability of matrix elements with respect to $R$, which is essential for molecular dynamics and defect studies. Precise values of $R_{\rm in}$ and $R_{\rm out}$ are material-dependent and specified in primary SlaKoNet sources.

## 2. Basis Set and Overlap Treatment

The basis set comprises non-orthogonal atomic $\{s,p,d\}$ orbitals, using a single radial function per angular momentum channel. The radial form and “confinement” (cutoff) radii are derived from DFTB-style Slater-type orbitals but are re-optimized as part of the network training. Overlap matrices $S_{uv}$ are computed via the SK angular projections in this basis, and then scaled by a learned on-site shift. No orthogonalization schemes (such as Löwdin transformations) are applied beyond this scaling in the implementation described in [2511.20740].

## 3. Training Protocols and Optimization Strategies

SlaKoNet is trained on a set of 50+ materials curated from the JARVIS-DFT dataset, spanning elemental metals (e.g., Al, Cu, Au, Ti, Ni), canonical semiconductors (e.g., Si, Ge, GaAs, SiC, ZnO), and wide-gap insulators (e.g., MgO, Al$_2$O$_3$, BN). The primary training target is the bandgap computed from meta-GGA DFT (TB-mBJ values) from JARVIS-DFT, ensuring that the parametrization is not merely fitted to semi-local functionals (e.g., PBE, OptB88vdW) but reflects higher-level electronic structure.

The objective (loss) function is the mean-absolute error (MAE) of the predicted bandgap across the training set:
\[
\text{MAE} = \frac{1}{N} \sum_{i=1}^N |E_{\mathrm{g}}^{\mathrm{pred}}(i) - E_{\mathrm{g}}^{\mathrm{ref}}(i)|
\]
with the possibility of enhanced weighting for bands near the Fermi level. Optimization is conducted using the Adam algorithm (gradient-based) in PyTorch, supporting both GPU and CPU training.

## 4. Quantitative Performance and Comparative Benchmarks

SlaKoNet’s performance is evaluated relative to experiment, DFT (OptB88vdW), and meta-GGA bandgaps (TB-mBJ). The following metrics were reported for 48–51 materials [2511.20740]:

| Reference             | MAE (eV) | RMSE (eV) | Pearson $r$ | $R^2$ |
|-----------------------|----------|-----------|-------------|-------|
| Experiment            | 0.81     | ≃1.18     | 0.86        | 0.74  |
| OptB88vdW (OPT-DFT)   | 1.46     | –         | –           | –     |
| TB-mBJ (meta-GGA DFT) | 0.76     | –         | –           | –     |

Notably, >60% of materials have bandgaps within ±1.0 eV of experiment. By comparison, alternative TB models such as TB3PY and PTBP exhibit higher MAE values (1.11 eV and 1.33 eV, respectively). No bulk modulus data are available for SlaKoNet in [2511.20740].

SlaKoNet underperforms primarily for ultra-wide-gap oxides (e.g., MgO, Al$_2$O$_3$, SiO$_2$), with errors often exceeding 1.5 eV, likely due to the non-trivial dependence of conduction bands on coordination in these cases.

## 5. Transferability, Limitations, and Scope

SlaKoNet’s accuracy is maintained at ∼0.8 eV MAE across diverse semiconductors and moderate-gap insulators. For ultra-wide-gap materials (bandgaps >7 eV) or those with sensitive conduction band alignment, outliers persist.

There are no direct benchmarks for metallic systems within [2511.20740]. A plausible implication is that SlaKoNet, unless specifically retrained, may not predict Fermi-level crossings or metallic bandwidths reliably. Similarly, mechanical properties (bulk modulus, elastic constants) are not in the training set, and the transferability of SlaKoNet to systems involving stress, strain, or lattice deformations is unverified in this benchmark.

## 6. Computational Efficiency and Practical Implications

SlaKoNet retains the computational efficiency of TB models, scaling as $O(N)$ with respect to system size. The core cost per matrix element is boosted only by the feed-forward neural network evaluation (per unique atom pair and separation), allowing GPU acceleration. This enables $\sim$10$^{2}$–10$^{3}$x speedup relative to plane-wave DFT for systems with $10^3$–$10^4$ atoms.

The achieved accuracy (∼0.8 eV MAE) is suitable for high-throughput band-alignment and device screening, while insufficient precision for applications such as deep-UV optoelectronics (where a ±1 eV error on a 6 eV gap is significant) is a limitation.

## 7. Prospects for Extension and Application Domains

SlaKoNet’s architectural paradigm—machine-learning Slater–Koster parameters using a neural network—provides a pathway for further retraining to include defects, surfaces, strained structures, or additional properties. This suggests the model could be tailored to new device-relevant domains where large supercells and configurational diversity preclude DFT. The smooth cutoff and spd minimal basis facilitate integration into molecular dynamics or device transport frameworks where $O(N)$ scaling and differentiability are essential.

SlaKoNet’s deployment within the benchmarking framework of the CHIPS-TB project situates it among the leading machine-learned TB variants for semiconductors and selected insulators, establishing a baseline for future improvements and extensions [2511.20740].

Source: https://www.emergentmind.com/topics/slakonet