Torstein Grindvik
Torstein Grindvik
Recently had issues with [Apple Depth Pro](https://github.com/apple/ml-depth-pro) , could it be added? It has a [script for weights](https://github.com/apple/ml-depth-pro/blob/main/get_pretrained_models.sh). Another one of interest to me is [LVSM: A Large View Synthesis...
> ```rust > let device: Device = Default::default(); >device.with_dtype(DType::BF16, || { > let tensor = Tensor::random(...); > assert_eq!(tensor.dtype(), DType::BF16); >}); This would mean I would end up doing ```rust let...
Same for LPIPS specifically for the squeeze variant, the others are ok: ```python import lpips import torch def main(size=(1920, 1080)): (width, height) = size for net in ["alex", "vgg", "squeeze"]:...