pygcn
pygcn copied to clipboard
Sort the one-hot-encoding for reproducible results
To #58, the results are not reproducible. It's caused by the one-hot encoding for the label while loading the data. We can get reproducible results after fixing the class order.
To #58, the results are not reproducible. It's caused by the one-hot encoding for the label while loading the data. We can get reproducible results after fixing the class order.
why the order of classes will change the result?
To #58, the results are not reproducible. It's caused by the one-hot encoding for the label while loading the data. We can get reproducible results after fixing the class order.
why the order of classes will change the result?
set()
returns different results
classes = set(labels)
similar to https://github.com/tkipf/pygcn/pull/53