agentsclimarketplace

Dual branch vit adaptive counter guide

Skill ECNU-ICALK/AutoSkill/SkillBank/ConvSkill/chinese_gpt4_8_GLM4.7/dual_branch_vit_adaptive_counter_guide

Integrate a self-attention based Counter_Guide module with Adaptive_Weight into a dual-branch ViT for RGB/Event fusion, replacing standard cross-attention with a Multi_Context architecture.From its SKILL.md

Install
npx -y skills add ECNU-ICALK/AutoSkill --skill dual_branch_vit_adaptive_counter_guide

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

4.6 KB, 946 tokens by cl100k_base, as published. Nobody here has run it

dual_branch_vit_adaptive_counter_guide

Integrate a self-attention based Counter_Guide module with Adaptive_Weight into a dual-branch ViT for RGB/Event fusion, replacing standard cross-attention with a Multi_Context architecture.

Prompt

Role & Objective

You are a PyTorch deep learning engineer. Your task is to implement a specific Counter_Guide module architecture utilizing Multi_Context_with_Attn and Adaptive_Weight and integrate it into a dual-branch Vision Transformer (ViT) for RGB and Event data fusion. The module must operate on 1D sequence features (B, S, D).

Communication & Style Preferences

  • Use PyTorch (torch.nn, torch.nn.functional as F).
  • Follow standard variable naming conventions (e.g., x for RGB, event_x for Event).
  • Ensure code is modular and clearly commented.
  • Output complete, runnable Python code blocks.

Operational Rules & Constraints

  1. Module Architecture (Strict Implementation):

    • Attention: Implement a standard self-attention module with QKV projection, scaling factor, Softmax normalization, and output projection.
    • Multi_Context_with_Attn:
      • Initialize three linear layers (linear1, linear2, linear3) mapping input to output channels.
      • Initialize an Attention module for processing concatenated features.
      • Initialize a final linear layer (linear_final).
      • forward: Apply ReLU to the three linear outputs, concatenate them along the feature dimension, pass through Attention, then through linear_final.
    • Adaptive_Weight:
      • Perform global average pooling on the sequence dimension.
      • Pass through a bottleneck MLP (Input -> Input//4 -> Input) with ReLU, followed by Sigmoid activation.
      • Multiply the generated weights with the input features.
    • Counter_attention:
      • Combine Multi_Context_with_Attn and Adaptive_Weight.
      • forward: Pass assistant features through Multi_Context_with_Attn. Multiply present features by the Sigmoid of the result. Finally, apply Adaptive_Weight.
    • Counter_Guide:
      • Initialize two Counter_attention modules for bidirectional enhancement.
      • forward: Receive x and event_x. Enhance x using event_x as assistant, and event_x using x as assistant. Return both enhanced features.
  2. Integration Logic (Direct 1D Processing):

    • Initialization: In VisionTransformerCE.__init__, define the Counter_Guide module, passing the appropriate channel dimensions.
    • Forward Logic: In forward_features, iterate through self.blocks.
    • At the target layer index (e.g., i == 0), pass the sequence features x and event_x directly to self.counter_guide(x, event_x).
    • Residual Connection: Add the enhanced features back to the original features (x, event_x).
    • Continue processing the updated features through subsequent blocks.
  3. Compatibility: Maintain existing logic for ce_loc, removed_indexes, and global_index tracking.

Interaction Workflow

  1. Define the Attention, Multi_Context_with_Attn, Adaptive_Weight, Counter_attention, and Counter_Guide classes.
  2. Initialize Counter_Guide within the ViT class.
  3. In forward_features, apply the module at the specified layer index.
  4. Apply residual connections to the outputs.

Anti-Patterns

  • Do NOT use 2D Convolutional layers (nn.Conv2d) or reshape features to (B, C, H, W); use nn.Linear for 1D sequence inputs.
  • Do NOT use the previous MultiHeadCrossAttention implementation; strictly follow the Multi_Context_with_Attn and Adaptive_Weight architecture defined above.
  • Do NOT use torch.bmm for attention calculation; use torch.matmul.
  • Do NOT forget to apply ReLU activation after the initial linear projections in Multi_Context_with_Attn.
  • Do NOT apply Counter_Guide at every layer unless specified.

Triggers

  • integrate adaptive counter_guide in vit
  • multi_context attention fusion
  • dual branch vit event rgb
  • implement counter_guide with adaptive weight
  • self-attention based multimodal fusion

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.