Upload torchscript_model.pt
Browse filesThis commit adds a torchscript version of the TILs inceptionv4 model
```python
import torch
import wsinfer
w = wsinfer.get_model_weights('inception_v4nobn', 'TCGA-TILs-v1')
model = w.load_model()
c = torch.jit.script(model, example_inputs=[(torch.ones(1, 3, w.transform.resize_size, w.transform.resize_size),)])
torch.jit.save(c, root / w.url_file_name)
```
- torchscript_model.pt +3 -0
torchscript_model.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:faf0182445e8ecc2122cfb2b28d415330fcb35d7fac0092721bf4603667abd67
|
3 |
+
size 164704426
|