Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计通过

bn-fit-modifybn 适合修改

Agent Skill

bn-fit-modify 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

824

周安装

33

GitHub Stars

93

下载量

267
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:bn-fit-modify(bn 适合修改)
来源仓库:https://github.com/letta-ai/skills
仓库路径:skills/bn-fit-modify
安装命令:
npx skills add https://github.com/letta-ai/skills --skill bn-fit-modify
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/letta-ai/skills --skill bn-fit-modify

简介

bn-fit-modify 提供贝叶斯网络结构学习与参数估计指导。

  • 适用于 Codex、Claude、Cursor、Gemini CLI,支持因果干预与采样操作。
  • 涵盖 pgmpy 等常用库的使用陷阱与解决方案。
  • 使用前请先探索数据特征并选择合适算法策略。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Bayesian Network Fitting and Modification

Overview

This skill provides guidance for tasks involving Bayesian Network structure recovery, parameter estimation, causal intervention, and sampling. It covers common pitfalls when using libraries like pgmpy for Linear Gaussian Bayesian Networks and other BN types.

Workflow

Phase 1: Structure Learning

When recovering a DAG structure from observational data:

  1. Explore the data first - Understand variable types, distributions, and potential relationships before applying algorithms
  2. Choose appropriate algorithms based on data size:

- For large datasets, constraint-based methods (PC algorithm) may cause memory issues - Score-based methods (HillClimbSearch) can also be memory-intensive - Consider correlation-based greedy approaches for very large datasets

  1. Apply domain constraints - If constraints are given (e.g., "variable U has no parents", "exactly N edges"), incorporate them into the search
  2. Handle ambiguous edges - When multiple edges have similar scores, follow any specified ordering rules (e.g., alphabetical) for deterministic results

Phase 2: Parameter Estimation

After structure is determined:

  1. Use library methods for fitting - Always prefer model.fit(data) over manual parameter computation
  2. Verify fitted parameters - Print and inspect CPD parameters after fitting: for cpd in model.get_cpds(): print(cpd)
  3. For Linear Gaussian BNs, verify:

- Intercept values - Coefficient values for each parent - Variance estimates

  1. Compare against expected values if test cases provide them

Phase 3: Intervention (do-calculus)

When performing causal interventions:

  1. Understand intervention semantics: do(X=x) means:

- Remove ALL incoming edges to X (X no longer depends on its parents) - Fix X to the specified value x - Keep all outgoing edges from X (X still influences its children)

  1. Create the interventional DAG correctly: # Remove incoming edges to intervention variable intervened_dag = original_dag.copy() for parent in list(intervened_dag.predecessors(intervention_var)): intervened_dag.remove_edge(parent, intervention_var)
  2. Re-fit or transfer parameters appropriately:

- Parameters for non-intervened variables remain the same - The intervened variable becomes a constant (delta distribution)

Phase 4: Sampling from Intervened Network

Critical: Use library methods, not custom implementations

  1. Prefer built-in sampling methods: # If library supports intervention in sampling samples = model.simulate(n_samples, do={intervention_var: value})
  2. If manual sampling is necessary, ensure correct handling:

- Sample in topological order of the DAG - For the intervened variable, use an array of the fixed value (not a scalar): # Correct samples[intervention_var] = np.full(n_samples, intervention_value) # Incorrect - causes broadcasting issues samples[intervention_var] = intervention_value - For downstream variables, use the fixed intervention value correctly in conditional distributions

  1. Verify array dimensions at each step to catch broadcasting errors early

Verification Strategies

Incremental Testing

Test each phase independently before proceeding:

  1. Structure verification: Compare learned edges against expected structure
  2. Parameter verification: Compare fitted parameters against expected values
  3. Intervention verification: Confirm correct edges removed and added
  4. Sampling verification: Check sample statistics match expected distributions

Statistical Validation

For final samples:

  1. Compute mean and variance of sampled values
  2. Compare against theoretical expectations from the fitted model
  3. Use statistical tests (e.g., chi-square, KS test) to validate distributions
  4. A p-value of 0.0 indicates fundamental errors in sampling logic

Debugging Checklist

When tests fail:

  • Are fitted parameters correct? Print and verify.
  • Is the intervention DAG correct? Visualize or print edges.
  • Are array dimensions consistent throughout sampling?
  • Is the intervention value propagating correctly to downstream variables?
  • Are library methods being used where available?

Common Pitfalls

1. Custom Sampling Instead of Library Methods

Problem: Writing custom sampling functions when library methods exist.

Why it fails: Custom implementations often have subtle bugs in:

  • Array dimension handling
  • Conditional distribution computation
  • Topological ordering

Solution: Always check if the library provides sampling with intervention support before implementing custom code.

2. Scalar vs Array for Fixed Values

Problem: Setting intervention variable to a scalar instead of an array.

# Wrong
samples['Y'] = 0.0

# Correct
samples['Y'] = np.zeros(n_samples)

Why it fails: Causes broadcasting issues when used as parent values in conditional distributions.

3. Incorrect Intervention Semantics

Problem: Misunderstanding what do(X=x) means in causal inference.

Common mistakes:

  • Keeping incoming edges to X
  • Removing outgoing edges from X
  • Not fixing X to the exact value

Solution: Review Pearl's do-calculus - intervention removes causes (parents) but preserves effects (children).

4. Not Verifying Intermediate Results

Problem: Running the full pipeline and only checking final outputs.

Why it fails: Errors compound through the pipeline; early errors produce misleading final results.

Solution: Verify structure, then parameters, then intervention, then sampling - each step independently.

5. Memory Issues with Large Data

Problem: OOM errors with PC or HillClimbSearch algorithms on large datasets.

Solutions:

  • Subsample the data for structure learning
  • Use simpler correlation-based approaches
  • Increase available memory
  • Use algorithms with lower memory footprint

6. Ignoring Numerical Precision

Problem: Floating-point precision issues in parameter estimation and sampling.

Solution:

  • Use appropriate tolerances in comparisons
  • Check for near-zero variances that could cause division issues
  • Validate that covariance matrices are positive definite

Code Organization

  • Maintain a single script and iterate on it rather than creating multiple versions (v1, v2, v3)
  • Use functions to separate structure learning, parameter fitting, intervention, and sampling
  • Add assertions or checks after each major step
  • Clean up intermediate files after successful completion

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

30.28%
按下载量换算81

Gemini CLI

22.48%
按下载量换算60

Antigravity

19.61%
按下载量换算52

windsurf

12.89%
按下载量换算34

OpenCode

8.64%
按下载量换算23

Codex

3.66%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills