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
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.