Unsupervised Graph Association for Person Re-Identification
https://openaccess.thecvf.com/content_ICCV_2019/papers/Wu_Unsup…Unsupervised Graph Association for Person Re-identification Jinlin Wu∗1,2, Yang Yang∗1,2, Hao Liu1,2, Shengcai Liao3, Zhen Lei †1,2, and Stan Z. Li1,2 1CBSR & NLPR, Institute of Automation, Chinese Academy of Sciences, Beijing, China. 2University of Chinese Academy of Sciences, Beijing, China. 3Inception Institute of Artificial Intelligence (IIAI), Abu Dhabi, UAE,
Unsupervised graph classification/representation learning via ...
stellargraph.readthedocs.io › en › stableUnsupervised graph classification/representation learning via distances. This demo demonstrated training a graph classification model without supervision. This model could be used to compute embedding vectors or representations for graphs. The algorithm uses a ground-truth distance between graphs as a metric to train against, by embedding pairs of graphs simultaneously and combining the resulting embedding vectors to match the distance.
Deep Graph Library
https://www.dgl.aiLibrary for deep learning on graphs. ... contrastive learning for node classification. Deep Graph Infomax, unsupervised learning, node classification.
Unsupervised Graph Classification — CogDL 0.2.0 documentation
cogdl.readthedocs.io › en › 0To create a model for task unsupervised graph classification, the following functions have to be implemented. add_args(parser) : add necessary hyper-parameters used in model. @staticmethod def add_args ( parser ): parser . add_argument ( "--hidden-size" , type = int , default = 128 ) parser . add_argument ( "--nn" , type = bool , default = False ) parser . add_argument ( "--lr" , type = float , default = 0.001 ) # ...