TensorFlow: how is dataset.train.next_batch defined?

The mnist object is returned from the read_data_sets() function defined in the tf.contrib.learn module. The mnist.train.next_batch(batch_size) method is implemented here, and it returns a tuple of two arrays, where the first represents a batch of batch_size MNIST images, and the second represents a batch of batch-size labels corresponding to those images. The images are returned … Read more

Import file from parent directory?

I have the following directory structure: application/main.py contains some functions. tests/main.py will contain my tests for these functions but I can’t import the top level main.py. I get the following error: I am attempting to import using the following syntax: What am I doing wrong?