miracle01 commited on
Commit
867ff00
·
verified ·
1 Parent(s): 050d9ec

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -3,6 +3,7 @@ from sklearn.feature_extraction.text import TfidfVectorizer
3
  import numpy as np
4
  import streamlit as st
5
  st.header('Spam Detection using Naive Bayes Classifier')
 
6
  vectorizer = load('tfidf_vectorizer.joblib')
7
  user_input = st.text_input("Enter some text:", "")
8
  if user_input is not None:
 
3
  import numpy as np
4
  import streamlit as st
5
  st.header('Spam Detection using Naive Bayes Classifier')
6
+ st.write('This is spam detection developed with python using Naive Bayes Classifier')
7
  vectorizer = load('tfidf_vectorizer.joblib')
8
  user_input = st.text_input("Enter some text:", "")
9
  if user_input is not None: