jaifar530 commited on
Commit
dbff27c
·
unverified ·
1 Parent(s): 865019b

modified the output

Browse files
Files changed (1) hide show
  1. app.py +16 -0
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)