|
@@ -32,6 +32,11 @@ def read_predict(hdfs_path: str) -> list:
|
|
|
|
|
|
|
|
|
def _main(model1_predict_path: str, model2_predict_path: str):
|
|
|
+
|
|
|
+ # 设置 pandas 显示选项
|
|
|
+ pd.set_option('display.max_rows', None) # 显示所有行
|
|
|
+ pd.set_option('display.max_columns', None) # 显示所有列
|
|
|
+
|
|
|
model1_result = read_predict(model1_predict_path)
|
|
|
model2_result = read_predict(model2_predict_path)
|
|
|
|