Image-OutPainting icon indicating copy to clipboard operation
Image-OutPainting copied to clipboard

๐Ÿ– Keras Implementation of Painting outside the box

Results 14 Image-OutPainting issues
Sort by recently updated
recently updated
newest added

Isn't the code just training generator? The discriminator loss doesn't seem to be going down at all. Also there is a line .trainable = False for discriminator, I'm not super...

Bumps [numpy](https://github.com/numpy/numpy) from 1.15.4 to 1.22.0. Release notes Sourced from numpy's releases. v1.22.0 NumPy 1.22.0 Release Notes NumPy 1.22.0 is a big release featuring the work of 153 contributors spread...

dependencies

Bumps [tensorflow-gpu](https://github.com/tensorflow/tensorflow) from 1.10.0 to 2.7.2. Release notes Sourced from tensorflow-gpu's releases. TensorFlow 2.7.2 Release 2.7.2 This releases introduces several vulnerability fixes: Fixes a code injection in saved_model_cli (CVE-2022-29216) Fixes...

dependencies

Bumps [pillow](https://github.com/python-pillow/Pillow) from 6.2.0 to 9.0.1. Release notes Sourced from pillow's releases. 9.0.1 https://pillow.readthedocs.io/en/stable/releasenotes/9.0.1.html Changes In show_file, use os.remove to remove temporary images. CVE-2022-24303 #6010 [@โ€‹radarhere, @โ€‹hugovk] Restrict builtins within...

dependencies

I train 500 epoch, and get the different results ![0](https://user-images.githubusercontent.com/26055649/43944486-a452bba6-9cb1-11e8-8d6a-201f020d5117.jpg) ![1](https://user-images.githubusercontent.com/26055649/43944499-b29a9e40-9cb1-11e8-8e78-5e6416685de5.jpg) ![2](https://user-images.githubusercontent.com/26055649/43944501-b494560a-9cb1-11e8-8004-ed68970f67c0.jpg) ![3](https://user-images.githubusercontent.com/26055649/43944503-b5d1db5a-9cb1-11e8-9b4e-926cb996bfc9.jpg) ![4](https://user-images.githubusercontent.com/26055649/43944504-b6e3c0e4-9cb1-11e8-9cc3-7206f6c2d00a.jpg) ![5](https://user-images.githubusercontent.com/26055649/43944513-bb626e90-9cb1-11e8-8791-a86ad78bf2d8.jpg) ![6](https://user-images.githubusercontent.com/26055649/43944514-bbd10e18-9cb1-11e8-8c00-7f593a14b74c.jpg) ![7](https://user-images.githubusercontent.com/26055649/43944519-bd571d0e-9cb1-11e8-98d9-a1c798a0f06d.jpg)

Bumps [opencv-python](https://github.com/skvark/opencv-python) from 3.4.3.18 to 4.2.0.32. Release notes Sourced from opencv-python's releases. 4.2.0.32 opencv-python: https://pypi.org/project/opencv-python/ opencv-contrib-python: https://pypi.org/project/opencv-contrib-python/ opencv-python-headless: https://pypi.org/project/opencv-python-headless/ opencv-contrib-python-headless: https://pypi.org/project/opencv-contrib-python-headless/ OpenCV version 4.2.0. Changes: macOS environment updated from xcode8.3...

dependencies

In outpaint.ipynb, below line gives the following error. `CONF_GENERATED_IMAGE = DCRM(GENERATED_IMAGE)` ValueError: number of input channels does not match corresponding dimension of filter, 3 != 256 I found that the...

I want to train your network with my data. please let me know how can I train your network with my own data.

it's my code : ```python def mask_width(img): image = img.copy() height = image.shape[0] width = image.shape[1] new_width = int(width * MASK_PERCENTAGE) mask = np.ones([height, new_width, 3]) missing_x = img[:, :new_width]...

if i set epoch=200,will the result become worse? must i set epoch=500 and the train result could be the best?