()
| 30 | |
| 31 | |
| 32 | def artist_works(): # painting from the famous artist (real target) |
| 33 | a = np.random.uniform(1, 2, size=BATCH_SIZE)[:, np.newaxis] |
| 34 | paintings = a * np.power(PAINT_POINTS, 2) + (a-1) |
| 35 | return paintings |
| 36 | |
| 37 | |
| 38 | with tf.variable_scope('Generator'): |