SYMBOL INDEX (37 symbols across 3 files) FILE: main.py function main (line 45) | def main(): function train (line 133) | def train(train_loader, model, criterion, optimizer, epoch): function validate (line 184) | def validate(val_loader, model, criterion, epoch): function test (line 233) | def test(val_loader, model, attr_num, description): function save_checkpoint (line 323) | def save_checkpoint(state, epoch, prefix, filename='.pth.tar'): class AverageMeter (line 334) | class AverageMeter(object): method __init__ (line 336) | def __init__(self): method reset (line 339) | def reset(self): method update (line 345) | def update(self, val, n=1): function adjust_learning_rate (line 351) | def adjust_learning_rate(optimizer, epoch, decay_epoch): function accuracy (line 365) | def accuracy(output, target): class Weighted_BCELoss (line 382) | class Weighted_BCELoss(object): method __init__ (line 386) | def __init__(self, experiment): method forward (line 506) | def forward(self, output, target, epoch): FILE: model/inception_iccv.py function inception_iccv (line 8) | def inception_iccv(pretrained=True, debug=False, **kwargs): class ChannelAttn (line 27) | class ChannelAttn(nn.Module): method __init__ (line 28) | def __init__(self, in_channels, reduction_rate=16): method forward (line 34) | def forward(self, x): class SpatialTransformBlock (line 43) | class SpatialTransformBlock(nn.Module): method __init__ (line 44) | def __init__(self, num_classes, pooling_size, channels): method stn (line 61) | def stn(self, x, theta): method transform_theta (line 66) | def transform_theta(self, theta_i, region_idx): method forward (line 75) | def forward(self, features): class InceptionNet (line 92) | class InceptionNet(nn.Module): method __init__ (line 93) | def __init__(self, num_classes=51): method _upsample_add (line 109) | def _upsample_add(self, x, y): method forward (line 114) | def forward(self, input): class BNInception (line 130) | class BNInception(nn.Module): method __init__ (line 134) | def __init__(self): method features (line 357) | def features(self, input): method forward (line 589) | def forward(self, input): FILE: utils/datasets.py function default_loader (line 10) | def default_loader(path): class MultiLabelDataset (line 12) | class MultiLabelDataset(data.Dataset): method __init__ (line 13) | def __init__(self, root, label, transform = None, loader = default_loa... method __getitem__ (line 29) | def __getitem__(self, index): method __len__ (line 37) | def __len__(self): function Get_Dataset (line 165) | def Get_Dataset(experiment, approach):