单独对prompt设置网络模块,设置可学习的token embedding,根据预设的位置随机初始化embedding,经过LSTM和MLP得到最终token表征。 classPromptEncoder(nn.Module):def__init__(self,prompt_num,embedding_size):super(PromptEncoder,self).__init__()self.input_ids=torch.arange(0,prompt_num).long().to(DEVICE)self...