I am running Tensor flow 0.11. This is the code which I just copied from TensorFlow tutorial to load CSV dataset.
Code
import tensorflow as tf
import numpy as np
IRIS_TRAINING = "iris_training.csv"
IRIS_TEST = "iris_test.csv"
# Load datasets.
training_set = tf.contrib.learn.datasets.base.load_csv(filename=IRIS_TRAINING, target_dtype=np.int)
test_set = tf.contrib.learn.datasets.base.load_csv(filename=IRIS_TEST, target_dtype=np.int)
Error
AttributeError: 'module' object has no attribute 'load_csv'
My question is i ran the same example in mac it was working fine but when i run it in ubuntu 14.04 LTS it shows this error. Can someone help to solve this issue.