Files
myWiki/concepts/neurida.md

34 lines
1.1 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: "NeurIDA"
created: 2026-05-15
updated: 2026-05-15
type: concept
tags: [database, machine-learning, autonomous-system, in-database-analytics]
sources: [raw/papers/zeng-neurida-2025.md]
---
# NeurIDA
**NeurIDA**Neural In-Database Analytics是一个自主端到端系统实现了关系数据库内的 ML 分析。其核心创新在于**动态库内建模Dynamic In-Database Modeling**——在查询时从可组合的共享组件中装配定制模型,而非为每个任务从头构建 pipeline。
## 架构
```
NLQ → Query Intent Analyzer → Conditional Model Dispatcher → DIME → Analytical Report Synthesizer
```
- **输入**:自然语言查询
- **输出**:可解释的分析报告
- **运行环境**:直接操作 RDBMS无需数据迁移
## 核心能力
1. **任务无关性**:同一系统可处理分类、回归等多种预测任务
2. **动态适配**:根据查询语义和数据画像即时调整模型结构
3. **零数据移动**:所有建模直接在数据库内完成
4. **自然语言界面**NLQ 输入 + LLM 解析 + 报告生成
## 来源
- [[zeng-neurida-2025|NeurIDA 论文]]