Token导航 LogoToken导航TokenDH.com
前端设计执行命令github未标认证来源可访问clear审计通过

rstan-to-pystanrstan TO pystan 命令行

Agent Skill

rstan-to-pystan 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

768

周安装

32

GitHub Stars

93

下载量

256
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/letta-ai/skills --skill rstan-to-pystan

简介

rstan-to-pystan 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 适用于代码协作、仓库管理和 Issue 处理等开发相关场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

RStan to PyStan Conversion

This skill provides guidance for converting RStan (R interface to Stan) code to PyStan (Python interface to Stan), focusing on the significant API differences between the two libraries.

Key Insight: Stan Model Code is Language-Agnostic

The Stan modeling language itself is identical between RStan and PyStan. The Stan model code (data blocks, parameters, model, generated quantities) can typically be copied directly. The conversion challenge lies in the wrapper code that:

  • Prepares data for the model
  • Calls the sampler with correct parameters
  • Extracts and processes posterior samples

Pre-Conversion Checklist

Before writing any conversion code:

  1. Verify system dependencies for PyStan

- PyStan 3.x requires a C++ compiler (g++ on Linux, clang on macOS) - Install with: apt-get install g++ or equivalent - Missing compiler causes cryptic compilation errors at runtime

  1. Identify PyStan version to target

- PyStan 2.x API mirrors RStan closely - PyStan 3.x has a completely different API (recommended for new projects) - This guide focuses on PyStan 3.x conversion

  1. Read the complete R script before converting

- Identify all hyperparameters used - Note any data transformations - Understand the expected output format

Hyperparameter Mapping (RStan to PyStan 3.x)

Create an explicit mapping table before coding:

RStan ParameterPyStan 3.x EquivalentNotes
iterN/A (see calculation)Total iterations including warmup
warmupnum_warmupNumber of warmup iterations
chainsnum_chainsNumber of MCMC chains
thinN/APyStan 3 does not support thinning directly
seedrandom_seedRandom seed for reproducibility
control=list(adapt_delta=X)N/ANot directly available in PyStan 3
control=list(max_treedepth=X)N/ANot directly available in PyStan 3

Critical calculation for num_samples:

PyStan num_samples = (RStan iter - RStan warmup) / RStan thin

Example: If RStan uses iter=2000, warmup=1000, thin=2:

  • Effective samples = (2000 - 1000) / 2 = 500
  • Use num_samples=500 in PyStan 3

Sample Extraction: Critical API Difference

This is the most common source of errors in conversion.

RStan sample extraction:

# Returns matrix with shape (n_iterations, n_parameters)
samples <- extract(fit)$parameter_name
# For vector parameters, shape is (n_iterations, param_length)

PyStan 3.x sample extraction:

# Returns array with shape (param_length, n_samples) - TRANSPOSED!
samples = fit['parameter_name']
# Single parameters have shape (n_samples,)

Verification approach:

# Always add shape debugging in first version
for param in ['rho', 'beta', 'sigma']:
    print(f"{param} shape: {fit[param].shape}")

Step-by-Step Conversion Process

Step 1: Analyze the RStan Script

  • Extract the Stan model code (between stan() or in separate.stan file)
  • Document all hyperparameters with their values
  • Identify data preparation steps
  • Note the expected output format and calculations

Step 2: Set Up Python Environment

# Verify compiler availability first
import subprocess
result = subprocess.run(['g++', '--version'], capture_output=True)
if result.returncode != 0:
    raise RuntimeError("g++ not found - install C++ compiler first")

# Then install and import
import stan  # PyStan 3.x

Step 3: Translate the Stan Model

  • Copy Stan model code directly (it's language-agnostic)
  • Store as a Python string with proper escaping
  • Verify all data block variables match your Python data preparation

Step 4: Prepare Data Dictionary

# RStan uses list(), PyStan uses dict
# Ensure all variable names match the Stan data block exactly
data = {
    'N': len(y),
    'K': X.shape[1],
    'y': y.tolist(),  # Convert numpy arrays to lists
    'X': X.tolist()
}

Step 5: Build and Sample

# PyStan 3.x pattern
posterior = stan.build(stan_code, data=data)
fit = posterior.sample(
    num_chains=chains,
    num_samples=num_samples,  # Calculated from RStan params
    num_warmup=warmup,
    random_seed=seed
)

Step 6: Extract Results with Shape Verification

# ALWAYS verify shapes before computing statistics
samples = fit['parameter_name']
print(f"Shape: {samples.shape}")  # Debug first

# For posterior means:
# - If shape is (n_samples,): use samples.mean()
# - If shape is (param_dim, n_samples): use samples.mean(axis=1)

Common Pitfalls and Solutions

Pitfall 1: Assuming RStan-like sample shapes

  • Symptom: Getting 1000 values when expecting 3 (or vice versa)
  • Cause: PyStan 3 returns (param_dim, n_samples) not (n_samples, param_dim)
  • Solution: Always check .shape before computing statistics

Pitfall 2: Missing C++ compiler

  • Symptom: Compilation errors when building Stan model
  • Cause: PyStan compiles Stan to C++ at runtime
  • Solution: Install g++ before attempting to run PyStan code

Pitfall 3: Incorrect num_samples calculation

  • Symptom: Different number of posterior samples than expected
  • Cause: Not accounting for thinning in calculation
  • Solution: Use formula: num_samples = (iter - warmup) / thin

Pitfall 4: Data type mismatches

  • Symptom: Stan compilation or runtime errors about data types
  • Cause: NumPy arrays not converted to Python lists
  • Solution: Use .tolist() on numpy arrays in data dictionary

Pitfall 5: Ignoring sampling warnings

  • Symptom: Warnings about Cholesky decomposition, divergences, etc.
  • Cause: Can indicate model issues or poor sampling
  • Solution: While often transient, log warnings and verify results make sense

Verification Strategy

After conversion, verify the following:

  1. Sample counts match expectations expected_samples = (rstan_iter - rstan_warmup) // rstan_thin assert fit['param'].shape[-1] == expected_samples
  2. Parameter dimensions are correct # For a 3-dimensional parameter vector assert fit['beta'].shape[0] == 3
  3. Posterior statistics are reasonable # Compare means, check they're in expected ranges posterior_mean = fit['param'].mean(axis=-1) print(f"Posterior mean: {posterior_mean}")
  4. Output format matches requirements

- Verify JSON/CSV structure - Check key names and data types - Ensure numerical precision is adequate

Minimal Test Pattern

Before full conversion, write a minimal test to understand PyStan's behavior:

import stan

# Simple model to verify API understanding
code = """
data { int N; array[N] real y; }
parameters { real mu; real<lower=0> sigma; }
model { y ~ normal(mu, sigma); }
"""

data = {'N': 10, 'y': [1.0]*10}
posterior = stan.build(code, data=data)
fit = posterior.sample(num_chains=1, num_samples=100)

# Verify you understand the output structure
print(f"mu shape: {fit['mu'].shape}")
print(f"sigma shape: {fit['sigma'].shape}")

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

27.8%
按下载量换算71

Gemini CLI

23.46%
按下载量换算60

Antigravity

16.82%
按下载量换算43

windsurf

12.66%
按下载量换算32

OpenCode

7.8%
按下载量换算20

Codex

3.15%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/letta-ai/skills --skill rstan-to-pystan;npx skills add letta-ai/skills --skill "rstan-to-pystan" 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills