Spaces:
Sleeping
Sleeping
jaifar530
commited on
fix
Browse files
app.py
CHANGED
@@ -233,10 +233,10 @@ def AI_vs_AI_RandomForest_88_Samples(df):
|
|
233 |
with open('AI_vs_AI_RandomForest_88_Samples.pkl', 'wb') as file:
|
234 |
file.write(response.content)
|
235 |
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
input_features = df['paragraph'].apply(extract_features_AI_vs_AI_RandomForest_88_Samples)
|
241 |
|
242 |
predicted_llm = clf_loaded.predict(input_features)
|
|
|
233 |
with open('AI_vs_AI_RandomForest_88_Samples.pkl', 'wb') as file:
|
234 |
file.write(response.content)
|
235 |
|
236 |
+
# At this point, the pickle file should exist, either it was already there, or it has been downloaded and extracted.
|
237 |
+
with open('AI_vs_AI_RandomForest_88_Samples.pkl', 'rb') as file:
|
238 |
+
clf_loaded = pickle.load(file)
|
239 |
+
|
240 |
input_features = df['paragraph'].apply(extract_features_AI_vs_AI_RandomForest_88_Samples)
|
241 |
|
242 |
predicted_llm = clf_loaded.predict(input_features)
|