tf.contrib.learn.extract_pandas_data

tf.contrib.learn.extract_pandas_data(data)

Defined in tensorflow/contrib/learn/python/learn/learn_io/pandas_io.py.

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.

Args:

  • data: pandas.DataFrame containing the data to be extracted.

Returns:

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

Raises:

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