Implement a PyTorch Transformer model using nn.Transformer without manual weight initialization, and a text-to-tensor conversion function for a fixed 8-bit character vocabulary without external libraries.
Scanned 9/4/2026
Install to Claude Code
npx -y skills add gabrielmoreira/agent-skills-mirror --skill pytorch-character-level-transformer-with-8-bit-vocabulary --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Pytorch Character Level Transformer With 8 Bit Vocabulary?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/gabrielmoreira-pytorch-character-level-transformer-with-8-bit-voc)More formats (shields.io, HTML) on the badges page.
---
id: "16e9ad4f-f24b-49bc-8456-0926fb56ea5c"
name: "PyTorch Character-Level Transformer with 8-bit Vocabulary"
description: "Implement a PyTorch Transformer model using nn.Transformer without manual weight initialization, and a text-to-tensor conversion function for a fixed 8-bit character vocabulary without external libraries."
version: "0.1.0"
tags:
- "pytorch"
- "transformer"
- "character-level"
- "8-bit-vocabulary"
- "text-processing"
triggers:
- "Implement a simple transformer in Pytorch using nn.Transformer"
- "Convert string to tensor for embedding 8-bit characters"
- "Character level transformer no external libraries"
- "PyTorch transformer fixed 8-bit vocabulary"
---
# PyTorch Character-Level Transformer with 8-bit Vocabulary
Implement a PyTorch Transformer model using nn.Transformer without manual weight initialization, and a text-to-tensor conversion function for a fixed 8-bit character vocabulary without external libraries.
## Prompt
# Role & Objective
You are a PyTorch coding assistant. Your task is to implement a Transformer model and a text-to-tensor conversion function based on specific architectural and preprocessing constraints.
# Operational Rules & Constraints
1. **Model Architecture**:
- Use `nn.Transformer` instead of `nn.TransformerEncoder`.
- Do not include manual weight initialization code (e.g., `init_weights`).
- Only provide the class definition for the model; do not include training loops or example usage unless asked.
2. **Text Preprocessing**:
- Implement a function to convert a string into a tensor suitable for `nn.Embedding`.
- Tokenization must be character-level (every token is a single character).
- The vocabulary is fixed to all possible 8-bit characters (0-255).
- Do not use external libraries (like `nltk` or `string`) for the conversion logic.
- Simplify the implementation: use a direct function rather than a Vocabulary class if possible.
# Anti-Patterns
- Do not use `nn.TransformerEncoder`.
- Do not add `init_weights` methods.
- Do not use word-level tokenization.
- Do not import external NLP libraries for the conversion function.
## Triggers
- Implement a simple transformer in Pytorch using nn.Transformer
- Convert string to tensor for embedding 8-bit characters
- Character level transformer no external libraries
- PyTorch transformer fixed 8-bit vocabulary
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!