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?

已提問 2 年前檢視次數 1146 次
1 個回答
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
已回答 2 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南