Agent Skillsvllm-project/llm-compressor › create-tiny-model

create-tiny-model

GitHub

用于创建和管理用于测试开发的小型模型。支持检查配置、保存精简版模型、分析张量、微调及验证结构,适用于各类基础模型的多模态与文本场景。

.claude/skills/create-tiny-model/SKILL.md vllm-project/llm-compressor

Trigger Scenarios

需要快速创建小型模型进行测试 调试模型架构或参数规模 验证模型微调流程 检查模型配置文件和张量

Install

npx skills add vllm-project/llm-compressor --skill create-tiny-model -g -y
More Options

Non-standard path

npx skills add https://github.com/vllm-project/llm-compressor/tree/main/.claude/skills/create-tiny-model -g -y

Use without installing

npx skills use vllm-project/llm-compressor@create-tiny-model

指定 Agent (Claude Code)

npx skills add vllm-project/llm-compressor --skill create-tiny-model -a claude-code -g -y

安装 repo 全部 skill

npx skills add vllm-project/llm-compressor --all -g -y

预览 repo 内 skill

npx skills add vllm-project/llm-compressor --list

SKILL.md

Frontmatter
{
    "args": {
        "model_id": {
            "type": "string",
            "required": false,
            "description": "The HuggingFace model ID to use (e.g., \"Qwen\/Qwen2.5-0.5B-Instruct\")"
        }
    },
    "name": "create-tiny-model",
    "description": "Create and manage tiny models for testing and development. Includes utilities for saving tiny models, inspecting tensors, and finetuning workflows."
}

Create Tiny Model Skill

This skill creates a tiny version of a known model for testing and experimentation purposes

Arguments

  • model_id (optional): The HuggingFace model ID to use for creating or working with tiny models. Examples: "Qwen/Qwen2.5-0.5B-Instruct", "facebook/opt-125m"

Available Scripts

Scripts are located in .claude/skills/create-tiny-model/scripts/:

  • inspect_config.py - Inspect the config fields of a model without downloading all files
  • save_tiny_model.py - Template for saving a tiny version of the model
  • inspect_tensors.py - Inspect and analyze tensors in models
  • finetune.py - Finetune tiny models on a toy dataset
  • validate_tiny_model.py - Validate that the tiny model was created correctly

Templates

Templates are located in .claude/skills/create-tiny-model/templates/:

  • README_TEMPLATE.md - Template for generating model README with placeholders for model details

Steps to creating a tiny model

When this skill is invoked, the following steps will be completed:

  1. Inspect config: Use inspect_config.py to understand the model configuration fields. Specifically find which fields control the number of layers, layer types, and the number of parameters. Check if the model is multimodal. If the model is multimodal, remember to always load with ...ForConditionalGeneration rather than AutoModelForCausalLM

  2. Create tiny model: Make a copy of save_tiny_model.py. Modify the copy to create a tiny version of the given model which maintains the same architecture as the original model (at least one of each attention type in the original model, etc.) but with ~1B parameters. It's okay to create a slightly bigger model so long as the architecture is still represented.

IMPORTANT: Start by only modifying the number of layers in the model. If the model is significantly larger than 1B parameters, then consider reducing the hidden sizes, number of experts, and other configurations.

  1. Fine-tune: Fine tune the model on a toy dataset using finetune.py. This validates that the model can actually learn. Note: vision-language models may require script modifications to load correctly. Make sure the target perplexity is ~3.0, a model with a high perplexity with respect to the toy dataset is not considered valid.

If the model is a vision-language model, do not try to fine tune on a vision dataset, only fine tune on the provided text dataset. Continue to load with ...ForConditionalGeneration.

  1. Validate checkpoint structure: Make sure that the saved model checkpoint structure is analogous to the checkpoint structure of the original large model checkpoint. The transformers library can sometimes contain bugs where models are saved in invalid checkpoint structures. First, inspect the original checkpoint structure using the HuggingFace Hub API or by checking https://huggingface.co/{model_id}/resolve/main/model.safetensors.index.json. If this file does not exist, download the original checkpoint directly. Use inspect_tensors.py to inspect the checkpoint format of the saved model and/or the downloaded model. If the two structures do not match, create a converter script to convert our tiny saved checkpoint structure into a checkpoint structure which matches the original. Do not try to match mtp layers.

  2. Validate model: Confirm that the model loads and inferences correctly using validate_tiny_model.py.

  3. Generate README: Create a comprehensive README.md for the model using the template at templates/README_TEMPLATE.md. Fill in all placeholders with actual values:

    • {model_name} - Name of the tiny model directory
    • {base_model_id} - Original HuggingFace model ID
    • {architecture} - Model architecture type (from config.model_type)
    • {total_params} - Total parameter count in billions
    • {activated_params} - Activated parameter count for MoE models
    • {config_table} - Markdown table comparing original vs tiny config
    • {checkpoint_description} - Description of checkpoint structure (single file vs sharded)
    • {validation_output} - Output from running validate_tiny_model.py
    • {additional_notes} - Any additional notes about the model
  4. Upload Upload the model to HuggingFace Hub using:

    hf upload inference-optimization/{tiny-model-id} {path-to-model} --repo-type=model
    hf collections add-item inference-optimization/tiny-models {tiny-model-id} model
    

    If you do not have permissions within the inference-optimization org, skip this step.

    IMPORTANT: Make sure the tiny model id reflects the number of parameters in the tiny model, not the base model. For example, if the base model is Qwen/Qwen3-30B-A3B, then the tiny model should be something like Qwen3-1B-A0.6B

    IMPORTANT: Make sure to upload the fine tuned model, not the base model.

  5. Copy to working directory: Copy the final model to the project's working directory for easy access.

    IMPORTANT: Make sure to copy the fine tuned model, not the base model.

Make sure that, if you create any extra files, that they are created in a temporary directory, not in the skills folder.

Version History

  • 0.12.0 Current 2026-07-24 12:26

Same Skill Collection

examples/.claude/skills/fp8/SKILL.md
examples/.claude/skills/nvfp4/SKILL.md

Metadata

Files
0
Version
0.12.0
Hash
8a2e25a5
Indexed
2026-07-24 12:26

Accueil - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-07 16:28
浙ICP备14020137号-1 $Carte des visiteurs$