SYMBOL INDEX (34 symbols across 8 files) FILE: demo/main.py function train (line 103) | def train(epoch): function test (line 126) | def test(epoch): FILE: demo/net_factory.py class GCN (line 7) | class GCN(nn.Module): method __init__ (line 8) | def __init__(self, channel=4): method forward (line 35) | def forward(self, x): function get_network_fn (line 49) | def get_network_fn(name): FILE: demo/utils.py class AverageMeter (line 6) | class AverageMeter(object): method __init__ (line 8) | def __init__(self): method reset (line 11) | def reset(self): method update (line 17) | def update(self, val, n=1): function accuracy (line 23) | def accuracy(output, target, topk=(1,)): function save_checkpoint (line 39) | def save_checkpoint(state, is_best, filename='checkpoint.pth.tar'): function visualize_graph (line 44) | def visualize_graph(model, writer, input_size=(1, 3, 32, 32)): function get_parameters_size (line 49) | def get_parameters_size(model): FILE: gcn/csrc/cpu/GOF_cpu.cpp function GOFForward_cpu_kernel (line 5) | void GOFForward_cpu_kernel( function GOFBackward_cpu_kernel (line 35) | void GOFBackward_cpu_kernel( function GOF_forward_cpu (line 67) | at::Tensor GOF_forward_cpu(const at::Tensor& weight, function GOF_backward_cpu (line 98) | at::Tensor GOF_backward_cpu(const at::Tensor& grad_output, FILE: gcn/csrc/vision.cpp function PYBIND11_MODULE (line 3) | PYBIND11_MODULE(TORCH_EXTENSION_NAME, m) { FILE: gcn/layers/GConv.py class GOF_Function (line 13) | class GOF_Function(Function): method forward (line 15) | def forward(ctx, weight, gaborFilterBank): method backward (line 22) | def backward(ctx, grad_output): class MConv (line 27) | class MConv(_ConvNd): method __init__ (line 31) | def __init__(self, in_channels, out_channels, kernel_size, M=4, nScale... method generate_MFilters (line 48) | def generate_MFilters(self, nScale, kernel_size): method forward (line 51) | def forward(self, x): method do_expanding (line 65) | def do_expanding(self, x): method expand_bias (line 73) | def expand_bias(self, bias): class GConv (line 81) | class GConv(MConv): method __init__ (line 85) | def __init__(self, in_channels, out_channels, kernel_size, M=4, nScale... method generate_MFilters (line 90) | def generate_MFilters(self, nScale, kernel_size): function getGaborFilterBank (line 94) | def getGaborFilterBank(nScale, M, h, w): FILE: gcn/layers/gradtest.py function gradchecking (line 5) | def gradchecking(use_cuda=False): FILE: setup.py function get_extensions (line 16) | def get_extensions():