{
 "artifacts": null,
 "category": "architecture",
 "description": "Replace a geometry-agnostic kernel or standard point-cloud attention layer with an integral transform whose weights are conditioned on geometry tokens. The layer receives field values at arbitrary points, domain indicators, boundary features, and local geometric descriptors, and uses cross-attention to produce location-dependent kernels without graph construction.",
 "formulas_latex": [
  "$$\\mathcal{D}(c,u)=q,\\quad \\forall x\\in D\\subset\\mathbb{R}^{d},\\qquad \\mathcal{B}(u)=u_b,\\quad x\\in\\partial D.$$",
  "$$a=(c,q,u_b,\\chi_D)\\in\\mathcal{A},\\qquad \\mathcal{S}:\\mathcal{A}\\to\\mathcal{U},\\quad a\\mapsto u.$$",
  "$$\\alpha_{ik}=\\frac{\\exp\\!\\left(\\phi_q(v_i)^{\\mathsf T}\\phi_k(g_k)/\\sqrt{r}\\right)}{\\sum_{\\ell=1}^{K}\\exp\\!\\left(\\phi_q(v_i)^{\\mathsf T}\\phi_k(g_\\ell)/\\sqrt{r}\\right)},\\qquad \\widetilde g_i=\\sum_{k=1}^{K}\\alpha_{ik}\\phi_v(g_k).$$",
  "$$z_i=\\sigma\\!\\left(W_0v_i+\\sum_{j=1}^{N}w_j\\,\\psi(v_i,v_j,x_i,y_j,\\widetilde g_i)\\,v_j\\right).$$"
 ],
 "id": 324,
 "implementation": "(1) Integration point: implement this as a drop-in replacement for one or more self-attention or Fourier/operator-kernel blocks in a point-cloud or mesh-free neural operator. Sample source points $y_j$ and query points $x_i$ independently; attach to every point its coordinates, field values, boundary flag, signed-distance estimate, and domain indicator $\\chi_D(x)\\in\\{0,1\\}$. Build geometry tokens from boundary points, global shape statistics, and optionally pooled interior features. (2) Pseudocode: encode each source point as $v_j=E_v([u(y_j),c(y_j),q(y_j),x_j,\\chi_D(y_j)])$ and each geometry token as $g_k=E_g([x_k,\\mathrm{normal}_k,\\mathrm{SDF}_k,\\mathrm{boundary\\_flag}_k])$; for every query $i$, compute $q_i=\\phi_q(v_i)$, $k_k=\\phi_k(g_k)$, $\\alpha_{ik}=\\mathrm{softmax}_k(q_i^Tk_k/\\sqrt r)$, and $\\widetilde g_i=\\sum_k\\alpha_{ik}\\phi_v(g_k)$; then compute $z_i=\\sigma(W_0v_i+\\sum_jw_j\\psi(v_i,v_j,x_i,y_j,\\widetilde g_i)v_j)$. Use random point subsampling and uniform weights initially, then test area-aware quadrature weights. (3) Compute from the mathematics: the normalized attention weights and weighted discrete integral are exact implementation objects; estimate geometry features such as signed distance, normals, and quadrature weights from the available point cloud. Do not build a graph. (4) First experiment: train a small 2D Darcy or Poisson surrogate on randomly deformed domains and evaluate on unseen shapes and point resolutions. Compare a standard point transformer, a geometry-blind integral neural operator, and this module at matched parameter count and FLOPs. Success means lower relative $L^2$ error on unseen geometries, less degradation when point resolution changes, and no superlinear graph-construction cost.",
 "math_summary": "The paper formulates a PDE as $\\mathcal{D}(c,u)=q$ for $x\\in D\\subset\\mathbb{R}^{d}$ with boundary condition $\\mathcal{B}(u)=u_b$ for $x\\in\\partial D$, where $u:D\\to\\mathbb{R}^{m}$ is the solution, $c$ is a physical-parameter field, $q$ is forcing, $u_b$ is the boundary value, and $\\chi_D$ is the domain indicator. The complete input is $a=(c,q,u_b,\\chi_D)\\in\\mathcal{A}$ and the forward operator is $\\mathcal{S}:\\mathcal{A}\\to\\mathcal{U}$, $a\\mapsto u$. GAIA's transferable construction is an integral layer with a kernel adapted by geometry tokens. For query points $x_i$, source points $y_j$, field features $v_j$, and geometry-token features $g_k$, use cross-attention scores $s_{ik}=\\phi_q(v_i,x_i)^{\\mathsf T}\\phi_k(g_k)/\\sqrt{r}$, where $r$ is the key dimension, and weights $\\alpha_{ik}=\\exp(s_{ik})/\\sum_{\\ell}\\exp(s_{i\\ell})$. The geometry-conditioned kernel is $K_{ij}=\\psi(v_i,v_j,x_i,y_j,\\sum_k\\alpha_{ik}\\phi_v(g_k))$, and the discretized integral transform is $z_i=\\sigma\\left(W_0v_i+\\sum_jw_jK_{ij}v_j\\right)$, where $w_j$ are quadrature or uniform sampling weights and $\\sigma$ is an activation. Conditioning $K_{ij}$ on geometry tokens lets the same network handle changing boundaries, holes, resolutions, and point layouts.",
 "math_tags": [
  "geometry",
  "functional-analysis",
  "pde",
  "linear-algebra"
 ],
 "ml_areas": [
  "attention",
  "graph-nn",
  "embedding"
 ],
 "paper": {
  "arxiv_id": "2607.01128",
  "arxiv_url": "https://arxiv.org/abs/2607.01128",
  "summary_what_math_gives_to_ml": "GAIA contributes a transferable pattern for learning operators whose input and output fields live on different, irregular spatial domains: represent geometry, boundary information, and sampled fields as tokens, then condition local integral transforms through cross-attention. The key asset is not a PDE-specific discretization, but the ability to make the kernel depend on local geometry and domain membership without constructing a graph or retraining for each shape. This can be adapted to point-cloud transformers, irregular scientific data, mesh-free neural operators, and amortized inverse problems. The most direct experiments are geometry-conditioned attention layers and a one-pass encoder-decoder that maps sparse measurements plus a domain description to a field on a separate query domain.",
  "title": "GAIA: Geometry-Adaptive Operator Learning for Forward and Inverse Problems",
  "year": "2026"
 },
 "ratings": {
  "difficulty": 5,
  "novelty": 7,
  "usefulness": 7
 },
 "solves": [
  "accuracy",
  "scalability",
  "stability"
 ],
 "title": "Geometry-conditioned integral attention",
 "url": "https://synthcore.org/idea/324/geometry-conditioned-integral-attention",
 "verification": {
  "peer_reviewed": false,
  "status": "unverified",
  "status_label": "Unverified",
  "verdict_source": "deterministic test code (paired-seed permutation statistics)",
  "verification_axes": {
   "benchmark_mechanism": {
    "confirmed": null,
    "tested": false
   },
   "practical_benchmark": {
    "beats_baseline": null,
    "tested": false
   },
   "toy_mechanism_gate": {
    "confirmed": null,
    "tested": false
   }
  }
 }
}
