mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-14 20:57:59 +00:00
7 lines
107 B
Python
7 lines
107 B
Python
|
|
import sys
|
||
|
|
import torch
|
||
|
|
|
||
|
|
if __name__ == '__main__':
|
||
|
|
print(torch.jit.load(sys.argv[1]))
|
||
|
|
sys.exit(0)
|