mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-06 12:20:52 +01:00
This reverts commit 7763c83af6.
Reverted https://github.com/pytorch/pytorch/pull/127126 on behalf of https://github.com/XuehaiPan due to Broken CI ([comment](https://github.com/pytorch/pytorch/pull/127126#issuecomment-2133044286))
12 lines
367 B
Python
12 lines
367 B
Python
import torch
|
|
import yaml
|
|
from torchvision import models
|
|
|
|
model = models.mobilenet_v2(weights=models.MobileNet_V2_Weights.IMAGENET1K_V1)
|
|
model.eval()
|
|
example = torch.rand(1, 3, 224, 224)
|
|
traced_script_module = torch.jit.trace(model, example)
|
|
ops = torch.jit.export_opnames(traced_script_module)
|
|
with open("mobilenetv2.yaml", "w") as output:
|
|
yaml.dump(ops, output)
|