llgc专题

【代码解读】LLGC

对象创建: model = LLGC(description.size(1), label.max().item()+1, args.drop_out, args.use_bias).to(device) 模型使用: output = model(train_features) LLGC: # Lorentzian MODELclass LLGC(nn.Module):def __