tf.contrib.learn.extract_pandas_data()

tf.contrib.learn.extract_pandas_data(data)

Extract data from pandas.DataFrame for predictors.

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.
doc_TensorFlow
2016-10-14 13:05:47
Comments
Leave a Comment

Please login to continue.