Skip to content

Commit 85284f7

Browse files
committed
reordered library imports
1 parent 995db47 commit 85284f7

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

06_autoencoder.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
import tensorflow as tf
22
import numpy as np
33
import input_data
4-
import matplotlib.pyplot as plt
5-
import matplotlib.gridspec as gridspec
6-
import matplotlib
4+
5+
import matplotlib # to plot images
76
# Force matplotlib to not use any X-server backend.
87
matplotlib.use('Agg')
8+
import matplotlib.pyplot as plt
9+
import matplotlib.gridspec as gridspec
910

1011
## Visualizing reconstructions
1112
def vis(images, save_name):

0 commit comments

Comments
 (0)