File size: 874 Bytes
4db0113
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import streamlit as st
import pickle


class SMSSpamDetection:
    def __init__(self):
        st.header('πŸ¦œπŸ”— SMS Spam Detection')


    def model_response(self, text):
        with open('vectorizer.pickle', 'rb') as f:
            cv = pickle.load(f)
        res = cv.transform([text]).toarray()
        with open('spam.pickle', 'rb') as f:
            clf = pickle.load(f)
        op = clf.predict(res)
        if op[0] == 'ham':
            label = 'not spam'
        else:
            label = 'spam'
        return label

    def get_input(self):
        input_text = st.text_input("Post your message here: ", key='input')
        return input_text

sms = SMSSpamDetection()
user_input = sms.get_input()
response = sms.model_response(user_input)

submit = st.button("Submit")

if submit:
    st.subheader("Output")
    st.write(f"The given message was: {response}")