JiaxuanYou / graph-generation

GraphRNN: Generating Realistic Graphs with Deep Auto-regressive Models

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How does the GraphRNN-S deal with variable length?

brando90 opened this issue · comments

I was wondering if you just set the output to make possible edges for the current graph? My guess that is the case based on:

output = MLP_plain(h_size=args.hidden_size_rnn, embedding_size=args.embedding_size_output, y_size=args.max_prev_node).cuda()

can anyone confirm?