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

model-extraction-relu-logits模型提取 ReLU Logits

Agent Skill

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

总安装

783

周安装

32

GitHub Stars

93

下载量

253
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/letta-ai/skills --skill model-extraction-relu-logits

简介

用于查找、检索和筛选相关信息,支持 ReLU Logits 提取任务。

  • 适合根据关键词或任务场景快速定位候选结果。
  • 可结合来源仓库和原始 README 继续核验用法。
  • 安装前建议确认权限范围和维护状态。model-extraction-relu-logits 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 支持 Codex、Claude、Cursor、Gemini CLI;通过 github 安装。

SKILL.md

Model Extraction for ReLU Networks

This skill provides guidance for extracting internal weight matrices from black-box ReLU neural networks using only input-output access.

Problem Understanding

Model extraction tasks typically involve:

  • A black-box neural network that accepts inputs and returns outputs (logits)
  • The goal of recovering internal parameters (weight matrices, biases)
  • No direct access to the network's implementation or internal state

Critical Principle: True Black-Box Treatment

Treat the target network as a genuine black-box. Never rely on implementation details that may change during evaluation:

  • Do not hardcode hidden layer dimensions from example code
  • Do not assume specific random seeds or initialization schemes
  • Do not directly compare extracted weights to "true" weights read from source files
  • The test environment may use completely different parameters than any provided examples

Approach Selection

Understanding ReLU Network Structure

A two-layer ReLU network computes: output = A2 @ ReLU(A1 @ x + b1) + b2

Key properties to exploit:

  1. Piecewise linearity: ReLU networks are piecewise linear functions
  2. Activation boundaries: Each hidden neuron creates a hyperplane boundary where its output transitions from zero to active
  3. Gradient structure: In each linear region, the gradient reveals information about active neurons

Recommended Extraction Strategies

Strategy 1: Critical Point Analysis

ReLU networks have critical points where neurons transition between active/inactive states:

  1. Probe the network systematically to identify transition boundaries
  2. At each boundary, a hyperplane normal corresponds to a row of A1
  3. Collect enough boundaries to reconstruct A1

Strategy 2: Gradient-Based Extraction

For networks where gradients are accessible or can be approximated:

  1. Query gradients at multiple random points
  2. Gradients in a linear region reveal which neurons are active
  3. Use gradient information to identify weight matrix rows

Strategy 3: Activation Pattern Enumeration

Systematically identify which neurons are active in different input regions:

  1. Start from a known point and identify its activation pattern
  2. Search for inputs that cause different neurons to activate
  3. Use the transition points to extract hyperplane parameters

Strategy 4: Optimization-Based Fitting (Fallback)

When mathematically principled methods are insufficient:

  1. Generate diverse input-output pairs from the black-box
  2. Train a surrogate network to match outputs
  3. Critical: Make network capacity adaptive (try multiple hidden dimensions)
  4. Validate by output matching, not parameter comparison

Hidden Dimension Discovery

Since the hidden dimension is unknown, employ detection strategies:

  1. Rank analysis: The output dimension and response complexity bound hidden size
  2. Binary search: Try different hidden sizes and measure reconstruction error
  3. Overcomplete fitting: Use larger hidden dimension than necessary, then identify redundant neurons
  4. Gradient counting: In a fixed input region, count distinct gradient patterns

Verification Strategy

Correct Verification (Functional Equivalence)

# Generate test inputs NOT used during extraction
test_inputs = generate_diverse_inputs(n=1000)

# Compare outputs
original_outputs = [black_box_query(x) for x in test_inputs]
extracted_outputs = [extracted_model(x) for x in test_inputs]

# Check functional equivalence
max_error = max(|original - extracted| for all test points)
assert max_error < tolerance

Incorrect Verification (Avoid These)

  • Comparing extracted weights directly to weights read from source files
  • Using the same inputs for extraction and verification
  • Relying on cosine similarity to "true" parameters
  • Checking only a small number of test points

Common Pitfalls

1. Peeking at Implementation Details

Problem: Reading source code to get the "true" weights or hidden dimension, then validating against them.

Why it fails: Test environments often use different parameters (different seeds, dimensions, scales).

Solution: Treat extraction as if source code doesn't exist. Validate only through output comparison.

2. Hardcoding Network Architecture

Problem: Assuming hidden dimension is fixed (e.g., n_neurons=20).

Why it fails: The actual network may have a different architecture.

Solution: Either detect hidden dimension empirically or design extraction to work with unknown dimensions.

3. Non-Unique Solutions

Problem: Many weight configurations produce identical input-output behavior.

Why it fails: Optimization may find a valid equivalent representation, not the original weights.

Solution: If the task requires recovering *specific* original weights (not just functional equivalents), use mathematically principled extraction that exploits ReLU structure.

4. Insufficient Test Coverage

Problem: Verifying on a few hand-picked inputs.

Why it fails: The extracted model may fail on untested input regions.

Solution: Use comprehensive random testing across the input domain, including edge cases.

5. Numerical Precision Issues

Problem: Accumulated floating-point errors cause extraction to fail.

Solution: Use numerically stable algorithms, appropriate tolerances, and verify with realistic precision expectations.

Implementation Checklist

Before declaring success, verify:

  • No implementation details (seeds, dimensions) were read from source files
  • Hidden dimension was detected or handled adaptively
  • Verification uses only input-output comparisons
  • Verification inputs are independent from extraction inputs
  • Sufficient test coverage (hundreds to thousands of points)
  • Error tolerance is appropriate for the task requirements
  • The extracted model works as a functional replacement

When Standard Approaches Fail

If initial extraction attempts fail:

  1. Increase probe density: More input-output pairs may be needed
  2. Try multiple hidden dimensions: The assumed size may be wrong
  3. Check for numerical issues: Scaling, precision, or conditioning problems
  4. Verify the network structure: Ensure assumptions about architecture (two-layer, ReLU) are correct
  5. Consider alternative representations: Some equivalent parameterizations may be easier to extract

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

24.66%
按下载量换算62

Gemini CLI

23.89%
按下载量换算60

Codex

18.01%
按下载量换算46

Antigravity

10.85%
按下载量换算27

OpenCode

7.5%
按下载量换算19

windsurf

3.36%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

通过

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills