Ramazan

Results 4 issues of Ramazan

### Problem Description rx 6700 xt does not support rocm HIP SDK. ### Operating System win10 ### CPU r5 5600 ### GPU AMD Radeon RX 6700 XT ### Other _No...

Windows

Is it possible for the inpainting model to ignore certain parts of the image when making predictions?For example, I have a picture like this. While inpainting certain parts of this...

```bash return self.b + self.b_u[:,np.newaxis] + self.b_i[np.newaxis:,] + self.P.dot(self.Q.T) ``` ```bash self.b_i[np.newaxis:,] --> self.b_i[np.newaxis, :] ```

in dataset/base.py file, this line: smap = {s: i for i, s in enumerate(set(df['sid']))} should be changed to: smap = {s: i + 1 for i, s in enumerate(set(df['sid']))} because...