ccl

Results 51 comments of ccl

![Screenshot from 2019-08-12 08-39-20](https://user-images.githubusercontent.com/36214675/62841596-b6f75400-bcdc-11e9-9dfe-57be2eb814a9.png) Here is where I adjusted in train.py, including two scope names to args.name.

I have some trouble with vgg_a and vgg_16 in vgg.py. How 'scale' inline 78 related to VGG downsample. First I think it was the max pool layer that related to...

I have set it to None in line: 19. ![Screenshot from 2019-08-13 10-48-30](https://user-images.githubusercontent.com/36214675/62911738-05c5ec00-bdb8-11e9-9ee7-d36340f6307f.png) And here is where that report the error above: ![Screenshot from 2019-08-13 10-56-53](https://user-images.githubusercontent.com/36214675/62912049-1d51a480-bdb9-11e9-8928-442a83a99d93.png)

I am still suffering from vgg_16 and vgg_a. It seemed that only the vgg_19 can get the same output shape of the ground truth. Maybe I am in the wrong...

I used "np.random" in my custom function. how can I convert the same random value to image and mask image. ``` # Create your new operation by inheriting from the...

even when I remove the random value codes, the custom function still does not work in the mask image.

here is all of my codes. ``` import numpy as np import Augmentor from Augmentor.Pipeline import Operation import cv2 from PIL import Image import os import glob # Create your...