Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -80,6 +80,8 @@ if (should_train_model=='1'): #train model
|
|
80 |
#file_train_df = fetch_and_update_training_data(file_path_train)
|
81 |
#file_test_df = pd.read_csv(file_path_test)
|
82 |
|
|
|
|
|
83 |
|
84 |
#combine dataframes to get all possible labels/classifications for both training and evaluating - to get all possible labels (intents)
|
85 |
df = pd.concat([file_train_df, file_test_df], ignore_index=True)
|
|
|
80 |
#file_train_df = fetch_and_update_training_data(file_path_train)
|
81 |
#file_test_df = pd.read_csv(file_path_test)
|
82 |
|
83 |
+
file_train_df = pd.read_csv(file_path_train)
|
84 |
+
file_test_df = pd.read_csv(file_path_test)
|
85 |
|
86 |
#combine dataframes to get all possible labels/classifications for both training and evaluating - to get all possible labels (intents)
|
87 |
df = pd.concat([file_train_df, file_test_df], ignore_index=True)
|