Token导航 LogoToken导航TokenDH.com
运维和基础设施需要联网github未标认证来源可访问clear审计提醒

caffe-cifar-10西法咖啡 10

Agent Skill

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

总安装

729

周安装

31

GitHub Stars

93

下载量

255
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/letta-ai/skills --skill caffe-cifar-10

简介

caffe-cifar-10 指导从零构建 Caffe 深度学习框架并在 CIFAR-10 数据集上训练模型。

  • 适用于需要在 CPU-only 环境下复现经典图像分类实验的研究人员。
  • 提供依赖安装、编译选项与 solver 配置建议,降低环境搭建门槛。
  • 使用前请确认操作系统为 Ubuntu/Debian,并已安装 CMake 与 BLAS 库。
  • 训练过程可能消耗较多内存与时间,建议在资源充足节点执行并监控日志输出。

SKILL.md

Caffe CIFAR-10 Build and Training

This skill provides procedural guidance for building the Caffe deep learning framework from source and training models on the CIFAR-10 dataset.

When to Use This Skill

  • Building Caffe from source on Ubuntu/Debian systems
  • Training CIFAR-10 or similar image classification models with Caffe
  • Configuring Caffe for CPU-only execution
  • Troubleshooting Caffe build and dependency issues

Critical Requirements Checklist

Before starting, identify ALL requirements from the task specification:

  1. Execution mode: CPU-only vs GPU (affects solver configuration)
  2. Iteration count: Specific number of training iterations required
  3. Output files: Where training logs and models should be saved
  4. Model checkpoints: Which iteration's model file is expected

Phase 1: Dependency Installation

System Dependencies

Install required packages before attempting to build:

apt-get update && apt-get install -y \
    build-essential cmake git \
    libprotobuf-dev libleveldb-dev libsnappy-dev \
    libhdf5-serial-dev protobuf-compiler \
    libatlas-base-dev libgflags-dev libgoogle-glog-dev liblmdb-dev \
    libopencv-dev libboost-all-dev \
    python3-dev python3-numpy python3-pip

Verification Step

Confirm critical libraries are installed:

dpkg -l | grep -E "libhdf5|libopencv|libboost"

Phase 2: Caffe Source Acquisition

Clone and Checkout

git clone https://github.com/BVLC/caffe.git
cd caffe
git checkout 1.0  # Note: Tag is "1.0", not "1.0.0"

Common Mistake

The release tag is 1.0, not 1.0.0. Verify with git tag -l if uncertain.

Phase 3: Makefile.config Configuration

Create Configuration File

cp Makefile.config.example Makefile.config

Essential Configuration Changes

Apply these modifications to Makefile.config:

  1. CPU-Only Mode (if no GPU available): CPU_ONLY:= 1
  2. OpenCV Version (for OpenCV 3.x or 4.x): OPENCV_VERSION:= 3 Note: OpenCV 4 may require additional compatibility patches.
  3. HDF5 Paths (Ubuntu-specific): INCLUDE_DIRS:= $(PYTHON_INCLUDE) /usr/local/include /usr/include/hdf5/serial LIBRARY_DIRS:= $(PYTHON_LIB) /usr/local/lib /usr/lib /usr/lib/x86_64-linux-gnu/hdf5/serial
  4. Python Configuration (Python 3): PYTHON_LIBRARIES:= boost_python3 python3.8 PYTHON_INCLUDE:= /usr/include/python3.8 /usr/lib/python3/dist-packages/numpy/core/include Adjust version numbers based on installed Python version.

Configuration Verification

After editing, verify no duplicate definitions exist:

grep -n "PYTHON_INCLUDE\|PYTHON_LIB\|CPU_ONLY" Makefile.config

Ensure each setting appears only once in an uncommented form.

Phase 4: Building Caffe

Memory-Aware Compilation

Avoid using all CPU cores on memory-constrained systems:

# For systems with limited RAM (< 8GB)
make all -j2

# For systems with adequate RAM
make all -j$(nproc)

Build Failure Recovery

If the build fails or is killed (often due to memory):

  1. Clean the build: make clean
  2. Rebuild with reduced parallelism: make all -j1

Build Verification

Confirm the binary exists after build:

ls -la .build_release/tools/caffe.bin
# or for CPU-only builds:
ls -la .build_release/tools/caffe

Phase 5: Dataset Preparation

Download CIFAR-10

./data/cifar10/get_cifar10.sh

Convert to LMDB Format

./examples/cifar10/create_cifar10.sh

Verification

Confirm LMDB directories exist:

ls -la examples/cifar10/cifar10_train_lmdb
ls -la examples/cifar10/cifar10_test_lmdb

Phase 6: Solver Configuration

Modify Solver for Requirements

Edit examples/cifar10/cifar10_quick_solver.prototxt:

  1. Set iteration count: max_iter: 500 # Or as specified in task
  2. Set execution mode: solver_mode: CPU # Change from GPU if required

Verification

grep -E "max_iter|solver_mode" examples/cifar10/cifar10_quick_solver.prototxt

Phase 7: Training Execution

Run Training with Output Capture

./build/tools/caffe train \
    --solver=examples/cifar10/cifar10_quick_solver.prototxt \
    2>&1 | tee training_output.txt

Alternative Binary Paths

Depending on build configuration, the binary may be at:

  • .build_release/tools/caffe
  • build/tools/caffe
  • .build_release/tools/caffe.bin

Phase 8: Verification

Required Outputs Checklist

  1. Caffe binary exists: test -f.build_release/tools/caffe && echo "OK" || echo "MISSING"
  2. Model file exists (iteration-specific): ls -la examples/cifar10/cifar10_quick_iter_*.caffemodel
  3. Training output captured: test -f training_output.txt && echo "OK" || echo "MISSING"
  4. Solver configured correctly: grep "solver_mode: CPU" examples/cifar10/cifar10_quick_solver.prototxt

Common Pitfalls

1. Premature Termination

Never stop after make clean or intermediate steps. Complete the full workflow: Dependencies -> Build -> Dataset -> Configure -> Train -> Verify

2. Missing Solver Configuration

The solver file must be modified for:

  • CPU vs GPU execution mode
  • Specific iteration count requirements

3. Skipping Dataset Preparation

Training will fail without LMDB data. Always run both:

  • get_cifar10.sh (download)
  • create_cifar10.sh (convert)

4. Build Parallelism Issues

High parallelism (-j$(nproc)) can exhaust memory. Start with -j2 on constrained systems.

5. Duplicate Configuration Entries

Multiple edits to Makefile.config can create duplicate definitions. Always verify single definitions for each setting.

6. Wrong Git Tag

Use 1.0 not 1.0.0 for the stable release.

Decision Framework

When encountering issues:

  1. Build killed: Reduce parallelism, run make clean, rebuild with -j1
  2. Missing headers: Check HDF5 and OpenCV include paths in Makefile.config
  3. Python errors: Verify Python version matches configuration
  4. Training fails immediately: Check dataset preparation completed
  5. Wrong output location: Verify solver paths and output file redirection

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

26.72%
按下载量换算68

Gemini CLI

26.86%
按下载量换算68

Antigravity

16.94%
按下载量换算43

windsurf

13.99%
按下载量换算36

OpenCode

7.49%
按下载量换算19

Codex

3.32%
按下载量换算8

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills