Jeffrey Jedele

Results 8 comments of Jeffrey Jedele

@tobiascz , @NguyenDangBinh : 1. It seems PyTorch's `load()` function also handles unpickling arguments directly (https://github.com/pytorch/pytorch/blob/6a6983ed7f14f8335a5b5614928713cb79658281/torch/serialization.py#L301), so you probably do not have to monkey patch the pickle module but just...

Also, are you sure it's encoded in 'latin1'? When I google for the error, some answers hint at UTF8 (e.g. https://stackoverflow.com/questions/21393758/unicodedecodeerror-ascii-codec-cant-decode-byte-0xe5-in-position-0-ordinal) So maybe also give `encoding='utf-8'` a try.

I also think this would be a good addition - Resnet50 can be a bit heavy for some tasks. Are there any reasons for them not being included? It seems...

Also because there is another Resnet implementation in [Keras Contrib](https://github.com/keras-team/keras-contrib) including 18 and 34.

I also landed here after a while of search. Following the "documentation as code" mantra, I also feel like it's preferable to have as much as the documentation as possible...

Hey, I'm looking for something similar (working on a proxy-style application which would do some downstream logic depending on what was the called AE title during the transfer). Now I'm...

In case it helps anyone, here is a rather ugly workaround which manages to do the same with version 0.8.0 as is: ```rust struct AssociationContext { called_ae_title: String, calling_ae_title: String,...

I just ran into the same problem. The problem seems to be that all Monai operations expect data tensors in CHW[D] format, while `LoadImage` returns just the HW[D] part. `data...