AIAny
AI Train2020
Icon for item

NeuralOperator: Learning in Infinite Dimensions

PyTorch library for operator learning: neural networks that map between whole function spaces, not fixed grids, so a model trained at one resolution runs at any other. Bundles FNO, Tensorized FNO and related architectures, mainly for solving PDEs.

Introduction

Standard deep nets learn a mapping tied to one mesh; change the grid resolution and accuracy collapses. Neural operators remove that constraint — they learn the map between function spaces itself, so a model trained on coarse data can be evaluated on a finer grid with no retraining. This library is the reference implementation of that idea, now part of the official PyTorch Ecosystem.

What Sets It Apart
  • Resolution invariance is the headline: train at 64x64, infer at 256x256, because the learned object is a function-to-function map, not a grid-to-grid one — cheap training, high-fidelity inference.
  • Beyond the original Fourier Neural Operator (FNO), it ships Tensorized FNO (TFNO), whose Tucker factorization cuts parameters to roughly 10% of a dense FNO, so large operators fit on modest hardware.
  • It is built as tested, documented infrastructure rather than a research-paper dump: standardized training loops, benchmark datasets, and extensible layers for composing new operators.
Where It Comes From

Maintained jointly by NVIDIA and Caltech — the groups behind the original neural-operator papers — it consolidates years of scattered research code into one maintained package. The lineage matters: these are the architectures the field actually cites and builds on.

Great Fit If / Look Elsewhere If

Great fit if you work on PDE surrogates — weather, fluids, climate, materials — and want resolution-flexible models with a gentle on-ramp. Look elsewhere if your task is ordinary finite-dimensional supervised learning, or you need certified simulation accuracy: neural operators are learned approximators, not validated numerical solvers, and spectral layers can be memory-hungry at high mode counts.

Information

  • Websitegithub.com
  • OrganizationsNVIDIA, Caltech
  • AuthorsNeuralOperator (GitHub organization)
  • Published date2020/10/13

Categories

More Items

GitHub
AI Train2025

An asynchronous, high-throughput framework for large-scale reinforcement learning and agentic training that scales to 1T+ MoE models and 1000+ GPUs, with native verifiers integration, end-to-end SFT/RL/evals, and Slurm/Kubernetes deployment; requires NVIDIA GPUs.

GitHub
AI Agent2026

Trains reusable natural-language 'skills' for frozen LLM agents by optimizing the skill document in text-space — using trajectory-driven edits, validation-gated updates, and deployable best_skill.md artifacts. Multi-backend, zero inference-time cost at deployment, designed for iterative, validation-led skill improvement.

GitHub
AI Train2023

Modular PyTorch-based framework for building, training, and deploying physics-informed ML models (neural operators, PINNs, GNNs, diffusion). Provides GPU‑optimized training, domain-specific datapipes for meshes/point clouds, distributed scaling and a model zoo.