CycleGAN Apple-to-Orange Translation Trained on ImageNet Competition Data

Turn apples into oranges in a photo

Released in 2017, this model exploits a novel technique for image translation, in which two models translating from A to B and vice versa are trained jointly with adversarial training. In addition to the adversarial loss, cycle consistency is also enforced in the loss function: when the output of the first translator is fed into the second, the final result is encouraged to match the input of the first translator. This allows successful training for image translation tasks in which only unpaired training data can be collected. This model was trained to translate apples into oranges.

Number of layers: 94 | Parameter count: 2,855,811 | Trained size: 12 MB |

Training Set Information

Examples

Resource retrieval

Get the pre-trained net:

In[1]:=
NetModel["CycleGAN Apple-to-Orange Translation Trained on ImageNet \
Competition Data"]
Out[1]=

Basic usage

Run the net on a photo:

In[2]:=
(* Evaluate this cell to get the example input *) CloudGet["https://www.wolframcloud.com/obj/cc10dfc8-130f-4089-8792-643dd99d37a2"]
Out[2]=

Adapt to any size

Automatic image resizing can be avoided by replacing the net encoders. First get the net:

In[3]:=
net = NetModel[
  "CycleGAN Apple-to-Orange Translation Trained on ImageNet \
Competition Data"]
Out[3]=

Get a photo:

In[4]:=
(* Evaluate this cell to get the example input *) CloudGet["https://www.wolframcloud.com/obj/dbc270fa-5512-41d4-8866-dbb9a8ac914b"]

Create a new encoder with the desired dimensions:

In[5]:=
netEnc = NetEncoder[{"Image", ImageDimensions[img]}]
Out[5]=

Attach the new net encoder and run the network:

In[6]:=
resizedNet = NetReplacePart[
  net, {"Input" -> netEnc, "Output" -> NetDecoder[{"Image"}]}]
Out[6]=
In[7]:=
resizedNet[img]
Out[7]=

Net information

Inspect the sizes of all arrays in the net:

In[8]:=
NetInformation[
 NetModel["CycleGAN Apple-to-Orange Translation Trained on ImageNet \
Competition Data"], "ArraysSizes"]
Out[8]=

Obtain the total number of parameters:

In[9]:=
NetInformation[
 NetModel["CycleGAN Apple-to-Orange Translation Trained on ImageNet \
Competition Data"], "ArraysTotalElementCount"]
Out[9]=

Obtain the layer type counts:

In[10]:=
NetInformation[
 NetModel["CycleGAN Apple-to-Orange Translation Trained on ImageNet \
Competition Data"], "LayerTypeCounts"]
Out[10]=

Display the summary graphic:

In[11]:=
NetInformation[
 NetModel["CycleGAN Apple-to-Orange Translation Trained on ImageNet \
Competition Data"], "SummaryGraphic"]
Out[11]=

Export to MXNet

Export the net into a format that can be opened in MXNet:

In[12]:=
jsonPath = Export[FileNameJoin[{$TemporaryDirectory, "net.json"}], NetModel["CycleGAN Apple-to-Orange Translation Trained on ImageNet \
Competition Data"], "MXNet"]
Out[12]=

Export also creates a net.params file containing parameters:

In[13]:=
paramPath = FileNameJoin[{DirectoryName[jsonPath], "net.params"}]
Out[13]=

Get the size of the parameter file:

In[14]:=
FileByteCount[paramPath]
Out[14]=

The size is similar to the byte count of the resource object:

In[15]:=
ResourceObject[
  "CycleGAN Apple-to-Orange Translation Trained on ImageNet \
Competition Data"]["ByteCount"]
Out[15]=

Represent the MXNet net as a graph:

In[16]:=
Import[jsonPath, {"MXNet", "NodeGraphPlot"}]
Out[16]=

Requirements

Wolfram Language 11.3 (March 2018) or above

Resource History

Reference