transformers

Load, run, and fine-tune pre-trained transformer models across NLP, vision, and audio tasks.

Updated Apr 2, 2026
One-click install
npx skills add https://github.com/viniruggeri/applied-dynamical-systems --skill transformers-viniruggeri
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: transformers
Source: https://github.com/viniruggeri/applied-dynamical-systems/tree/main/.agents/skills/transformers
Command: npx skills add https://github.com/viniruggeri/applied-dynamical-systems --skill transformers-viniruggeri

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Access to a broad class of pre-trained transformer models across NLP, computer vision, audio, and multimodal tasks without reinventing common tooling.

Core Features & Use Cases

  • Load and configure AutoModel, AutoTokenizer, and pipelines for NLP, CV, and audio.
  • Run inference for text generation, classification, translation, question answering, image classification, object detection, and speech recognition.
  • Train and fine-tune models with Trainer, adapters/PEFT, and checkpointing for domain adaptation.
  • Tokenization and model inspection workflows to prepare models for production deployments.
  • Real-world example: build a sentiment classifier and a captioning pipeline from a single codebase.

Quick Start

Load a small transformer model and generate a short sample text.

Frequently Asked Questions about transformers

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I load a pre-trained transformer model for text generation?▼

You can load a pre-trained transformer model for text generation by using AutoModel and AutoTokenizer patterns to configure the architecture, then applying generation strategies to produce sample text outputs.

Can I fine-tune transformer models for domain adaptation?▼

Yes, you can fine-tune transformer models for domain adaptation by using Trainer utilities, adapters, and checkpointing to train pre-trained models on custom datasets for NLP, vision, or audio tasks.

Does this approach support multimodal tasks like image classification and speech recognition?▼

Yes, this approach supports multimodal tasks across computer vision and audio, enabling image classification, object detection, and speech recognition alongside NLP pipelines within a single codebase.

What's the best way to prepare tokenization workflows for production deployments?▼

The best way to prepare tokenization workflows for production deployments is to apply dedicated tokenization and model inspection utilities, ensuring pre-trained transformer models are correctly configured before inference.

How do I build a sentiment classifier and captioning pipeline together?▼

You can build a sentiment classifier and captioning pipeline together by loading AutoModel and AutoTokenizer components, then running inference for text classification and image captioning from a single unified codebase.

When do I need to use adapters or PEFT for transformer training?▼

You need to use adapters or PEFT for transformer training when performing parameter-efficient fine-tuning and domain adaptation, allowing you to update pre-trained models without modifying the entire base architecture.