Commit c46264b2 authored by 张彦钊's avatar 张彦钊

add print

parent a6950bc3
......@@ -121,7 +121,7 @@ def save_result(queue_name, x_list):
print(score_df)
mm_scaler = MinMaxScaler()
mm_scaler.fit(score_df)
score_df = mm_scaler.transform(score_df)
score_df = pd.DataFrame(mm_scaler.transform(score_df))
print("概率前十行:")
print(score_df)
score_df = score_df.rename(columns={0: "score"})
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment