Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问clear审计提醒

pytorch-model-clipytorch model CLI 搜索

Agent Skill

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

总安装

832

周安装

35

GitHub Stars

93

下载量

291
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/letta-ai/skills --skill pytorch-model-cli

简介

用于查找、检索和筛选相关信息,支持关键词或任务场景快速定位结果。

  • 适合在需要根据来源线索定位候选结果时使用,如研究或开发场景。
  • 可结合来源仓库和原始 README 核验具体用法,确保功能匹配需求。
  • 安装方式:通过 npx skills add 从指定 GitHub 仓库添加。
  • 安装前建议确认权限范围和是否会触发联网或文件读写操作。

SKILL.md

PyTorch Model to CLI Tool Conversion

This skill provides guidance for tasks that require converting PyTorch models into standalone command-line tools, typically implemented in C/C++ for portability and independence from Python runtime.

Task Recognition

This skill applies when the task involves:

  • Converting a PyTorch model to a standalone executable
  • Extracting model weights to a portable format (JSON, binary)
  • Implementing neural network inference in C/C++
  • Creating CLI tools that perform image classification or prediction
  • Building inference tools using libraries like cJSON and lodepng

Recommended Approach

Phase 1: Environment Analysis

Before writing any code, thoroughly analyze the available resources:

  1. Identify the model architecture

- Read the model definition file (e.g., model.py) completely - Document all layer types, dimensions, and activation functions - Note any default parameters (hidden dimensions, number of classes)

  1. Examine available libraries

- Check for image loading libraries (lodepng, stb_image) - Check for JSON parsing libraries (cJSON, nlohmann/json) - Identify compilation requirements (headers, source files)

  1. Understand input requirements

- Determine expected image dimensions (e.g., 28x28 for MNIST) - Identify color format (grayscale, RGB, RGBA) - Document normalization requirements (divide by 255, mean/std normalization)

  1. Verify preprocessing pipeline

- If training code is available, examine data transformations - Match inference preprocessing exactly to training preprocessing - Common transformations: resize, grayscale conversion, normalization

Phase 2: Weight Extraction

Extract model weights from PyTorch format to a portable format:

  1. Load the model checkpoint import torch import json # Load state dict state_dict = torch.load('model.pth', map_location='cpu')
  2. Convert tensors to lists weights = {} for key, tensor in state_dict.items(): weights[key] = tensor.numpy().tolist()
  3. Save to JSON with open('weights.json', 'w') as f: json.dump(weights, f)
  4. Verify extraction

- Check that all expected layer weights are present - Verify dimensions match the model architecture - For a model with layers fc1, fc2, fc3: expect fc1.weight, fc1.bias, etc.

Phase 3: Reference Implementation

Before implementing in C/C++, create a reference output:

  1. Run inference in PyTorch model.eval() with torch.no_grad(): output = model(input_tensor) prediction = output.argmax().item()
  2. Save reference outputs

- Store intermediate layer outputs for debugging - Record the final prediction for verification - This allows validating the C/C++ implementation

Phase 4: C/C++ Implementation

Implement the inference logic in C/C++:

  1. Image loading and preprocessing

- Load image using the available library (lodepng for PNG) - Handle color channel conversion (RGBA to grayscale if needed) - Apply normalization (typically divide by 255.0) - Flatten to 1D array in correct order (row-major)

  1. Weight loading

- Parse JSON file containing weights - Store weights in appropriate data structures - Verify dimensions during loading

  1. Forward pass implementation

- Implement matrix-vector multiplication for linear layers - Implement activation functions (ReLU, softmax, etc.) - Process layers in correct order

  1. Output handling

- Find argmax for classification tasks - Write prediction to output file - Ensure only prediction goes to stdout (not progress/debug info)

Phase 5: Compilation and Testing

  1. Compile with appropriate flags g++ -o cli_tool main.cpp lodepng.cpp cJSON.c -std=c++11 -lm

- Double-check flag syntax (avoid concatenation errors like -std=c++11-lm)

  1. Test against reference

- Run the CLI tool on the same input used for reference - Compare output to PyTorch reference - Debug any discrepancies by checking intermediate values

Verification Strategies

Before Implementation

  • Model architecture fully documented
  • All layer dimensions verified
  • Preprocessing requirements identified
  • Reference output generated from PyTorch

After Weight Extraction

  • All expected keys present in JSON
  • Weight dimensions match architecture
  • Bias terms included for all layers

After C/C++ Implementation

  • Compilation succeeds without warnings
  • Output matches PyTorch reference exactly
  • CLI tool handles missing files gracefully
  • Only prediction output goes to stdout

Final Validation

  • All test cases pass
  • Memory properly managed (no leaks)
  • Error messages go to stderr, not stdout

Common Pitfalls

Weight Extraction

  • Forgetting to use map_location='cpu' when loading on CPU-only systems
  • Missing bias terms - ensure both weights and biases are extracted
  • Incorrect tensor ordering - PyTorch uses different conventions than some C libraries

Preprocessing Mismatches

  • Wrong normalization - training might use mean/std normalization, not just /255
  • Color channel issues - PNG might be RGBA while model expects grayscale
  • Dimension ordering - ensure row-major vs column-major consistency

C/C++ Implementation

  • Matrix multiplication order - verify (input × weights^T) vs (weights × input)
  • Activation function placement - apply after linear layer, before next layer
  • Integer vs float division - use 255.0, not 255, for normalization

Compilation Issues

  • Flag concatenation - ensure spaces between compiler flags
  • Missing libraries - include all required source files (lodepng.cpp, cJSON.c)
  • Header dependencies - verify all headers are in include path

Output Handling

  • Verbose library output - suppress or redirect debug/progress output
  • Newline handling - ensure consistent line endings in output files
  • Buffering issues - flush stdout before program exit

Efficiency Guidelines

  • Avoid repeatedly checking package managers; identify available tools first
  • Create reference outputs early to catch implementation bugs quickly
  • Review complete code before compilation attempts
  • Minimize status-only updates; batch related operations
  • Test with multiple inputs when possible, not just the provided test case

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

31.12%
按下载量换算91

Gemini CLI

22.74%
按下载量换算66

Antigravity

17.67%
按下载量换算51

windsurf

14.5%
按下载量换算42

OpenCode

8.16%
按下载量换算24

Codex

3.9%
按下载量换算11

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

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

来源信息

继续浏览同类 Skills