|
@@ -32,6 +32,11 @@ def read_predict(hdfs_path: str) -> list:
|
|
|
|
|
|
|
|
|
def _main(model1_predict_path: str, model2_predict_path: str):
|
|
|
+
|
|
|
+
|
|
|
+ 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)
|
|
|
|