Deep_GCN_Benchmarking icon indicating copy to clipboard operation
Deep_GCN_Benchmarking copied to clipboard

the use of self.cached in models/GCN.py

Open Bolairex opened this issue 4 years ago • 1 comments

Could you please explain the use of self.cached in models/GCN.py? If the setting is transductive and the self.cached is set to 'False' manually, will that influence the performance (e.g. ACC) of the algorithm?

Bolairex avatar Oct 29 '21 09:10 Bolairex

the self.cached prevented the model from recomputing the normalized graph over and over and just memorizing it since the graph is the same in inductive. Without cached, each run might take longer, but I doubt the ACC will suffer.

ScottHoang avatar Dec 06 '21 23:12 ScottHoang