tbitai commited on
Commit
d213d29
·
verified ·
1 Parent(s): 873bd18

Less examples

Browse files
Files changed (1) hide show
  1. app.py +2 -5
app.py CHANGED
@@ -108,11 +108,8 @@ demo = gr.Interface(
108
  title="Bayes or Spam?",
109
  description="Choose your model, and predict if your email is a spam! 📨<br>Learn more about the models [here](https://huggingface.co/collections/tbitai/bayes-or-spam-6700033fa145e298ec849249).",
110
  examples=[
111
- [BAYES, enron_email := "Enron actuals for June 26, 2000", False, DEFAULT_INTR_THRESHOLD],
112
- [BAYES, nerissa_email := "Stop the aging clock\nNerissa", False, DEFAULT_INTR_THRESHOLD],
113
- [BAYES, nerissa_email, True, DEFAULT_INTR_THRESHOLD],
114
- [NN, enron_email, None, None],
115
- [LLM, enron_email, None, None],
116
  ],
117
  article="This is a demo of the models in the [Bayes or Spam?](https://github.com/tbitai/bayes-or-spam) project.",
118
  )
 
108
  title="Bayes or Spam?",
109
  description="Choose your model, and predict if your email is a spam! 📨<br>Learn more about the models [here](https://huggingface.co/collections/tbitai/bayes-or-spam-6700033fa145e298ec849249).",
110
  examples=[
111
+ [NN, "Enron actuals for June 26, 2000", None, None],
112
+ [BAYES, "Stop the aging clock\nNerissa", True, DEFAULT_INTR_THRESHOLD],
 
 
 
113
  ],
114
  article="This is a demo of the models in the [Bayes or Spam?](https://github.com/tbitai/bayes-or-spam) project.",
115
  )