You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hi, thanks for the code.
In the paper R-VGAE, Sime-supervised uses concept-concept edges, but in the code there is only document-concept, document-document adjacency matrix. if args.ds.startswith('tf'): if args.labels == 'y': adj_cd, adj_dd, features, tags_nodes = my_load_data_tfidf_semi(args.wmd) else: adj_cd, adj_dd, features = my_load_data_tfidf(args.wmd)
I want to know where concept-concept edge is used?
When using TF-IDF as the embedding feature, how is the feature of the concept obtained?
I know the tags of concepts are 0-321, what are the tags of documents?
The text was updated successfully, but these errors were encountered:
hi, thanks for the code.
In the paper R-VGAE, Sime-supervised uses concept-concept edges, but in the code there is only document-concept, document-document adjacency matrix.
if args.ds.startswith('tf'): if args.labels == 'y': adj_cd, adj_dd, features, tags_nodes = my_load_data_tfidf_semi(args.wmd) else: adj_cd, adj_dd, features = my_load_data_tfidf(args.wmd)
The text was updated successfully, but these errors were encountered: