Emma Thompson

Results 26 issues of Emma Thompson

Helllo, Thank you very much opensource the "new-youtube-gesture-dataset" folder, it save me lots of time ! I print the shape of skeletons_3d of generated lmdb data file, found its shape...

This is the calculation code of structure_distance: ```python def calculate_structure_distance(self, img_pred, img_gt, mask_pred=None, mask_gt=None, use_gpu = True): img_pred = np.array(img_pred).astype(np.float32) img_gt = np.array(img_gt).astype(np.float32) assert img_pred.shape == img_gt.shape, "Image shapes should...

Does TeaCache and FirstBlockCache support applying on GGUF(https://github.com/city96/ComfyUI-GGUF) model with a little image quality drop? If yes, could anyone provide a comfyui workflow example ?

Hi, thanks a lot for open-sourcing such great work! I’m planning to create a dataset similar to [RealEstate10K](https://google.github.io/realestate10k/), and I’d like to use VGGT to estimate both camera intrinsics and...

This is how I use diffusers to load flux model: ``` import torch from diffusers import FluxPipeline pipe = FluxPipeline.from_pretrained( "/ckptstorage/repo/pretrained_weights/black-forest-labs/FLUX.1-dev", torch_dtype=torch.float16, ) device = torch.device(f"cuda:{device_number}" if torch.cuda.is_available() else "cpu")...