목록전체 글 (2)
나의 이름은...
요즘 graph pooling에 대해 공부해보고 있다. 관련된 논문들을 찾아보던 중 Neurips 2020 논문인 'Rethinking pooling in graph neural networks'라는 논문이 눈길을 끌어서 읽어보게 되었다. 아래는 논문의 링크이다. https://arxiv.org/abs/2010.11418 Rethinking pooling in graph neural networks Graph pooling is a central component of a myriad of graph neural network (GNN) architectures. As an inheritance from traditional CNNs, most approaches formulate graph poolin..
아나콘다 가상환경을 생성하고, 삭제할 때 필요한 명령어들이다. 가상환경 생성: conda create -n [name] python=3.5 가상환경 삭제: conda env remove -n [name] 가상환경 복사: conda create -n [env-name] --clone [src-env-name] 아나콘다 업데이트가 필요할 때는 아래 명령어로 업데이트 할 수 있다. conda update conda update -n base conda conda update --all python -m pip install --upgrade pip 가상환경에 package를 설치할 때 pip와 conda를 혼용해서 사용하면, dependency로 인한 문제가 생길 수 있다. 이럴 때는 conda list 명령..