Agent skill

torchtext

Natural Language Processing utilities for PyTorch (Legacy). Includes tokenizers, vocabulary building, and DataPipe-based dataset handling for text processing pipelines. (torchtext, tokenizer, vocab, datapipe, regextokenizer, nlp-pipeline)

Stars 0
Forks 0

Install this agent skill to your Project

npx add-skill https://github.com/cuba6112/skillfactory/tree/main/skills/torchtext

SKILL.md

Overview

TorchText is a legacy library for NLP in PyTorch. While it is in a maintenance phase, it remains a common tool for handling classic NLP datasets and building vocabularies via DataPipes.

When to Use

Use TorchText for maintaining legacy NLP projects or when utilizing its built-in DataPipe-based datasets. For new projects, transitioning to native PyTorch or other modern NLP libraries is recommended.

Decision Tree

  1. Are you starting a new NLP project?
    • CONSIDER: Using Hugging Face or native PyTorch instead of TorchText.
  2. Do you need a high-performance tokenizer for production?
    • USE: RegexTokenizer and compile it with torch.jit.script.
  3. Are you using DataPipes with multiple workers?
    • ENSURE: Use a proper worker_init_fn in the DataLoader to avoid data duplication.

Workflows

  1. Building a Text Processing Pipeline

    1. Initialize a tokenizer (e.g., BERTTokenizer).
    2. Construct a Vocab object using build_vocab_from_iterator from a dataset.
    3. Create a pipeline using transforms.Sequential containing: Tokenizer -> VocabTransform -> AddToken -> Truncate -> ToTensor.
    4. Pass raw strings through the pipeline to get padded tensors.
  2. Using Built-in NLP Datasets

    1. Import a dataset from torchtext.datasets (e.g., IMDB, AG_NEWS).
    2. Initialize the DataPipe for the desired split ('train', 'test').
    3. Setup a DataLoader with shuffle=True and a proper worker_init_fn.
    4. Iterate through the DataPipe to get (label, text) pairs.
  3. Custom Regex Tokenization

    1. Define a list of regex patterns and their replacements.
    2. Instantiate RegexTokenizer with the patterns.
    3. Optionally use torch.jit.script to compile the tokenizer for production.
    4. Apply the tokenizer to raw strings to generate tokens.

Non-Obvious Insights

  • Maintenance Status: Development of TorchText stopped as of April 2024 (v0.18), marking it as a legacy library.
  • Data Duplication Risk: DataPipe-based datasets require explicit handling in the DataLoader (via worker initialization) to ensure that multiple workers don't serve the same data shards.
  • Inference Speed: Many transforms like BERTTokenizer are reimplemented in TorchScript, allowing for high-performance inference without a full Python runtime.

Evidence

Scripts

  • scripts/torchtext_tool.py: Example of building a vocabulary and tokenizer pipeline.
  • scripts/torchtext_tool.js: Node.js interface for invoking TorchText pipelines.

Dependencies

  • torchtext
  • torch
  • torchdata

References

  • TorchText Reference

Expand your agent's capabilities with these related and highly-rated skills.

cuba6112/skillfactory

prompt-engineering

Comprehensive prompt engineering techniques for Claude models. Use this skill when crafting, optimizing, or debugging prompts for Claude API, Claude Code, or any Claude-powered application. Covers system prompts, role prompting, multishot examples, chain of thought, XML structuring, long context handling, extended thinking, prompt chaining, Claude 4.x-specific best practices, and agentic orchestration including subagents, agent loops, skills, MCP integration, and multi-agent workflows.

0 0
Explore
cuba6112/skillfactory

adk-rag-agent

Build RAG (Retrieval-Augmented Generation) agents with Google ADK and Vertex AI RAG Engine. Use when implementing document Q&A, knowledge base search, or citation-backed responses. Covers VertexAiRagRetrieval tool, corpus setup, and citation formatting.

0 0
Explore
cuba6112/skillfactory

headless-cli-agents

Build agentic systems using Claude CLI in headless mode or the Claude Agent SDK. Use when building automation pipelines, CI/CD integrations, multi-agent orchestration, or programmatic Claude interactions. Covers CLI flags (-p, --output-format), session management (--resume, --continue), Python SDK (claude-agent-sdk), custom tools, and agent loop patterns.

0 0
Explore
cuba6112/skillfactory

notion-knowledge-capture

Capture conversations and decisions into structured Notion pages; use when turning chats/notes into wiki entries, how-tos, decisions, or FAQs with proper linking.

0 0
Explore
cuba6112/skillfactory

mcp-builder

Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).

0 0
Explore
cuba6112/skillfactory

gh-fix-ci

Inspect GitHub PR checks with gh, pull failing GitHub Actions logs, summarize failure context, then create a fix plan and implement after user approval. Use when a user asks to debug or fix failing PR CI/CD checks on GitHub Actions and wants a plan + code changes; for external checks (e.g., Buildkite), only report the details URL and mark them out of scope.

0 0
Explore

Didn't find tool you were looking for?

Be as detailed as possible for better results