Reyad-Ahmmed commited on
Commit
c91da73
·
verified ·
1 Parent(s): aaf037e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -82,11 +82,11 @@ if (should_train_model=='1'): #train model
82
  file_path_test = test_file + ".csv"
83
 
84
 
85
- file_train_df = fetch_and_update_training_data(file_path_train)
86
 
87
  # Read the CSV files into pandas DataFrames they will later by converted to DataTables and used to train and evaluate the model
88
  #file_train_df = pd.read_csv(file_path_train)
89
- file_train_df = fetch_and_update_training_data(file_path_train)
90
  file_test_df = pd.read_csv(file_path_test)
91
 
92
 
 
82
  file_path_test = test_file + ".csv"
83
 
84
 
85
+ file_train_df = fetch_and_update_training_data()
86
 
87
  # Read the CSV files into pandas DataFrames they will later by converted to DataTables and used to train and evaluate the model
88
  #file_train_df = pd.read_csv(file_path_train)
89
+ file_train_df = fetch_and_update_training_data()
90
  file_test_df = pd.read_csv(file_path_test)
91
 
92