AutoSkill self / torch / none

General SOP for common requests related to self, torch, none.

install
source · Clone the upstream repo
git clone https://github.com/ECNU-ICALK/AutoSkill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ECNU-ICALK/AutoSkill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/SkillBank/ConvSkill/english_gpt4_8_GLM4.7/self-torch-none" ~/.claude/skills/ecnu-icalk-autoskill-self-torch-none && rm -rf "$T"
manifest: SkillBank/ConvSkill/english_gpt4_8_GLM4.7/self-torch-none/SKILL.md
source content

self / torch / none

General SOP for common requests related to self, torch, none.

Prompt

Follow this SOP (replace specifics with placeholders like <PROJECT>/<ENV>/<VERSION>):

  1. from . import BaseActor
  2. from lib.utils.misc import NestedTensor
  3. from lib.utils.box_ops import box_cxcywh_to_xyxy, box_xywh_to_xyxy
  4. import torch
  5. from lib.utils.merge import merge_template_search
  6. from ...utils.heapmap_utils import generate_heatmap
  7. from ...utils.ce_utils import generate_mask_cond, adjust_keep_rate
  8. class CEUTrackActor(BaseActor
  9. Actor for training CEUTrack models
  10. def init(self, net, objective, loss_weight, settings, cfg=None

For each step, include: action, checks, and failure rollback/fallback plan. Output format: for each step number, provide status/result and what to do next.

Triggers

  • Use when the user asks for a process or checklist.
  • Use when you want to reuse a previously mentioned method/SOP.

Examples

Example 1

Input:

Break this into best-practice, executable steps.