File size: 4,223 Bytes
2f983e6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 | ---
frameworks:
- pytorch
language:
- en
license: apache-2.0
tags:
- OneScience
- ONO
- neural-operator
- computational-fluid-dynamics
- Navier-Stokes
tasks:
- time-series-prediction
---
<p align="center">
<strong>
<span style="font-size: 30px;">ONO</span>
</strong>
</p>
# Model Overview
ONO (Orthogonal Neural Operator) is a neural operator that incorporates orthogonal attention to learn the evolution of complex physical systems. This model predicts Navier–Stokes time series on a two-dimensional regular grid, using the first 10 time steps to predict the subsequent 10 by default.
Paper: Improved Operator Learning by Orthogonal Attention
https://arxiv.org/abs/2310.12487
# Model Description
ONO uses attention to capture global relationships among grid points and updates physical-field features through covariance whitening and orthogonal projection, mitigating feature degradation and oversmoothing in deep neural operators. The model supports Nyström, linear, and standard self-attention and performs multistep flow prediction autoregressively.
# Use Cases
| Use Case | Description |
| :---: | :--- |
| Flow-field time-series prediction | Predict future Navier–Stokes states from historical vorticity fields |
| CFD surrogate modeling | Learn mappings from historical to future physical fields on regular grids |
| Pipeline validation | Validate model training, inference, and result visualization with a small-scale configuration |
# Usage
## 1. OneCode
Use the online OneCode environment for an intelligent, one-click AI for Science (AI4S) programming experience:
[Launch OneCode for one-click AI4S programming](https://web-2069360198568017922-iaaj.ksai.scnet.cn:58043/home)
## 2. Manual Setup
**Hardware Requirements**
- A GPU or DCU is recommended for training and inference.
- A CPU can be used for small-scale pipeline validation, but full training will be slow.
- DCU users must install DTK and a PyTorch environment compatible with the target cluster.
### Download the Model Package
```bash
modelscope download --model OneScience/ONO --local_dir ./ONO
cd ONO
```
### Set Up the Runtime Environment
**DCU Environment**
```bash
# Activate DTK and Conda first
conda create -n onescience311 python=3.11 -y
conda activate onescience311
pip install onescience[cfd-dcu] -i http://mirrors.onescience.ai:3141/pypi/simple/ --trusted-host mirrors.onescience.ai
```
**GPU Environment**
```bash
# Activate Conda first
conda create -n onescience311 python=3.11 -y libstdcxx-ng=12 libgcc-ng=12 gcc_linux-64=12 gxx_linux-64=12
conda activate onescience311
pip install onescience[cfd-gpu] -i http://mirrors.onescience.ai:3141/pypi/simple/ --trusted-host mirrors.onescience.ai
```
### Training Data
The model uses the standard Navier–Stokes dataset `NavierStokes_V1e-5_N1200_T20.mat`, in which the data variable `u` has shape `[1200, 64, 64, 20]`. Download the data with the following command and verify that the data path in `conf/config.yaml` is configured correctly:
```bash
modelscope download --dataset OneScience/cfd_benchmark data/ns/NavierStokes_V1e-5_N1200_T20.mat --local_dir ./data
```
### Training
```bash
python scripts/train.py
```
The default weights are saved to `weight/ono_navier_stokes.pt`.
### Model Weights
This repository provides weights trained on the standard Navier–Stokes dataset in the `weight/` directory.
### Inference, Evaluation, and Visualization
```bash
python scripts/inference.py
```
The script loads `weight/ono_navier_stokes.pt` by default. Predicted tensors and visualizations are saved to the `result/` directory. Training and inference parameters can be modified in `conf/config.yaml`.
# Official OneScience Resources
| Platform | OneScience Repository | Skills Repository |
| --- | --- | --- |
| Gitee | https://gitee.com/onescience-ai/onescience | https://gitee.com/onescience-ai/oneskills |
| GitHub | https://github.com/onescience-ai/OneScience | https://github.com/onescience-ai/oneskills |
# Citations and License
- Improved Operator Learning by Orthogonal Attention. ICML, 2024.
- This model package is released under the Apache-2.0 license and retains attribution to the original paper and data sources.
|