PyTorch Geometric 패키지 관련 환경설정 오류 해결
·
개발
ErrorPython 환경에서 PyTorch Geometric과 관련된 패키지를 설치하려고 할 때 다음과 같은 오류가 발생했음:ModuleNotFoundError: No module named 'torch_geometric'이후 추가 설치를 시도했으나 torch-scatter, torch-sparse, torch-cluster 같은 패키지에서 빌드 오류가 나타났음:ERROR: Failed building wheel for torch-scatterERROR: Failed building wheel for torch-sparse...RuntimeError: The detected CUDA version (12.1) mismatches the version that was used to compile PyTo..
Attention map 디코더 visualize
·
개발
Test10 (output) I'm making virtual try-on model, but the result from the model wasn’t as desired. So to understand where the model could be improved, I decided to visualize the decoder’s attention map.Modules UsedTo build the virtual try-on model, I used the BasicTransformerBlock from the Hugging Face diffusers.models.attention library. The decoder consists of multiple CrossAttnFirstTransformerB..