When I try to open the webUI from "start-webui.bat", I'm getting this error: ModuleNotFoundError: No module named 'pyparsing' But when I try to manually download the module, it says already satisfied. I tried to add to python path as well but its already there as well. ...
class NormHead(nn.Module): def __init__(self, hidden_size, vocab_size, bias=False): super().__init__() self.weight = nn.Parameter(torch.empty((vocab_size, hidden_size))) nn.init.kaiming_uniform_(self.weight, a=math.sqrt(5)) self.first_flag = True def forward(self, hidden_sta...