Update build_gradio_graph.py
Browse files- build_gradio_graph.py +3 -0
build_gradio_graph.py
CHANGED
@@ -46,6 +46,9 @@ def call_predict(inference_dict, cols_order, numerical_columns, target_columns):
|
|
46 |
def predict_from_list(x_list):
|
47 |
df = pd.DataFrame([x_list], columns=cols_order)
|
48 |
print(df.shape)
|
|
|
|
|
|
|
49 |
|
50 |
y_pred = predict(df, model_path=inference_dict["model_path"])
|
51 |
|
|
|
46 |
def predict_from_list(x_list):
|
47 |
df = pd.DataFrame([x_list], columns=cols_order)
|
48 |
print(df.shape)
|
49 |
+
print("lllllllllllllllll")
|
50 |
+
print(df)
|
51 |
+
print(".................")
|
52 |
|
53 |
y_pred = predict(df, model_path=inference_dict["model_path"])
|
54 |
|