Skip to content

Commit

Permalink
Remove temp folder
Browse files Browse the repository at this point in the history
  • Loading branch information
roquelopez committed Nov 9, 2023
1 parent da75283 commit 6c3155f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions streamlit/pages/1_🔎_Search_Pipelines.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
must contain a CSV file named "data.csv" that contains the training data.
If the 'data.csv' includes a column named "image_path" containing file
paths to images that are also included in the CSV file, the system will
automatically load process thse images as well.
automatically load process these images as well.
""",
icon="ℹ️",
)
Expand Down Expand Up @@ -87,7 +87,7 @@
st.stop()

print("Initializing AutoML...")
automl = AutoMLClassifier("./tmp", time_bound=time_bound, start_mode="spawn")
automl = AutoMLClassifier(time_bound=time_bound, start_mode="spawn")
print("Searching models...")
with st.spinner("Searching models..."):
automl.fit(X_train, y_train)
Expand Down

0 comments on commit 6c3155f

Please sign in to comment.