Skip to content

yixuanrobot/dreampower

Β 
Β 

Repository files navigation

Build Status GitHub All Releases

GitHub GitHub top language Codacy Badge Maintainability

DreamPower

DreamPower is a deep learning algorithm based on DeepNude with the ability to predict what a naked person's body looks like.

DreamPower is a CLI application, if you are looking for a friendly way to use DreamPower, please use the user interface: DreamTime.

Differences with DeepNude

DreamPower is a fork of deepnude_official but with constant improvements from the developers of DreamNet and the world, we stand out for offering these features:

  • GPU Processing (Transformation in ~10 seconds!)
  • Multiple GPU support
  • Multithreading
  • Auto-resize, auto-rescale, etc
  • Support to transform animated GIFs
  • Customization: size of boobs, pubic hair, etc.
  • Constant updates!

DreamNet

Join the DreamNet social networks, the community interested in developing this technology. You can also join just to talk and make friends:

Keybase Twitter Facebook

GitHub followers DreamNet NotABug GitGud

Support

Developing DreamNet applications is time consuming! Help us accelerate development and offer better updates!

Ko-fi

patreon

Source Code

This technology was going to arrive sooner or later and we want to keep it open and free for everyone. Help us in our goal of developing more applications with this technology.

GitHub stars

DreamNet

NotABug

GitGud

If you want to share or modify this software please do it for the same purpose as we do and always release the source code of your modifications. Read the LICENSE for more information.

πŸ’œ Binaries

Requirements

  • 64 bits OS
  • Windows 7 SP1/Windows 8/Windows 10 1803+
  • Ubuntu 16.04+
  • macOS
  • 8 GB of RAM or more.

GPU Processing Requirements

πŸ‘‰ If you do not have an NVIDIA or compatible graphics card you can use CPU processing.

Download

GitHub All Releases

Installation

  • Extract the file that contains the CLI, it can be anywhere you want it, this should generate a folder called dreampower
  • Inside the folder called dreampower run the CLI executable dreampower checkpoints download to download the checkpoints.

When you update DreamPower it will only be necessary to download the file that contains the DreamPower, you can reuse the checkpoints (unless we tell you otherwise)

Using package manager

Archlinux (AUR)

Available on the Archlinux User Repository in two version:

Usage

In the command line terminal run:

dreampower --help

This will print out help on the parameters the algorithm accepts.

The input image should be 512px * 512px in size (parameters are provided to auto resize/scale your input).


πŸ’» Development > 🚧 Area only for developers!

If you are a developer: Consider making a fork of the project and make PR of any improvement you can do, also join our server in Keybase where we have channels exclusively for development.

Requirements

Prerequisite

Before you can launch the main alogirthm script you'll need to install certain packages in your Python3 environment.

We've added a setup script for the supported OSes in the 'scripts' folder that will do this for you.

The following OSes are supported:

  • Windows
  • MacOS
  • Linux

Launch the script

python3 main.py --help

This will print out help on the parameters the algorithm accepts.

The input image should be 512px * 512px in size (parameters are provided to auto resize / scale your input).


How does DreamPower work?

DreamPower uses an interesting method to solve a typical AI problem, so it could be useful for researchers and developers working in other fields such as fashion, cinema and visual effects.

The algorithm uses a slightly modified version of the pix2pixHD GAN architecture. If you are interested in the details of the network you can study this amazing project provided by NVIDIA.

A GAN network can be trained using both paired and unpaired dataset. Paired datasets get better results and are the only choice if you want to get photorealistic results, but there are cases in which these datasets do not exist and they are impossible to create. A database in which a person appears both naked and dressed, in the same position, is extremely difficult to achieve, if not impossible.

We overcome the problem using a divide-et-impera approach. Instead of relying on a single network, we divided the problem into 3 simpler sub-problems:

    1. Generation of a mask that selects clothes
    1. Generation of a abstract representation of anatomical attributes
    1. Generation of the fake nude photo

Original problem:

Dress To Nude

Divide-et-impera problem:

Dress To Mask Mask To MaskDet MaskDeto To Nude

This approach makes the construction of the sub-datasets accessible and feasible. Web scrapers can download thousands of images from the web, dressed and nude, and through photoshop you can apply the appropriate masks and details to build the dataset that solve a particular sub problem. Working on stylized and abstract graphic fields the construction of these datasets becomes a mere problem of hours working on photoshop to mask photos and apply geometric elements. Although it is possible to use some automations, the creation of these datasets still require great and repetitive manual effort.

Computer Vision Optimization

To optimize the result, simple computer vision transformations are performed before each GAN phase, using OpenCV. The nature and meaning of these transformations are not very important, and have been discovered after numerous trial and error attempts.

Considering these additional transformations, the phases of the algorithm are the following:

  • dress -> correct [OPENCV]
  • correct -> mask [GAN]
  • mask -> maskref [OPENCV]
  • maskref -> maskdet [GAN]
  • maskdet -> maskfin [OPENCV]
  • maskfin -> nude [GAN]

Transformations

About

DeepNude with DreamNet improvements.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 96.1%
  • JavaScript 3.9%