feat(wiki): 摄入历史性新机遇分析框架 + 静能量章节扩展 + frontmatter 验证工具增强
- 新增 wiki/历史性新机遇分析框架.md — 大镇乡谈政策分析框架(一目标一核心两支柱三周期) - 更新 aw/呸未然_静能量/ — 摄入 6 个章节内容(盘坐、正身、正言、正行、止念、业力) - 新增/更新 wiki/静能量.md、wiki/佛家修行.md — 概念页扩展 - 优化 ools/scripts/validate-frontmatter.py: * 支持根目录 .md 文件(如 AGENTS.md)的 wiki 专用检查 * relations 目标存在性检查扩展到整个 vault(不限于 wiki/) * 添加 is_wiki_file() 判断,避免对非 wiki 文件误报 - 更新 wiki/LLM-Wiki-v2.md — 删除冗余 relation,修正 SCHEMA→AGENTS - 更新 wiki/index.md — 页面数统计(505→506) - 追加 wiki/log.md — ingest 记录
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
---
|
||||
tags:
|
||||
- daily
|
||||
para: []
|
||||
---
|
||||
|
||||
## Notes
|
||||
|
||||
![[Daily.base]]
|
||||
@@ -36,7 +36,26 @@ VALID_TYPES = [
|
||||
]
|
||||
|
||||
|
||||
def validate_one(fp: Path) -> list[str]:
|
||||
def build_vault_stems(vault_root: Path) -> set[str]:
|
||||
"""扫描整个 vault 收集所有 .md 文件的 stem"""
|
||||
stems = set()
|
||||
for p in vault_root.rglob("*.md"):
|
||||
rel = p.relative_to(vault_root).as_posix()
|
||||
if rel.startswith(".git/") or "node_modules" in rel:
|
||||
continue
|
||||
stems.add(p.stem)
|
||||
return stems
|
||||
|
||||
|
||||
def is_wiki_file(fp: Path) -> bool:
|
||||
"""判断文件是否在 wiki/ 目录下"""
|
||||
try:
|
||||
return fp.resolve().relative_to(WIKI.resolve()) is not None
|
||||
except ValueError:
|
||||
return False
|
||||
|
||||
|
||||
def validate_one(fp: Path, vault_stems: set[str] | None = None) -> list[str]:
|
||||
"""验证单个文件,返回错误列表"""
|
||||
errors = []
|
||||
content = fp.read_text(encoding="utf-8")
|
||||
@@ -50,57 +69,63 @@ def validate_one(fp: Path) -> list[str]:
|
||||
except yaml.YAMLError as e:
|
||||
return [f"YAML parse error: {e}"]
|
||||
|
||||
# categories must contain [[LLM Wiki]]
|
||||
cats = front.get("categories", [])
|
||||
if isinstance(cats, str):
|
||||
cats = [cats]
|
||||
if not any(str(c).strip("[]") == "LLM Wiki" for c in cats):
|
||||
errors.append("Missing [[LLM Wiki]] in categories")
|
||||
# 非 wiki/ 文件跳过 wiki 专用检查
|
||||
wiki_only = is_wiki_file(fp)
|
||||
|
||||
# tags must contain wiki
|
||||
tags = front.get("tags", [])
|
||||
if isinstance(tags, str):
|
||||
tags = [tags]
|
||||
if "wiki" not in tags:
|
||||
errors.append("Missing 'wiki' in tags")
|
||||
if wiki_only:
|
||||
# categories must contain [[LLM Wiki]]
|
||||
cats = front.get("categories", [])
|
||||
if isinstance(cats, str):
|
||||
cats = [cats]
|
||||
if not any(str(c).strip("[]") == "LLM Wiki" for c in cats):
|
||||
errors.append("Missing [[LLM Wiki]] in categories")
|
||||
|
||||
# type must exist and be valid
|
||||
# Convention: type can be scalar (e.g. 'concept') or list (e.g. ['entity', 'People', 'Author'])
|
||||
# When list, the FIRST element is the canonical type; subsequent are role/subtype annotations
|
||||
ptype = front.get("type")
|
||||
if not ptype:
|
||||
errors.append("Missing type")
|
||||
elif isinstance(ptype, str):
|
||||
if ptype not in VALID_TYPES:
|
||||
errors.append(f"Invalid type: '{ptype}' (valid: {', '.join(VALID_TYPES)})")
|
||||
elif isinstance(ptype, list):
|
||||
# tags must contain wiki
|
||||
tags = front.get("tags", [])
|
||||
if isinstance(tags, str):
|
||||
tags = [tags]
|
||||
if "wiki" not in tags:
|
||||
errors.append("Missing 'wiki' in tags")
|
||||
|
||||
# type must exist and be valid
|
||||
# type must exist and be valid
|
||||
# Convention: type can be scalar (e.g. 'concept') or list (e.g. ['entity', 'People', 'Author'])
|
||||
# When list, the FIRST element is the canonical type; subsequent are role/subtype annotations
|
||||
ptype = front.get("type")
|
||||
if not ptype:
|
||||
errors.append("type list is empty")
|
||||
else:
|
||||
primary = ptype[0]
|
||||
if primary not in VALID_TYPES:
|
||||
errors.append(f"Invalid primary type: '{primary}' (valid: {', '.join(VALID_TYPES)})")
|
||||
# Role/subtype annotations (2nd+ elements) are not validated against VALID_TYPES
|
||||
errors.append("Missing type")
|
||||
elif isinstance(ptype, str):
|
||||
if ptype not in VALID_TYPES:
|
||||
errors.append(f"Invalid type: '{ptype}' (valid: {', '.join(VALID_TYPES)})")
|
||||
elif isinstance(ptype, list):
|
||||
if not ptype:
|
||||
errors.append("type list is empty")
|
||||
else:
|
||||
primary = ptype[0]
|
||||
if primary not in VALID_TYPES:
|
||||
errors.append(f"Invalid primary type: '{primary}' (valid: {', '.join(VALID_TYPES)})")
|
||||
# Role/subtype annotations (2nd+ elements) are not validated against VALID_TYPES
|
||||
|
||||
# source must exist
|
||||
if not front.get("source"):
|
||||
errors.append("Missing source")
|
||||
# source must exist
|
||||
if not front.get("source"):
|
||||
errors.append("Missing source")
|
||||
|
||||
# status=superseded must have superseded_by
|
||||
if front.get("status") == "superseded" and not front.get("superseded_by"):
|
||||
errors.append("status=superseded but missing superseded_by")
|
||||
# status=superseded must have superseded_by
|
||||
if front.get("status") == "superseded" and not front.get("superseded_by"):
|
||||
errors.append("status=superseded but missing superseded_by")
|
||||
|
||||
# relations targets must exist
|
||||
# relations targets must exist (check entire vault)
|
||||
all_stems = vault_stems if vault_stems is not None else build_vault_stems(WIKI.parent)
|
||||
for rel in front.get("relations", []):
|
||||
target = str(rel.get("target", "")).strip("[]")
|
||||
if target and not (WIKI / f"{target}.md").exists():
|
||||
if target and target not in all_stems:
|
||||
errors.append(f"Relation target [[{target}]] not found")
|
||||
|
||||
return errors
|
||||
|
||||
|
||||
def get_git_changed_wiki_files() -> list[Path]:
|
||||
"""获取 git 暂存区中被修改的 wiki .md 文件"""
|
||||
"""获取 git 暂存区中被修改的 wiki/ 及根目录 .md 文件"""
|
||||
try:
|
||||
result = subprocess.run(
|
||||
["git", "diff", "--cached", "--name-only", "--diff-filter=ACM"],
|
||||
@@ -111,7 +136,10 @@ def get_git_changed_wiki_files() -> list[Path]:
|
||||
files = []
|
||||
for line in result.stdout.splitlines():
|
||||
line = line.strip()
|
||||
if line.startswith("wiki/") and line.endswith(".md"):
|
||||
if not line.endswith(".md"):
|
||||
continue
|
||||
# 只校验 wiki/ 和根目录的 .md 文件
|
||||
if line.startswith("wiki/") or "/" not in line:
|
||||
fp = WIKI.parent / line
|
||||
if fp.exists():
|
||||
files.append(fp)
|
||||
@@ -129,15 +157,27 @@ def main():
|
||||
if not files:
|
||||
sys.exit(0)
|
||||
elif args.files:
|
||||
files = [Path(f) if Path(f).is_absolute() else WIKI / f for f in args.files]
|
||||
def resolve(f: str) -> Path:
|
||||
p = Path(f)
|
||||
if p.is_absolute():
|
||||
return p
|
||||
posix = p.as_posix()
|
||||
# 根目录文件如 AGENTS.md → vault_root / AGENTS.md
|
||||
if "/" not in posix and posix.endswith(".md"):
|
||||
return WIKI.parent / posix
|
||||
# wiki/ 前缀清理
|
||||
relative = posix.removeprefix("wiki/")
|
||||
return WIKI / relative
|
||||
files = [resolve(f) for f in args.files]
|
||||
else:
|
||||
files = sorted(WIKI.glob("*.md"))
|
||||
|
||||
vault_stems = build_vault_stems(WIKI.parent)
|
||||
all_errors = {}
|
||||
for fp in files:
|
||||
if fp.name in ("index.md", "log.md"):
|
||||
continue
|
||||
errors = validate_one(fp)
|
||||
errors = validate_one(fp, vault_stems)
|
||||
if errors:
|
||||
all_errors[fp.stem] = errors
|
||||
|
||||
|
||||
+4
-7
@@ -22,9 +22,6 @@ status: active
|
||||
last_reviewed: '2026-07-01'
|
||||
review_interval_days: 180
|
||||
relations:
|
||||
- type: extends
|
||||
target: '[[SCHEMA]]'
|
||||
confidence: 2
|
||||
- type: extends
|
||||
target: '[[涌现]]'
|
||||
confidence: 2
|
||||
@@ -319,9 +316,9 @@ GitHub: `GoogleCloudPlatform/knowledge-catalog/tree/main/okf`
|
||||
|
||||
## 4 级记忆架构在老何 wiki 的落地(2026-06-30)
|
||||
|
||||
> **背景**:2026-06-30 老何在 [[SCHEMA]] 重构时,把 LLM Wiki v2 文档里的"整合层级 (Consolidation Tiers)" — 原始观察 → 工作记忆 → 情景记忆 → 语义记忆 → 程序记忆 — **正式落地为 vault 目录结构**。
|
||||
> **背景**:2026-06-30 老何在 [[AGENTS]] 重构时,把 LLM Wiki v2 文档里的"整合层级 (Consolidation Tiers)" — 原始观察 → 工作记忆 → 情景记忆 → 语义记忆 → 程序记忆 — **正式落地为 vault 目录结构**。
|
||||
|
||||
### SCHEMA 里的 5 层映射
|
||||
### AGENTS 里的 5 层映射
|
||||
|
||||
| LLM Wiki v2 概念 | 老何 wiki 目录 | 关键特征 |
|
||||
|----------------|--------------|---------|
|
||||
@@ -329,7 +326,7 @@ GitHub: `GoogleCloudPlatform/knowledge-catalog/tree/main/okf`
|
||||
| **Working Memory**(AI 可读提炼) | `sources/` | AI 摘要版本 |
|
||||
| **Episodic Memory** | `Daily/` | 每日笔记 + Dataview 视图 |
|
||||
| **Semantic Memory** | `concepts/` `entities/` `syntheses/` | 概念、实体、综合报告 |
|
||||
| **Procedural Memory** | `AGENTS.md` `SCHEMA.md` `log.md` `scripts/` | 规则、流程、工具 |
|
||||
| **Procedural Memory** | `AGENTS.md` `log.md` `scripts/` | 规则、流程、工具 |
|
||||
| **自动生成** | `reports/` `_openclaw/` | 系统诊断 + agent 缓存 |
|
||||
|
||||
### 与原 LLM Wiki v2 设计的差异
|
||||
@@ -348,7 +345,7 @@ GitHub: `GoogleCloudPlatform/knowledge-catalog/tree/main/okf`
|
||||
- **Working Memory 层**:`raw/articles/` 接收老何下载的讲座转录、HTML 原文
|
||||
- **Episodic Memory 层**:`Daily/2026-06-30.md` 记录当天会话事件流
|
||||
- **Semantic Memory 层**:本文档(`concepts/LLM-Wiki-v2.md`)作为概念层锚点
|
||||
- **Procedural Memory 层**:`SCHEMA.md` 第 §五节编码了本文档里的 Consolidation Tiers 思想
|
||||
- **Procedural Memory 层**:`AGENTS.md` 第 §五节编码了本文档里的 Consolidation Tiers 思想
|
||||
- **自动生成层**:`_openclaw/sync-events.jsonl` 记录 14 条维护事件,机器可读
|
||||
|
||||
### 与 [[以终为始]] 的关系
|
||||
|
||||
+2
-2
@@ -16,9 +16,9 @@ type: index
|
||||
|
||||
| 指标 | 值 |
|
||||
|------|-----|
|
||||
| Wiki 页面数 | 505 |
|
||||
| Wiki 页面数 | 506 |
|
||||
| 来源 (raw/ .md) | 34 |
|
||||
| 概念页 | 203 |
|
||||
| 概念页 | 204 |
|
||||
| 实体页 | 185 |
|
||||
| 地点页 | 40 |
|
||||
| 工具页 | 26 |
|
||||
|
||||
+12
@@ -1026,3 +1026,15 @@
|
||||
- 未变 42 页
|
||||
|
||||
**涉及页面**: 6 更新,0 新建
|
||||
|
||||
## [2026-07-01] ingest | 历史性新机遇分析框架
|
||||
|
||||
**来源**: [[历史性新机遇-大镇乡谈]](知识星球,约 9000 字)
|
||||
|
||||
**操作**:
|
||||
- 新增 `wiki/历史性新机遇分析框架.md` — 大镇乡谈提出的"一目标一核心两支柱三周期"政策分析框架
|
||||
- 提取关键数据和政策脉络,标注 raw 行号溯源
|
||||
- 建立与 [[低熵文明]]、[[电力原生文明]]、[[全国统一大市场]] 等现有 Wiki 页面的关系
|
||||
|
||||
**涉及页面**: 1 新建
|
||||
- [[历史性新机遇分析框架]] — 概念页
|
||||
|
||||
@@ -0,0 +1,114 @@
|
||||
---
|
||||
categories:
|
||||
- "[[LLM Wiki]]"
|
||||
tags:
|
||||
- wiki
|
||||
- concept
|
||||
- concept/policy
|
||||
- 政策分析
|
||||
- 中国经济
|
||||
created: 2026-07-01
|
||||
source: "[[历史性新机遇-大镇乡谈]]"
|
||||
type: concept
|
||||
aliases:
|
||||
- 一目标一核心两支柱三周期
|
||||
- 大镇乡谈政策框架
|
||||
confidence: 3
|
||||
status: active
|
||||
relations:
|
||||
- type: extends
|
||||
target: "[[低熵文明]]"
|
||||
description: "框架的一目标是低熵文明"
|
||||
confidence: 3
|
||||
- type: extends
|
||||
target: "[[全国统一大市场]]"
|
||||
description: "两支柱之一"
|
||||
confidence: 3
|
||||
- type: extends
|
||||
target: "[[电力原生文明]]"
|
||||
description: "两支柱之一,电气化率驱动社会重塑"
|
||||
confidence: 3
|
||||
- type: part_of
|
||||
target: "[[中国经济政策分析]]"
|
||||
description: "理解中国政策主脉络的认知框架"
|
||||
confidence: 2
|
||||
---
|
||||
|
||||
# 历史性新机遇分析框架
|
||||
|
||||
> **一句话定义**:大镇乡谈提出的"一目标一核心两支柱三周期及内外两把刀"政策分析框架,用于理解中国未来 5 年及更长时期的政策主脉络。
|
||||
|
||||
## 框架总览
|
||||
|
||||
作者大镇乡谈将中国面对"千载难逢的历史性新机遇"的政策方向概括为以下结构化框架[raw:历史性新机遇-大镇乡谈:55]:
|
||||
|
||||
```
|
||||
一目标(低熵文明)→ 一核心(科技)→ 两支柱(全国统一大市场 + 电力原生文明)
|
||||
→ 三周期(AI 超级周期、出海大周期、新旧动能转换周期)
|
||||
→ 内外两把刀(移风易俗新阶段、以中国为核心的新全球生态)
|
||||
```
|
||||
|
||||
## 一目标:低熵文明
|
||||
|
||||
低熵文明是中国政策的顶层目标,核心是从高耗能、高摩擦、高不确定的旧体系升级为高能效、高协同、高确定性的新体系[raw:历史性新机遇-大镇乡谈:83]。
|
||||
|
||||
**核心表现**:
|
||||
- 电价常年稳定,石油储备平抑全球油价波动[raw:历史性新机遇-大镇乡谈:79]
|
||||
- 社会摩擦降低,办事效率提升[raw:历史性新机遇-大镇乡谈:79]
|
||||
- 中国秩序向外输出,基础设施和制度扩展至非洲等地[raw:历史性新机遇-大镇乡谈:81]
|
||||
|
||||
## 一核心:科技
|
||||
|
||||
科技是中国政策和资源分配的核心,其他领域的投入都要以保证科技需求为基础[raw:历史性新机遇-大镇乡谈:157]。
|
||||
|
||||
**关键信号**:
|
||||
- 2025 年中国基础科研投入占全社会科研投入 7.08%,"十四五"目标 8% 未完成[raw:历史性新机遇-大镇乡谈:143]
|
||||
- "十五五"规划提到基础研究 14 次("十四五"仅 9 次)[raw:历史性新机遇-大镇乡谈:145]
|
||||
- 美国基础研究投入占比长期 15%-17%,差距在企业投入[raw:历史性新机遇-大镇乡谈:147]
|
||||
- 达沃斯论坛表态:唯一明确提出要达成的目标是基础科研占比[raw:历史性新机遇-大镇乡谈:143]
|
||||
|
||||
**资源倾斜逻辑**:从间接融资转向直接融资,资本市场从吸纳成熟企业转向吸纳创新企业[raw:历史性新机遇-大镇乡谈:149]。
|
||||
|
||||
## 两支柱
|
||||
|
||||
### 支柱一:全国统一大市场
|
||||
|
||||
在全国范围完成利益的纵向(央地关系)和横向调整,让发达地区把本应属于欠发达地区的资源还回去[raw:历史性新机遇-大镇乡谈:168-169]。
|
||||
|
||||
**关键挑战**:
|
||||
- 2025 年中国社会物流总费用与 GDP 比值 13.9%,2027 年目标 13.5%,远高于 OECD 平均 8%[raw:历史性新机遇-大镇乡谈:185]
|
||||
- 北方缺乏长江水道这样的天然物流通道,经济联系弱于南方[raw:历史性新机遇-大镇乡谈:175-177]
|
||||
- 物流成本下降 1% 相当于一年上万亿的价值[raw:历史性新机遇-大镇乡谈:185]
|
||||
|
||||
### 支柱二:电力原生文明
|
||||
|
||||
借助电气化完成整个社会的重塑,从根本上降低能耗和物流成本[raw:历史性新机遇-大镇乡谈:189]。
|
||||
|
||||
**电气化率数据**:
|
||||
- 2024 年中国电气化率 28.8%,2021 年仅 21%,预计 2030 年达 35%[raw:历史性新机遇-大镇乡谈:237-239]
|
||||
- OECD 国家长期停滞在 20%-25%,发展中国家一般在 20% 以下[raw:历史性新机遇-大镇乡谈:243]
|
||||
- 中国有望成为全球第一个电力原生国家[raw:历史性新机遇-大镇乡谈:209]
|
||||
|
||||
**储能爆发**:2025 年电化学储能新增装机 47.16 GW,一年增量几乎追平 30 年抽水蓄能建设总和[raw:历史性新机遇-大镇乡谈:197-198]。
|
||||
|
||||
**经济规模对比**:2025 年中国清洁能源投资 7.2 万亿元,贡献经济增长的 1/3;AI 投资不到清洁能源的二十分之一[raw:历史性新机遇-大镇乡谈:221-225]。
|
||||
|
||||
## 与 LLM Wiki 的关系
|
||||
|
||||
该框架为理解中国政策方向提供了系统性认知工具,与本 Wiki 中以下概念深度关联:
|
||||
|
||||
- [[低熵文明]] — 框架的顶层目标
|
||||
- [[电力原生文明]] — 两支柱之一
|
||||
- [[全国统一大市场]] — 两支柱之一
|
||||
- [[AI 超级周期]] — 三周期之一
|
||||
- [[LLM Wiki]] — 作为方法论,本文的"上下文工程"思路与 LLM Wiki 的 Query 操作模式相通[raw:历史性新机遇-大镇乡谈:49]
|
||||
|
||||
## 方法论启示
|
||||
|
||||
作者强调面对海量政策信息的核心方法不是做信息增量,而是"熵减"——把握核心根本减少无序[raw:历史性新机遇-大镇乡谈:43]。具体操作:建立框架 → 输入 AI → 基于框架分析新政策,即"上下文工程"[raw:历史性新机遇-大镇乡谈:49]。这与 LLM Wiki 的 Query 操作(qmd 搜索 → 综合回答)思路一致。
|
||||
|
||||
## 来源
|
||||
|
||||
> **溯源规则**:所有数字/百分比/具体结论必须标注 `[raw:{文件名}:{行号}]` 格式。
|
||||
|
||||
- [[历史性新机遇-大镇乡谈]] — 知识星球原文,约 9000 字,OCR 识别于图片
|
||||
@@ -23,12 +23,19 @@ aliases:
|
||||
## 基本信息
|
||||
|
||||
| 属性 | 值 |
|
||||
|
||||
|
|
||||
|
||||
------|
|
||||
|
||||
-----|
|
||||
|
||||
| 作者 | [[李谨伯]] |
|
||||
|
||||
| 出版时间 | 2013年 |
|
||||
|
||||
| 类型 | 道家修炼、养生、内丹 |
|
||||
|
||||
| 结构 | 七编 + 附录(65个章节) |
|
||||
|
||||
## 内容体系
|
||||
|
||||
+56
-7
@@ -65,18 +65,21 @@ relations:
|
||||
### 理论佐证
|
||||
|
||||
#### ⭐⭐⭐ 理论1:认知灵活性理论 (Cognitive Flexibility Theory, CFT)
|
||||
|
||||
- **作者/年代**:Spiro, Coulson, Feltovich & Anderson (1988); 深化于 Spiro et al. (1992) *Cognitive Flexibility and Hypertext*
|
||||
- **核心命题**:高级知识的本质特征是**多维、非线性、情境依赖**;单一线性路径会导致"知识僵化"(inert knowledge),无法迁移。教学应提供**多维非线性表征**(multiple representations, multiple pathways)。
|
||||
- **佐证作用**:直接为"网状→线性→网状"的两阶段提供理论支持——第一次转换是不可避免的损失(线性化的代价),第二次转换必须通过非线性教学设计来弥补。
|
||||
- **DOI**:Spiro et al. (1992) 引文见 *Educational Researcher* 21(5): 24-52
|
||||
|
||||
#### ⭐⭐⭐ 理论2:布鲁纳学科结构主义 (Bruner, 1960)
|
||||
|
||||
- **作者/年代**:Jerome Bruner (1960) *The Process of Education*
|
||||
- **核心命题**:"教一门学科,不是教它的'事实',而是教它的**基本结构**(structure)"——结构是"缩减的、稳定的、连贯的、可教的"。
|
||||
- **佐证作用**:为第一次转换(网→线)提供方法论——**结构即"切线性"策略**:从老师的网状知识中切出最稳定、最有迁移力的骨架。
|
||||
- **影响**:成为后来 STEM 课程设计的核心理论基础
|
||||
|
||||
#### ⭐⭐ 理论3:概念转变理论 (Conceptual Change Theory)
|
||||
|
||||
- **代表作者**:Posner, Strike, Hewson & Gertzog (1982) "Accommodation of a scientific conception: Toward a theory of conceptual change"
|
||||
- **核心命题**:学习不是新信息叠加在旧知识上,而是**已有认知结构的重组**——需要让学生对原有概念产生"不满"(dissatisfaction)。
|
||||
- **佐证作用**:支持第二次转换(线性课程 → 学生新网)——学生不是装新知识,是重建认知结构。
|
||||
@@ -85,12 +88,14 @@ relations:
|
||||
### 实证佐证
|
||||
|
||||
#### ⭐⭐⭐ 关键meta:概念图与知识结构化研究
|
||||
|
||||
- **Novak & Gowin (1984)** *Learning How to Learn*
|
||||
- **核心发现**:用概念图(concept maps)测得学生的知识结构化程度,与长期学习效果、迁移能力显著相关
|
||||
- **数据**:跨学科研究显示结构化知识的学生在新情境中的迁移测试得分高出 **0.5-0.8 SD**
|
||||
- **佐证作用**:实证支持"网状重建"是衡量学习效果的关键指标
|
||||
|
||||
#### ⭐⭐ 实证:领域专家vs新手研究
|
||||
|
||||
- **Chi, Feltovich & Glaser (1981)** "Categorization and Representation of Physics Problems by Experts and Novices"
|
||||
- **核心发现**:专家的知识是**层级化、深层特征、网络化**的;新手是**表面特征、扁平化、孤立**的
|
||||
- **佐证作用**:支持"老师的网vs学生的网"是客观存在的结构差异,而非比喻
|
||||
@@ -113,19 +118,22 @@ relations:
|
||||
### 理论佐证
|
||||
|
||||
#### ⭐⭐⭐ 理论1:布鲁姆认知目标分类学 (Bloom's Taxonomy)
|
||||
|
||||
- **原版**:Bloom (1956) *Taxonomy of Educational Objectives: The Classification of Educational Goals*
|
||||
- **修订版**:Anderson & Krathwohl (2001) *A Taxonomy for Learning, Teaching, and Assessing*
|
||||
- **核心命题**:认知目标分为6级(**记忆 → 理解 → 应用 → 分析 → 评价 → 创造**)——知识本身处于最低层"记忆",但"应用以上"全部是思维活动。
|
||||
- **关键洞察**:修订版最关键变化是把"知识"和"认知过程"作为**两维正交**——同一个知识点(知识维)可以在不同思维层(认知过程维)被处理。
|
||||
- **佐证作用**:直接支持"知识与思维伴生"——不是教不教思维的问题,而是同一个知识内容,**思维训练的层级决定了教学的真正层次**。
|
||||
- **在线资源**:Vanderbilt CIRCE - https://cft.vanderbilt.edu/guides-sub-pages/blooms-taxonomy/
|
||||
- **在线资源**:Vanderbilt CIRCE - <https://cft.vanderbilt.edu/guides-sub-pages/blooms-taxonomy/>
|
||||
|
||||
#### ⭐⭐⭐ 理论2:SOLO分类法 (Structure of the Observed Learning Outcome)
|
||||
|
||||
- **作者/年代**:Biggs & Collis (1982) *Evaluating the Quality of Learning: The SOLO Taxonomy*
|
||||
- **核心命题**:学习成果按思维结构复杂度分5级:**前结构 → 单点结构 → 多点结构 → 关联结构 → 抽象拓展结构**。后两级是高阶思维。
|
||||
- **佐证作用**:和Bloom互补——SOLO关注"思维结构",Bloom关注"思维过程",都支持知识与思维不可分。
|
||||
|
||||
#### ⭐⭐⭐ 理论3:为理解而教 (Teaching for Understanding, TfU)
|
||||
|
||||
- **作者**:Harvard Project Zero — Gardner, Wiske, Perkins 等
|
||||
- **代表文献**:Blythe & Associates (1998) *The Teaching for Understanding Guide*
|
||||
- **核心命题**:理解必须通过"**生成性主题 + 理解目标 + 持续评估 + 表现性任务**"四要素实现——理解不是"是否学过",是"能否在新情境中**做出来**"。
|
||||
@@ -133,6 +141,7 @@ relations:
|
||||
- **关键区分**:**Inert knowledge**(惰性知识,死知识)vs **Flexible knowledge**(弹性知识,能迁移的)——这是"教知识但没教思维"的最严重后果。
|
||||
|
||||
#### ⭐⭐ 理论4:21世纪学习框架 (P21 Framework)
|
||||
|
||||
- **来源**:Partnership for 21st Century Skills (P21), 后续由ATC21S项目深化
|
||||
- **核心命题**:4C框架——**Critical Thinking, Communication, Collaboration, Creativity**
|
||||
- **关键问题**:4C不应作为单独课程("批判性思维课"),而应**嵌入学科教学**
|
||||
@@ -141,15 +150,17 @@ relations:
|
||||
### 实证佐证
|
||||
|
||||
#### ⭐⭐⭐ 关键研究:Hewlett基金会深度学习项目 (2002-2012)
|
||||
|
||||
- **代表文献**:National Research Council (2012) *Education for Life and Work: Developing Transferable Knowledge and Skills in the 21st Century*
|
||||
- **核心发现**:跨学科深度学习(deep learning)项目追踪研究——**学生深度学习参与度每提高1SD,未来大学/职业表现提高0.5-0.7SD**
|
||||
- **关键洞察**:单纯的"知识灌输"对未来表现的预测力**几乎为零**;思维过程参与度是关键预测变量
|
||||
- **URL**:https://nap.nationalacademies.org/catalog/13398
|
||||
- **URL**:<https://nap.nationalacademies.org/catalog/13398>
|
||||
|
||||
#### ⭐⭐ PISA高阶思维评估
|
||||
|
||||
- **OECD PISA 2012, 2018, 2022**:将"问题解决"和"创造性思维"作为专项评估
|
||||
- **核心发现**:高阶思维表现与国家教育系统的**形成性评估使用率**显著相关(r≈0.4-0.6),与"知识量"几乎无关
|
||||
- **URL**:https://www.oecd.org/pisa/
|
||||
- **URL**:<https://www.oecd.org/pisa/>
|
||||
|
||||
### 实践案例
|
||||
|
||||
@@ -170,11 +181,13 @@ relations:
|
||||
### 理论佐证
|
||||
|
||||
#### ⭐⭐⭐ 理论1:隐性课程理论 (Hidden Curriculum)
|
||||
|
||||
- **奠基人**:Philip W. Jackson (1968) *Life in Classrooms*
|
||||
- **核心命题**:课堂除了"显性课程"(explicit curriculum),还存在**隐性课程**——通过师生互动、空间安排、时间分配、奖惩机制等潜移默化传递的规范、价值观、思维方式。
|
||||
- **关键贡献**:Jackson发现学生从课堂获得的内容中,**相当部分来自隐性课程**而非正式教学内容
|
||||
|
||||
#### ⭐⭐⭐ 理论2:Eisner 三种课程 (Eisner, 1979)
|
||||
|
||||
- **代表文献**:Eisner, E. W. (1979) "The Educational Imagination" 中明确区分三种课程
|
||||
- **核心命题**:
|
||||
- **显性课程 (Explicit Curriculum)**:写在课标里的、明确教的内容
|
||||
@@ -184,6 +197,7 @@ relations:
|
||||
- **国内呼应**:吴康宁《教育社会学》对隐性课程的中国本土化研究
|
||||
|
||||
#### ⭐⭐⭐ 理论3:Argyris 理论-实践区 (Theory-in-Use vs Espoused Theory)
|
||||
|
||||
- **代表文献**:Argyris & Schön (1974) *Theory in Practice*
|
||||
- **核心命题**:组织/个人声称的理论(Espoused Theory)vs 实际使用的理论(Theory-in-Use)**几乎总是不一致**。隐性课程/暗线就是 Theory-in-Use 的教学化表现。
|
||||
- **佐证作用**:解释了为什么"暗线"如此强大——它是教师**真正在做的事**,不是教师**说自己做的事**
|
||||
@@ -191,16 +205,19 @@ relations:
|
||||
### 实证佐证
|
||||
|
||||
#### ⭐⭐⭐ 关键研究:医学隐性课程与专业素养形成
|
||||
|
||||
- **代表文献**:Hafferty, F. W. (1998) "Beyond curriculum reform: confronting medicine's hidden curriculum"
|
||||
- **核心发现**:医学专业精神(professionalism)、对病人的态度、伦理判断,**主要不是来自正式课程,而是来自实习期 (clerkship) 的隐性课程**。Hafferty的经典论断:"医学院教学生医学知识,但**社会化**他们成为医生。"
|
||||
- **URL**:https://journals.lww.com/academicmedicine/Abstract/1998/04000/Beyond_curriculum_reform__confronting.13.aspx
|
||||
- **URL**:<https://journals.lww.com/academicmedicine/Abstract/1998/04000/Beyond_curriculum_reform__confronting.13.aspx>
|
||||
- **后续研究**:Hafferty & Franks (1994) "The hidden curriculum, ethics teaching, and the structure of medical education"
|
||||
|
||||
#### ⭐⭐ 实证:临床推理的隐性获取
|
||||
|
||||
- **Bordage (1994)** 论证:医学专家的诊断模式(脚本知识、模式识别)**绝大多数是在非正式临床经验中隐性习得**
|
||||
- **佐证作用**:支持暗线(隐性课程)是能力形成的主要通道
|
||||
|
||||
#### ⭐⭐ 实证:工程教育中的专业认同
|
||||
|
||||
- **Lucena, J. C. (2000)** "Bashing the soft stuff: Engineering culture, hidden curriculum, and the engineer's responsibility"
|
||||
- **核心发现**:美国工程教育中的"工程师是什么样"几乎全部通过隐性课程传递——做项目的姿势比学的内容更塑造人
|
||||
|
||||
@@ -223,6 +240,7 @@ relations:
|
||||
### 理论佐证
|
||||
|
||||
#### ⭐⭐⭐ 理论1:Sweller 认知负荷理论 (Cognitive Load Theory, CLT)
|
||||
|
||||
- **奠基文献**:Sweller (1988) "Cognitive load during problem solving: Effects on learning"
|
||||
- **关键著作**:Sweller, van Merrienboer & Paas (1998) "Cognitive Architecture and Instructional Design"
|
||||
- **核心命题**:工作记忆容量极其有限(Miller 1956 的 7±2,近年Cowan 2001 修正为 4±1)。三类负荷:
|
||||
@@ -233,12 +251,14 @@ relations:
|
||||
- **后续发展**:Sweller 等 (2019) 提出 CLT 第二波 (Cognitive Load Theory in Practice)
|
||||
|
||||
#### ⭐⭐⭐ 理论2:Mayer 多媒体学习认知理论 (Cognitive Theory of Multimedia Learning, CTML)
|
||||
|
||||
- **代表著作**:Mayer, R. E. (2001, 2009, 2014) *Multimedia Learning* (三版)
|
||||
- **核心命题**:人类有**两个独立通道**(听觉/语言 + 视觉/图像),每个通道容量有限;有效教学应**协调两个通道**(双编码),避免单通道过载
|
||||
- **关键原则**:减少外在加工(coherence principle, signaling principle, redundancy principle, contiguity principle 等 12 项)
|
||||
- **佐证作用**:从多媒体设计角度支持"注意力资源"概念——设计不当的多媒体就是在**浪费**最稀缺的资源
|
||||
|
||||
#### ⭐⭐⭐ 理论3:Chi et al. ICAP 框架 (Interactive-Constructive-Active-Passive)
|
||||
|
||||
- **代表文献**:Chi, M. T. H. (2009) "Active-Constructive-Interactive: A Unified Framework for Differentiating Types of Learning Activities"
|
||||
- **核心命题**:学习活动按认知参与度分4级:
|
||||
- **被动 (Passive)**:听、看
|
||||
@@ -247,15 +267,17 @@ relations:
|
||||
- **互动 (Interactive)**:同伴/教师对话
|
||||
- **关键数据**:Chi 引用多项 meta 分析——**学习效果 IC > C > A > P**,**互动比独立建构更有效**(协同效应)
|
||||
- **佐证作用**:**直接支持 40-50% 主动思考 + 25-35% 互动 + 20-30% 讲授的比例主张**——这是 ICAP 理论指导的**理想分配**
|
||||
- **URL**:https://www.researchgate.net/publication/222539903
|
||||
- **URL**:<https://www.researchgate.net/publication/222539903>
|
||||
|
||||
#### ⭐⭐ 理论4:Kahneman 注意力资源理论
|
||||
|
||||
- **代表著作**:Kahneman (1973) *Attention and Effort* —— 注意力是有限容量资源
|
||||
- **后续**:双系统理论 (Kahneman 2011 *Thinking, Fast and Slow*)
|
||||
|
||||
### 实证佐证
|
||||
|
||||
#### ⭐⭐⭐ 经典meta #1:Freeman et al. 2014 PNAS 主动学习
|
||||
|
||||
- **完整引用**:Freeman, A., Eddy, S. L., McDonough, M., Smith, M. K., Okoroafor, N., Jordt, H., & Wenderoth, M. P. (2014). "Active learning increases student performance in science, engineering, and mathematics." *PNAS*, 111(23), 8410-8415.
|
||||
- **DOI**:10.1073/pnas.1319030111
|
||||
- **关键数据**(这是被引用最广的高等教育实证之一):
|
||||
@@ -266,6 +288,7 @@ relations:
|
||||
- **佐证作用**:**直接、强力地支持"被动接收"是低效的核心原因**
|
||||
|
||||
#### ⭐⭐⭐ 经典meta #2:Hake 1998 AJP 互动教学
|
||||
|
||||
- **完整引用**:Hake, R. R. (1998). "Interactive-engagement versus traditional instruction: A six-thousand-student survey of introductory physics courses." *American Journal of Physics*, 66(1), 64-74.
|
||||
- **DOI**:10.1119/1.18809
|
||||
- **关键数据**:
|
||||
@@ -277,11 +300,13 @@ relations:
|
||||
- **佐证作用**:物理学界最有影响力的教学研究之一,证明"讲授→互动"是量级变化
|
||||
|
||||
#### ⭐⭐⭐ 经典meta #3:Prince 2004 PBL综述
|
||||
|
||||
- **完整引用**:Prince, M. (2004). "Does active learning work? A review of the research." *Journal of Engineering Education*, 93(3), 223-231.
|
||||
- **核心数据**:PBL 教学在工程教育中显著提升学习效果、应用能力、保留率
|
||||
- **佐证作用**:跨学科证实主动学习的普适性
|
||||
|
||||
#### ⭐⭐ 经典meta #4:Hattie 可见的学习 (Visible Learning)
|
||||
|
||||
- **代表著作**:Hattie, J. (2009, 2012) *Visible Learning* / *Visible Learning for Teachers*
|
||||
- **关键数据**:综合 800+ meta-analyses 的 50,000+ 研究
|
||||
- **教师讲授效应量 d = 0.42**
|
||||
@@ -313,17 +338,20 @@ relations:
|
||||
### 理论佐证
|
||||
|
||||
#### ⭐⭐⭐ 理论1:维果茨基 最近发展区 (Zone of Proximal Development, ZPD)
|
||||
|
||||
- **代表文献**:Vygotsky, L. S. (1978) *Mind in Society*(1934 俄文版英译)
|
||||
- **核心命题**:学习者存在两个水平——**现有水平**(能独立完成)和**潜在水平**(在帮助下能完成),二者之间是 ZPD。**最佳学习发生在 ZPD 内**。
|
||||
- **佐证作用**:直接对应"认知负荷适中"——太浅(<ZPD)= 无聊;太深(>ZPD)= 崩溃;正好在 ZPD 内 = 适度挑战
|
||||
|
||||
#### ⭐⭐⭐ 理论2:Csikszentmihalyi 心流 (Flow)
|
||||
|
||||
- **代表文献**:Csikszentmihalyi, M. (1990) *Flow: The Psychology of Optimal Experience*
|
||||
- **核心命题**:心流 = 技能-挑战平衡 + 明确目标 + 即时反馈 + 行动-意识融合 + 专注当下 + 自我意识消失
|
||||
- **佐证作用**:支持"体验感的黄金状态"——心流通道(flow channel)是挑战与技能的甜蜜点
|
||||
- **图示**:8种心理状态象限(焦虑/淡漠/厌倦/掌控/担忧/冷漠/放松/心流)
|
||||
|
||||
#### ⭐⭐⭐ 理论3:Deci & Ryan 自我决定理论 (Self-Determination Theory, SDT)
|
||||
|
||||
- **奠基文献**:Deci, E. L., & Ryan, R. M. (1985) *Intrinsic Motivation and Self-Determination in Human Behavior*
|
||||
- **核心命题**:内在动机需要三种基本心理需求满足:
|
||||
- **自主性 (Autonomy)**:行为来自自我决定
|
||||
@@ -335,6 +363,7 @@ relations:
|
||||
- 关系性 + 心流的"自我意识消失" → **情绪参与**(与同伴/教师的安全连接)
|
||||
|
||||
#### ⭐⭐ 理论4:Yerkes-Dodson 定律
|
||||
|
||||
- **代表文献**:Yerkes, R. M., & Dodson, J. D. (1908) "The relation of strength of stimulus to rapidity of habit-formation"
|
||||
- **核心命题**:唤醒水平(arousal)与学习效果呈**倒U曲线**——过低/过高都降低效果
|
||||
- **佐证作用**:补充"认知负荷适中"——压力过低和过高都损害学习
|
||||
@@ -342,6 +371,7 @@ relations:
|
||||
### 实证佐证
|
||||
|
||||
#### ⭐⭐⭐ 关键meta:SDT在教育中的应用
|
||||
|
||||
- **代表综述**:Deci, E. L., & Ryan, R. M. (2008). "Self-determination theory and the role of basic psychological needs in sustaining well-being and facilitating performance." *American Psychologist*
|
||||
- **核心数据**:自主支持型教学(autonomy-supportive teaching)与学生:
|
||||
- 学习投入度 r ≈ 0.45
|
||||
@@ -350,11 +380,13 @@ relations:
|
||||
- **佐证作用**:支持"意义感"不是软指标,是预测学业成功的硬指标
|
||||
|
||||
#### ⭐⭐ 心流与学习
|
||||
|
||||
- **Shernoff, D. J., et al. (2003)** "Student engagement in high school classrooms from the perspective of flow theory"
|
||||
- **核心发现**:心流状态与学业成就、创造力、长期投入度显著正相关
|
||||
- **后续**:多项课堂心流研究证实
|
||||
|
||||
#### ⭐⭐ 情绪与学习 meta
|
||||
|
||||
- **Pekrun, R. (2006)** "The control-value theory of achievement emotions"
|
||||
- **核心发现**:学业情绪(achievement emotions)——享受、希望、骄傲 vs 焦虑、厌倦、失望——对学习的影响**与传统认知因素相当**(效应量在 d=0.3-0.6 范围)
|
||||
|
||||
@@ -378,6 +410,7 @@ relations:
|
||||
### 理论佐证
|
||||
|
||||
#### ⭐⭐⭐ 理论1:Kolb 体验学习圈 (Experiential Learning Cycle)
|
||||
|
||||
- **奠基文献**:Kolb, D. A. (1984) *Experiential Learning: Experience as the Source of Learning and Development*
|
||||
- **核心命题**:学习是**4阶段循环**:
|
||||
1. **具体体验 (Concrete Experience, CE)**:做事、经历
|
||||
@@ -389,17 +422,20 @@ relations:
|
||||
- **批评**:Kolb 风格分类有争议(个体差异),但**圈循环本身**被广泛接受
|
||||
|
||||
#### ⭐⭐⭐ 理论2:Dewey 反思性思维 (Reflective Thinking)
|
||||
|
||||
- **奠基文献**:Dewey, J. (1933) *How We Think: A Restatement of the Relation of Reflective Thinking to the Educative Process*
|
||||
- **核心命题**:反思不是"回想",是"**有意识的、持续的、谨慎的**对信念和知识基础进行检验"——包含 5 阶段:暗示→问题→假设→推理→检验
|
||||
- **佐证作用**:补充 Kolb 的"反思观察"——反思必须有质量,不是流水账
|
||||
|
||||
#### ⭐⭐ 理论3:Ericsson 刻意练习 (Deliberate Practice)
|
||||
|
||||
- **奠基文献**:Ericsson, K. A., Krampe, R. T., & Tesch-Römer, C. (1993) "The role of deliberate practice in the acquisition of expert performance"
|
||||
- **核心命题**:高水平表现来自**有目的的、跨越舒适区的、含即时反馈的持续练习**——不是简单重复
|
||||
- **佐证作用**:补充"能力固化"——不是时间积累,是刻意练习
|
||||
- **批评**:Macnamara et al. (2014) 修正——刻意练习的效应量比Ericsson原估计小
|
||||
|
||||
#### ⭐⭐ 理论4:Schön 反思性实践者 (Reflective Practitioner)
|
||||
|
||||
- **代表文献**:Schön, D. A. (1983) *The Reflective Practitioner*
|
||||
- **核心命题**:专业人员的知识包含两类——**技术知识** (knowing-in-action) 和**反思知识** (reflection-in-action, reflection-on-action)
|
||||
- **佐证作用**:支持"反思→抽象"——专业知识主要来自行动中反思,不是课本
|
||||
@@ -407,6 +443,7 @@ relations:
|
||||
### 实证佐证
|
||||
|
||||
#### ⭐⭐⭐ 关键研究:反思写作对学习的影响
|
||||
|
||||
- **Hatcher & Bringle (1996)** 综述:反思活动(reflective writing, journals, portfolios)显著提升:
|
||||
- 学业表现 d ≈ 0.30-0.60
|
||||
- 自我觉察
|
||||
@@ -414,15 +451,18 @@ relations:
|
||||
- **后续研究**:Moon (2004) *Reflection and Employability*
|
||||
|
||||
#### ⭐⭐ 医学教育反思日志
|
||||
|
||||
- **Wald et al. (2012)** "Reflective practice and stress in pediatric residents"
|
||||
- **核心发现**:系统化反思日志与减压、专业认同形成、临床判断改善显著相关
|
||||
|
||||
#### ⭐⭐ 工程教育 CDIO
|
||||
|
||||
- **CDIO Initiative (2000-)**:Conceive-Design-Implement-Operate 教学模式在全球100+院校采用
|
||||
- **核心特征**:**做中学** (Learn-by-Doing) + 系统反思
|
||||
- **效果评估**:CDIO 学生工程设计能力 + 团队协作 + 沟通都显著优于传统
|
||||
|
||||
#### ⭐⭐ 教师反思性教学
|
||||
|
||||
- **Korthagen, F. A. J. (2001)** *Linking Practice and Theory: The Pedagogy of Realistic Teacher Education*
|
||||
- **核心**:ACT 模型 (Action-Competence-Teacher) 将教学反思与能力生成整合
|
||||
|
||||
@@ -447,6 +487,7 @@ relations:
|
||||
### 理论佐证
|
||||
|
||||
#### ⭐⭐⭐ 理论1:诱惑性细节效应 (Seductive Details Effect)
|
||||
|
||||
- **奠基文献**:Harp, S. F., & Mayer, R. E. (1998). "How seductive details do their damage: A theory of cognitive interest in science learning." *Journal of Educational Psychology*, 90(3), 414-434.
|
||||
- **DOI**:10.1037/0022-0663.90.3.414
|
||||
- **核心命题**:多媒体/教材中的**有趣但与学习目标无关**的细节(幽默、故事、装饰、动画)会:
|
||||
@@ -457,22 +498,26 @@ relations:
|
||||
- **佐证作用**:**直接、实验性地**支持"娱乐化教学损害学习"
|
||||
|
||||
#### ⭐⭐ 理论2:表演性教学批判 (Performative Pedagogy)
|
||||
|
||||
- **代表文献**:Giroux, H. A. (2000) *Stealing Innocence: Youth, Corporate Power, and the Politics of Culture*; McWilliam, E. (2002) "Against Performative Pedagogy"
|
||||
- **核心命题**:当教师把"表演"(表演性、娱乐性、可见度)作为目的,**展示本身压倒学习**——教育被"迪士尼化" (Disneyization of education)
|
||||
- **佐证作用**:补充 Harp & Mayer 的认知视角——增加**社会文化批判**视角
|
||||
|
||||
#### ⭐⭐ 理论3:Alfie Kohn 批判
|
||||
|
||||
- **代表著作**:Kohn, A. (1993) *Punished by Rewards*; Kohn, A. (2006) *The Homework Myth*
|
||||
- **核心命题**:"伪参与" (pseudo-engagement) 比没有参与还糟糕——制造"已学"假象,**损害真正的学习态度和能力发展**
|
||||
- **佐证作用**:教育哲学层面的批判
|
||||
|
||||
#### ⭐⭐ 理论4:Edutainment 批评
|
||||
|
||||
- **Druin, A. (1999)** 等:"Edutainment" 一词在1990年代兴起,批判者认为:把学习包装成娱乐**损害深层学习**
|
||||
- **支持研究**:Kraiger, K., et al. 大量研究表明脱离目标的游戏化/娱乐化设计**没有显著学习效果**
|
||||
|
||||
### 实证佐证
|
||||
|
||||
#### ⭐⭐⭐ 关键实验 #1:Harp & Mayer 1998
|
||||
|
||||
- 见上。**关键数据**:
|
||||
- 实验组(加入有趣但无关的"诱惑性细节")vs 控制组
|
||||
- 学习兴趣:实验组**显著更高**(更爱读)
|
||||
@@ -480,16 +525,20 @@ relations:
|
||||
- **这正是"体验感好但能力没生成"的实验性证明**
|
||||
|
||||
#### ⭐⭐ 关键实验 #2:Mayer & Anderson 1991
|
||||
|
||||
- 重复验证:在文字 + 音乐/装饰元素的教材中,**与目标相关的图片提升学习**,但**与目标无关的装饰图片降低学习**
|
||||
|
||||
#### ⭐⭐ 关键实验 #3:Sanchez & Wiley 2006
|
||||
|
||||
- 重复 Harp & Mayer 范式,确认**有趣但无关细节**对学习有**稳定的负面效应**
|
||||
|
||||
#### ⭐⭐ meta:游戏化学习
|
||||
|
||||
- **Koivisto, J., & Hamari, J. (2019)** "The rise of motivational information systems" - 综述显示**设计良好的游戏化**对学习有正向效果(d ≈ 0.30-0.40),但**设计不良或与目标脱节**的游戏化**没有效果甚至有害**
|
||||
- **Deterding, S. (2011)** 的"游戏化"概念框架强调**支持内在动机**,而非"塞入游戏元素"
|
||||
|
||||
#### ⭐⭐ 实证:Hands-on vs Minds-on
|
||||
|
||||
- **Klahr, D., & Nigam, M. (2004)** "The equivalence of learning paths in early science instruction"
|
||||
- **核心发现**:单纯的动手做(hands-on)**不必然**带来深度学习;**反思+引导的动手做**(minds-on hands-on)才有效
|
||||
- **典型案例**:学生做了火山实验很开心,但**没学到地壳运动**——经典"娱乐化"教学
|
||||
@@ -588,8 +637,8 @@ relations:
|
||||
|
||||
### 综述与报告
|
||||
|
||||
35. National Research Council. (2012). *Education for Life and Work: Developing Transferable Knowledge and Skills in the 21st Century*. National Academies Press. URL: https://nap.nationalacademies.org/catalog/13398
|
||||
36. OECD. (2012, 2018, 2022). *PISA Results*. URL: https://www.oecd.org/pisa/
|
||||
35. National Research Council. (2012). *Education for Life and Work: Developing Transferable Knowledge and Skills in the 21st Century*. National Academies Press. URL: <https://nap.nationalacademies.org/catalog/13398>
|
||||
36. OECD. (2012, 2018, 2022). *PISA Results*. URL: <https://www.oecd.org/pisa/>
|
||||
37. Deci, E. L., & Ryan, R. M. (2008). Self-determination theory and the role of basic psychological needs in sustaining well-being and facilitating performance. *American Psychologist*, 61(4), 281-302.
|
||||
|
||||
### 国内呼应文献(中文)
|
||||
|
||||
Reference in New Issue
Block a user