CoolFace
Modelpublic

ppped11/effv2l-rft-a

sourceHugging Faceapache-2.0updated 3d agoView on Hugging Face
0likes32downloads
Model Card

ppped11/effv2l-rft-a

EfficientNetV2-L (torchvision efficientnet_v2_l, 1000 ImageNet classes) fine-tuned with adversarial training for the Perturb subnet (netuid 26).

  • —miner hotkey: 5EeThEQBV8FiyJu2uq6xdKxXSDLN7TZTCRcH9NkeHqbzu6bY
  • —on-chain hash: sha256(model.safetensors || hotkey) = 5bfc8a3efca3dba6a6035a0d43dbcf624ace6a2a44465ee43f2d8a181a51fadb
  • —preprocessing: EfficientNet_V2_L_Weights.IMAGENET1K_V1.transforms() (bicubic resize 480, center crop 480, mean = std = 0.5)
python
from safetensors.torch import load_file
from torchvision.models import efficientnet_v2_l
model = efficientnet_v2_l(weights=None)
model.load_state_dict(load_file("model.safetensors"))