tf.contrib.learn.extract_pandas_data

View source on GitHub

Extract data from pandas.DataFrame for predictors. (deprecated)

Given a DataFrame, will extract the values and cast them to float. The DataFrame is expected to contain values of type int, float or bool.

data pandas.DataFrame containing the data to be extracted.

A numpy ndarray of the DataFrame's values as floats.

ValueError if data contains types other than int, float or bool.