uyo9ko

Results 3 issues of uyo9ko

in the train_vqgan.py, the code `real_fake_images = torch.cat((imgs[:4], decoded_images.add(1).mul(0.5)[:4]))` should be revised `real_fake_images = torch.cat((imgs.add(1).mul(0.5)[:4], decoded_images.add(1).mul(0.5)[:4]))`

For minigpt-v2, I've executed the following code to perform CLI-based inference. , but I would greatly appreciate it if you could provide an official CLI-based inference code for more straightforward...