|
1 | | -# Model DSL Library |
| 1 | +# DSL Library |
2 | 2 |
|
3 | | -一个用于定义、搜索和比较模型架构的交互式展示 demo。 |
| 3 | +An interactive research workspace for defining reusable DSL Units, composing |
| 4 | +them into typed model search spaces, and inspecting how a meta-model can guide |
| 5 | +architecture discovery. |
4 | 6 |
|
5 | | -首页展示三个 DSL: |
| 7 | +The public site is deployed from this repository through GitHub Pages. All |
| 8 | +interactive views run in the browser and use bundled static artifacts; no local |
| 9 | +server or private experiment directory is required. |
6 | 10 |
|
7 | | -- **Meta-model Architecture**:用于搜索 MLP 图结构的紧凑图语法。 |
8 | | -- **Recurrent Cell**:用于比较记忆、门控和更新路径的序列 cell DSL。 |
9 | | -- **Multivariate Patch Attention**:用于多变量天气序列的对称 patch attention DSL。 |
| 11 | +The library includes: |
10 | 12 |
|
11 | | -点击卡片可以查看对应的数据集、任务协议、搜索语法、最佳架构和记录结果。所有内容均为静态浏览器端展示,不包含训练脚本、实验原始数据或个人信息。 |
| 13 | +- **Overview:** why a DSL is useful, how Units become a Model DSL, and how |
| 14 | + ground-truth training plus meta-model screening compresses a large search |
| 15 | + space. |
| 16 | +- **Model DSLs:** the Recurrent Cell report, including the fixed task protocol, |
| 17 | + typed interface, leaderboard, LSTM decomposition, and screened Top-1 cell. |
| 18 | +- **DSL Units:** reusable input/output contracts and computation Units such as |
| 19 | + MLP, self-attention, cross-attention, add, and gated-update. |
| 20 | +- **Architecture Field Guide:** a curated reading index for time-series |
| 21 | + architectures and foundation models. |
12 | 22 |
|
13 | | -## 本地运行 |
| 23 | +This is a research demonstration of a controlled search-space language, not a |
| 24 | +claim that any displayed architecture is universally optimal. |
| 25 | + |
| 26 | +## Local development |
| 27 | + |
| 28 | +The Overview is served at `/`. The Model DSL catalog, DSL Units catalog, |
| 29 | +workflow compatibility route, and field guide are available at `/models/`, |
| 30 | +`/syntax/`, `/workflow/`, and `/field-guide/` respectively. Legacy AI4AI |
| 31 | +routes remain available under `/ai4ai/`, `/dynamics/`, and `/classic/`. |
14 | 32 |
|
15 | 33 | ```bash |
16 | | -pnpm install --frozen-lockfile |
| 34 | +pnpm install --ignore-scripts |
17 | 35 | pnpm run dev |
18 | 36 | ``` |
19 | 37 |
|
20 | | -## 构建 GitHub Pages |
| 38 | +The local production check is: |
21 | 39 |
|
22 | 40 | ```bash |
23 | | -pnpm run build:pages |
| 41 | +pnpm run build |
24 | 42 | ``` |
25 | 43 |
|
26 | | -公开页面:<https://bangzhehuang.github.io/Model-DSL-Library/> |
| 44 | +The GitHub Pages build uses the repository base path: |
| 45 | + |
| 46 | +```bash |
| 47 | +pnpm run build:pages |
| 48 | +``` |
0 commit comments