Tools – do I need any unique tools?
This section will show you how to create the underlying infrastructure that allows you to use Large-Scale Scene Understanding (LSUN) data. This will make sure that you have created the right Docker container and that all of your folders are structured in the correct format. Here, we'll also begin the process of downloading the LSUN dataset for the DCGAN recipe.
Â
Â
Getting ready
This section will lay the groundwork for future coding sections. First, create the following folders for file storage:
DCGAN ├── data │ └── README.md ├── docker │ ├── build.sh │ ├── clean.sh │ └── Dockerfile ├── README.md ├── scripts
Make sure that you create a DCGAN
directory in the $HOME
directory in your Ubuntu installation. Many of the scripts we will develop are going to rely on this installation location when mapping volumes using Docker's commands. However, if you are comfortable with changing the mapped volumes in the run
command, you won't need to install it in $HOME...