MK

Results 7 issues of MK

Hello all, first of all as big thank you to people like @junyanz for publishing and maintaining this repo. I am running some experiments with CycleGAN aiming to generate IR/thermal...

question

Hello GAN-comrades, in this implementation `train_on_batch ` is used to train the network, which seems the best option since it is required a two-step process of training separately generator and...

Hello there, according to the paper of CycleGAN: > we update the discriminators using a history of generated images rather than the ones produced by the latest generators. We keep...

Hello, as mentioned in the description, sklearn is used to split train/val/test data for each dataset. Has anybody tried to train and evaluate C3D model on the split 01 of...

According to following lines of code from dataset.py, it seems like random flip is triggered only for testing data. https://github.com/jfzhang95/pytorch-video-recognition/blob/a63b85f351be193159eaad011115973bb99b9745/dataloaders/dataset.py#L81-L83 Do I get it wrong, or this is a bug...

Hello, is it possible to train that model in a different dataset than VOC or at least fine-tune it? Have you tried something similar? As mentioned in this [repository](https://github.com/bonlime/keras-deeplab-v3-plus/issues/56), there...

Hello, I am trying to train the model using the data generator instead of fitting all data in the memory. I am not sure if I get this right, but...