ProGamerGov
ProGamerGov
It looks like these lines of code: https://github.com/SoumitraAgarwal/Golfer-face-analysis/blob/master/Image%20processing/Reshape.py#L199-L202, are responsible for the black images. Changing the values to match the ones output to the terminal while running Reshape.py, creates the...
This project works really well for aligning faces: https://github.com/roblourens/facealign You can also use SNFaceCrop to extract faces from images, but SNFaceCrop does not align the faces. After you have your...
So it seems that my very amateur mistake of forgetting the seed value parameter, and not using a high enough temporal weight, were the cause of the issue. But now...
Using `temporal_weight=1e4` combined with `-num_passes 5 -use_temporalLoss_after 1`: Pass 1: https://gfycat.com/HastyBackBabirusa Pass 2: https://gfycat.com/UnkemptAnxiousAgouti Pass 3: https://gfycat.com/SmartDisloyalAntlion Pass 4: https://gfycat.com/SilentImaginaryIguana Pass 5: https://gfycat.com/ScaryDemandingAlpineroadguidetigerbeetle It looks like I just needed to...
@rahat-yasir My issue was with making a looping gif. The solution for that was just more passes. But some people told me that you can also split the video at...
@YogaFlame That looks like what happens when you use a negative content weight.
Adam just needs it's parameters adjusted to achieve good results: https://github.com/jcjohnson/neural-style/wiki/Fine-Tuning-The-Adam-Optimizer
I tried installing the appropriate wheel for 12.1, but it downgraded PyTorch to 12.0 and installed the cpu version. It seems work after I reinstalled the correct pytorch version.
I am currently experiencing the same issue. I'm using Ubuntu 16.04 Desktop. ``` ubuntu@ubuntu-VirtualBox:~/AI_Composer$ python rnn_sample.py --config_file new_config_file.config Traceback (most recent call last): File "rnn_sample.py", line 12, in from model...
Following the Tensorflow install guide on this page: https://github.com/tensorflow/tensorflow/blob/master/tensorflow/g3doc/get_started/os_setup.md, but with the modified download link: ``` export TF_BINARY_URL=https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.8.0-cp27-none-linux_x86_64.whl sudo pip install --upgrade $TF_BINARY_URL ``` Trying to run the code results...