Shir Amir

Results 7 comments of Shir Amir

Hi @StarsTesla, The current PCA computation code extracts features from each image using the GPU. AFAIK, There are two possible options to the OOM error you receive: (1) Your GPU...

Hi! Thanks for finding interest in our work! We did similar PCA visualizations for those in the paper with the ViT backbone of CLIP, and got similar results to those...

As mentioned in the documentation of `_extract_features`, the outputted features are of shape `Bxhxtxd`. Hence, in the line you mentioned `x.permute(0, 2, 3, 1)` reshapes to `Bxtxdxh`; `.flatten(start_dim=-2, end_dim=-1)` reshapes...

Hi! The saliency maps used in the co-segmentation, part co-segmentation and correspondences examples is acquired by aggregating heads 0, 2, 4, 5 of Dino_vit8s. We removed heads 1 and 3...

Is there any news regarding making the pybind11 functions pickleable?

Hi! Thank you for finding an interest in our paper. We used the same evaluation code and data partitions provided by Choudhury et al in [this link](https://github.com/subhc/unsup-parts) and replaced their...

To disable xformers one needs to set the environment variable XFORMERS_DISABLED=1 this + the comments above solved things for me