Spaces:
Sleeping
Sleeping
jaifar530
commited on
fix files
Browse files
app.py
CHANGED
@@ -54,8 +54,8 @@ if not os.path.isfile('AI_vs_AI_RandomForest_88_Samples.pkl'):
|
|
54 |
response = requests.get(url, headers=headers)
|
55 |
|
56 |
# Save the file
|
57 |
-
with open('AI_vs_AI_RandomForest_88_Samples.pkl', 'wb') as
|
58 |
-
|
59 |
|
60 |
|
61 |
# Check if the file exists
|
@@ -69,8 +69,8 @@ if not os.path.isfile('AI_vs_AI_Ridge_2000_Samples.pkl'):
|
|
69 |
response = requests.get(url, headers=headers)
|
70 |
|
71 |
# Save the file
|
72 |
-
with open('AI_vs_AI_Ridge_2000_Samples.pkl', 'wb') as
|
73 |
-
|
74 |
|
75 |
|
76 |
|
@@ -207,8 +207,8 @@ def add_vectorized_features(df):
|
|
207 |
def AI_vs_AI_RandomForest_88_Samples(df):
|
208 |
|
209 |
# At this point, the pickle file should exist, either it was already there, or it has been downloaded and extracted.
|
210 |
-
with open('AI_vs_AI_RandomForest_88_Samples.pkl', 'rb') as
|
211 |
-
clf_loaded = pickle.load(
|
212 |
|
213 |
input_features = df['paragraph'].apply(extract_features_AI_vs_AI_RandomForest_88_Samples)
|
214 |
|
@@ -244,8 +244,8 @@ def AI_vs_AI_RandomForest_88_Samples(df):
|
|
244 |
def AI_vs_AI_Ridge_2000_Samples(df):
|
245 |
|
246 |
# At this point, the pickle file should exist, either it was already there, or it has been downloaded and extracted.
|
247 |
-
with open('AI_vs_AI_Ridge_2000_Samples.pkl', 'rb') as
|
248 |
-
clf_loaded = pickle.load(
|
249 |
|
250 |
|
251 |
input_features = df['paragraph'].apply(extract_features_AI_vs_AI_Ridge_2000_Samples)
|
@@ -265,7 +265,7 @@ def AI_vs_AI_Ridge_2000_Samples(df):
|
|
265 |
return
|
266 |
|
267 |
|
268 |
-
# Creates a button
|
269 |
press_me_button = st.button("Which Model Used?")
|
270 |
|
271 |
if press_me_button:
|
|
|
54 |
response = requests.get(url, headers=headers)
|
55 |
|
56 |
# Save the file
|
57 |
+
with open('AI_vs_AI_RandomForest_88_Samples.pkl', 'wb') as file1:
|
58 |
+
file1.write(response.content)
|
59 |
|
60 |
|
61 |
# Check if the file exists
|
|
|
69 |
response = requests.get(url, headers=headers)
|
70 |
|
71 |
# Save the file
|
72 |
+
with open('AI_vs_AI_Ridge_2000_Samples.pkl', 'wb') as file2:
|
73 |
+
file2.write(response.content)
|
74 |
|
75 |
|
76 |
|
|
|
207 |
def AI_vs_AI_RandomForest_88_Samples(df):
|
208 |
|
209 |
# At this point, the pickle file should exist, either it was already there, or it has been downloaded and extracted.
|
210 |
+
with open('AI_vs_AI_RandomForest_88_Samples.pkl', 'rb') as file1:
|
211 |
+
clf_loaded = pickle.load(file1)
|
212 |
|
213 |
input_features = df['paragraph'].apply(extract_features_AI_vs_AI_RandomForest_88_Samples)
|
214 |
|
|
|
244 |
def AI_vs_AI_Ridge_2000_Samples(df):
|
245 |
|
246 |
# At this point, the pickle file should exist, either it was already there, or it has been downloaded and extracted.
|
247 |
+
with open('AI_vs_AI_Ridge_2000_Samples.pkl', 'rb') as file2:
|
248 |
+
clf_loaded = pickle.load(file2)
|
249 |
|
250 |
|
251 |
input_features = df['paragraph'].apply(extract_features_AI_vs_AI_Ridge_2000_Samples)
|
|
|
265 |
return
|
266 |
|
267 |
|
268 |
+
# Creates a button
|
269 |
press_me_button = st.button("Which Model Used?")
|
270 |
|
271 |
if press_me_button:
|