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

count-dataset-tokens计算数据集标记

Agent Skill

用于辅助数据整理、表格处理、CSV/Excel 分析、指标计算和图表准备。它适合让 Agent 清洗字段、汇总数据、发现异常、生成统计口径或把分析结果转成可读说明。使用时需要确认数据来源、字段含义和时间范围,避免把样本数据当全量事实;涉及敏感数据、导出文件或批量写回时,应先确认权限和脱敏边界。

总安装

1,213

周安装

34

GitHub Stars

93

下载量

280
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/letta-ai/skills --skill count-dataset-tokens

简介

count-dataset-tokens 提供系统方法准确统计数据集标记数量,强调全面探索与结果校验。

  • 适用于 HuggingFace 数据集或其他文本字段丰富的数据源处理。
  • 帮助过滤特定领域、类别或元数据,并支持多字段联合计数。
  • 务必区分样本与全量数据差异,防止误解统计口径。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Count Dataset Tokens

Overview

This skill provides a systematic approach for accurately counting tokens in datasets. It emphasizes thorough data exploration, proper interpretation of task requirements, and verification of results to avoid common mistakes like incomplete field coverage or misinterpreting terminology.

When to Use This Skill

  • Counting tokens in HuggingFace datasets or similar data sources
  • Tasks involving tokenization of text fields
  • Filtering datasets by domain, category, or other metadata
  • Working with datasets that have multiple text fields that may contribute to token counts
  • Any task requiring accurate quantification of textual content in structured datasets

Critical Pre-Implementation Steps

1. Clarify Terminology Before Proceeding

When a task uses specific terms (e.g., "deepseek tokens", "science domain"), verify exactly what content this refers to:

  • Examine the README/documentation thoroughly - Documentation often contains critical definitions
  • List all available fields in the dataset schema before making assumptions
  • Identify all fields that could potentially be relevant to the token count
  • Do not assume field names tell the complete story - A field like deepseek_reasoning may not be the only field relevant for counting "deepseek tokens"

2. Explore Dataset Structure Thoroughly

Before writing any counting logic:

1. Load a sample of the dataset
2. Print ALL column names and their types
3. Examine multiple sample entries in full detail
4. Identify relationships between fields
5. Check for nested structures or JSON fields
6. Look for metadata columns that might indicate which fields to include

3. Understand Domain/Category Mappings

When filtering by categories like "science":

  • List all unique values in the domain/category column
  • Determine if the target category is an explicit value OR a grouping of related values
  • Example: "science" might mean biology + chemistry + physics rather than a literal "science" value
  • Document your interpretation and verify it aligns with the task intent

Implementation Workflow

Step 1: Data Discovery

1. Load the dataset (or a representative sample)
2. Enumerate all columns/fields
3. For each text field, examine:
   - Field name and description
   - Sample content from multiple entries
   - Whether it should be included in token counts
4. Check for a metadata or schema subset that documents field purposes

Step 2: Define Scope Explicitly

Before counting, explicitly document:

  • Which fields will be tokenized
  • Which filter criteria will be applied (e.g., domain == "biology")
  • The tokenizer to be used and why
  • Any fields being excluded and the reasoning

Step 3: Implement with Verification Points

1. Load the appropriate tokenizer
2. Apply filters to select relevant entries
3. For each entry, tokenize ALL relevant fields
4. Sum token counts with running totals
5. Print progress checkpoints (e.g., every 1000 entries)
6. Track statistics: entry count, empty fields, errors

Step 4: Validate Results

Before reporting final numbers:

  • Spot-check individual entries - Manually verify token counts for 3-5 random samples
  • Sanity check totals - Does the average tokens per entry seem reasonable?
  • Cross-reference with metadata - If the dataset provides expected statistics, compare
  • Verify filter results - Confirm the filtered count matches expected entries

Common Pitfalls to Avoid

Pitfall 1: Incomplete Field Identification

Mistake: Assuming a single field (e.g., deepseek_reasoning) contains all relevant content

Solution:

  • Examine the full schema before deciding which fields to include
  • Consider whether multiple fields contribute to the "complete" content
  • Check if there are fields like prompt, response, full_text, or conversation that should be included

Pitfall 2: Ambiguous Terminology

Mistake: Interpreting "deepseek tokens" as "tokens in the deepseek_reasoning field only"

Solution:

  • Research what the terminology means in the dataset's context
  • Read any available documentation or README files completely
  • When uncertain, consider multiple interpretations and document your choice

Pitfall 3: Assuming Category Names Are Literal

Mistake: Looking for domain == "science" when science is actually a group of domains

Solution:

  • Always enumerate unique values in category/domain fields first
  • Understand the taxonomy before applying filters
  • Common groupings: science (biology, chemistry, physics), stem (science + math), humanities

Pitfall 4: Not Validating Intermediate Results

Mistake: Running a complete count without checking partial results

Solution:

  • Process in batches with intermediate output
  • Verify token counts for sample entries manually
  • Compare against any available reference statistics

Verification Checklist

Before finalizing results, confirm:

  • All relevant text fields have been identified and included
  • The correct tokenizer is being used
  • Filter criteria correctly identify the target subset
  • Sample entries have been manually verified
  • Empty or null values are handled appropriately
  • The final count passes a reasonableness check (average tokens/entry, total entries)
  • Documentation has been consulted for any ambiguous terminology

Example Exploration Code

When starting a dataset token counting task, use exploratory code like:

# Initial exploration
from datasets import load_dataset

# Load a small sample first
ds = load_dataset("dataset_name", split="train[:100]")

# Print all column names
print("Columns:", ds.column_names)

# Examine a single entry in full
print("\nSample entry:")
for key, value in ds[0].items():
    print(f"  {key}: {type(value).__name__} = {str(value)[:200]}...")

# Check for domain/category distributions if filtering
if 'domain' in ds.column_names:
    from collections import Counter
    domains = Counter(ds['domain'])
    print("\nDomain distribution:", domains)

Key Principles

  1. Explore before implementing - Understand the full data structure first
  2. Clarify ambiguity explicitly - Don't assume; document interpretations
  3. Verify incrementally - Check results at multiple stages
  4. Consider all relevant fields - Token counts often span multiple columns
  5. Read documentation thoroughly - READMEs contain critical context

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

29.88%
按下载量换算84

Gemini CLI

23.74%
按下载量换算66

Antigravity

16.67%
按下载量换算47

windsurf

12.58%
按下载量换算35

OpenCode

7.41%
按下载量换算21

Codex

3.45%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills