Spaces:
Sleeping
Sleeping
jaifar530
commited on
modified the output
Browse files
app.py
CHANGED
@@ -101,3 +101,19 @@ if press_me_button:
|
|
101 |
input_features = df['paragraph'].apply(extract_features)
|
102 |
predicted_llm = clf_loaded.predict(input_features)
|
103 |
st.write(f"Predicted LLM: {predicted_llm[0]}")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
input_features = df['paragraph'].apply(extract_features)
|
102 |
predicted_llm = clf_loaded.predict(input_features)
|
103 |
st.write(f"Predicted LLM: {predicted_llm[0]}")
|
104 |
+
|
105 |
+
predicted_proba = clf_loaded.predict_proba(input_features)
|
106 |
+
probabilities = predicted_proba[0]
|
107 |
+
labels = clf_loaded.classes_
|
108 |
+
|
109 |
+
# Create a mapping from old labels to new labels
|
110 |
+
label_mapping = {1: 'gpt3', 2: 'gpt4', 3: 'googlebard', 4: 'huggingface'}
|
111 |
+
|
112 |
+
# Apply the mapping to the labels
|
113 |
+
new_labels = [label_mapping[label] for label in labels]
|
114 |
+
|
115 |
+
# Create a dictionary that maps new labels to probabilities
|
116 |
+
prob_dict = dict(zip(new_labels, probabilities))
|
117 |
+
|
118 |
+
# Print the dictionary
|
119 |
+
print(prob_dict)
|