YueWangpl

Results 2 comments of YueWangpl

Did you solve it? I have a similar issue with `boolean.intersection` and setting `debug=True` returns the same Error message as not having the parameter..

For 1., according to the Decoder [code](https://github.com/cnnlstm/FSLSD_HiRes/blob/main/models/stylegan2/model.py): ``` def forward(self,source_fea,target_fea,mask): # for x in self.decoder: # print (x) for i in range(self.log_size-2): mask = transforms.Resize(source_fea[i].size(2))(mask) blended = source_fea[i] * mask...