kdevoe commited on
Commit
655120d
·
verified ·
1 Parent(s): 6d53aca

Fixing code pulled from colab

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -33,7 +33,7 @@ df_train, df_holdout = train_test_split(df, test_size=0.2, random_state=42)
33
  df_val, df_test = train_test_split(df_holdout, test_size=0.5, random_state=42)
34
 
35
  persist_directory = './chroma_db'
36
- !rm -rf ./chroma_db # remove old database files if any
37
  loader = DataFrameLoader(
38
  df_train,
39
  page_content_column="q_and_a")
 
33
  df_val, df_test = train_test_split(df_holdout, test_size=0.5, random_state=42)
34
 
35
  persist_directory = './chroma_db'
36
+ rm -rf ./chroma_db # remove old database files if any
37
  loader = DataFrameLoader(
38
  df_train,
39
  page_content_column="q_and_a")