How to convert binary file to pandas dataframe

0

I use Amazon Sagemaker for model training and prediction. I have a problem with the returned data with predictions. I am trying to convert prediction data to pandas dataframe format.

After the model is deployed:

from sagemaker.serializers import CSVSerializer xgb_predictor=estimator.deploy( initial_instance_count=1, instance_type='ml.g4dn.xlarge', serializer=CSVSerializer() )

I made a prediction on the test data:

predictions=xgb_predictor.predict(first_day.to_numpy())

But, returned prediction results are in a binary file. This is a sample returned predictions:

b'2.092024326324463\n10.584211349487305\n18.23127555847168\n2.092024326324463

How can I convert prediction data to pandas dataframe?

asked 2 years ago1094 views
1 Answer
0

Hi!

It looks like you have a bytes response, have a look at this post, this will help you with the transform to dataframe.

Hope it helps :)

AWS
Dani M
answered 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions