Exemplo n.º 1
0
 def test_dataset_paths(self):
     w.FLAGS.batch_size = 2
     with self.test_session() as sess:
         np.set_printoptions(threshold=np.nan)
         x, _ = w.dataset_paths(['assets/cat.png'])
         sess.run(tf.tables_initializer())
         self.assertTupleEqual(x.eval().shape, (1, 300, 300, 4))
Exemplo n.º 2
0
 def ds():
     return w.dataset_paths([
         'assets/cat-selection.png',
     ])
Exemplo n.º 3
0
 def dm():
     return w.dataset_paths([
         'assets/empty.png',
     ])
Exemplo n.º 4
0
 def d_cherry():
     return w.dataset_paths([
         'assets/cat.png',
     ])