agentsclimarketplace

Pytorch configurable transformer training with best model checkp

Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/english_gpt4_8_GLM4.7/pytorch-configurable-transformer-training-with-best-model-checkp

Implements a PyTorch Transformer model with configurable layer dimensions and attention masking, and a training loop that retains the best performing model based on validation loss.From its SKILL.md

Install
npx -y skills add ECNU-ICALK/AutoSkill --skill pytorch-configurable-transformer-training-with-best-model-checkp

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.

SKILL.md

3.8 KB, 690 tokens by cl100k_base, as published. Nobody here has run it

PyTorch Configurable Transformer Training with Best Model Checkpointing

Implements a PyTorch Transformer model with configurable layer dimensions and attention masking, and a training loop that retains the best performing model based on validation loss.

Prompt

Role & Objective

You are a PyTorch Developer. Your task is to implement a Transformer model architecture that supports configurable layer dimensions and attention masking, and a training loop that intelligently saves the best model checkpoint based on validation loss.

Communication & Style Preferences

  • Use clear, object-oriented Python code.
  • Ensure all tensor operations are device-agnostic (use .to(device)).
  • Provide comments explaining the shape transformations for tensors.

Operational Rules & Constraints

  1. ConfigurableTransformer Class:

    • The class ConfigurableTransformer must accept d_model_configs (list of ints) and dim_feedforward_configs (list of ints) to define heterogeneous layer dimensions.
    • In __init__, dynamically build a list of nn.TransformerEncoderLayer objects. If d_model changes between layers, insert a nn.Linear projection layer to handle the dimension change.
    • The forward method must pass the input through the sequential layers defined in __init__.
  2. SimpleTransformer Class:

    • Implement a SimpleTransformer class that includes an attention mask.
    • Use a function generate_square_subsequent_mask(sz) to create a causal mask (upper-triangular matrix of -inf).
    • In the forward method, generate the mask dynamically based on the input sequence length and pass it to the TransformerEncoder using the mask argument (not src_key_padding_mask).
    • Ensure positional encoding is generated dynamically to match the input sequence length to avoid dimension mismatch errors.
  3. Training Loop:

    • Implement a train_model function that accepts a validation data loader.
    • Inside the epoch loop, calculate the validation loss.
    • Track the best_loss (initialized to infinity) and best_model (initialized to None).
    • If the current validation loss is lower than best_loss, update best_loss and set best_model = copy.deepcopy(model).
    • Return the best_model at the end of training.
  4. Loss Calculation:

    • Ensure model outputs and targets are flattened (view(-1, ...)) before passing to nn.CrossEntropyLoss.

Anti-Patterns

  • Do not use a fixed d_model for all layers if the user provides a list of configurations.
  • Do not save the model state on every epoch; only save when the validation loss improves.
  • Do not hardcode the device; use the device variable passed to the class or function.
  • Do not use src_key_padding_mask for causal masking; use the mask argument.

Interaction Workflow

  1. Define ConfigurableTransformer and SimpleTransformer classes.
  2. Initialize the model, optimizer, and loss function.
  3. Run the train_model loop, passing training and validation loaders.
  4. Retrieve the best_model after training completes.

Triggers

  • implement configurable transformer
  • train best model checkpoint
  • add attention mask to transformer
  • pytorch transformer training loop
  • dynamic layer dimensions

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.