Update app.py
Browse files
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:
|