Commit
·
c752674
1
Parent(s):
cdcf9d0
Upload 4 files
Browse files- app.py +62 -0
- classifier.pkl +3 -0
- requirements.txt +4 -0
- tfidf_vectorizer.pkl +3 -0
app.py
ADDED
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
import re
|
3 |
+
from nltk.tokenize import word_tokenize
|
4 |
+
from nltk.corpus import stopwords
|
5 |
+
from nltk.stem import WordNetLemmatizer
|
6 |
+
from sklearn.feature_extraction.text import TfidfVectorizer
|
7 |
+
|
8 |
+
import joblib
|
9 |
+
|
10 |
+
import nltk
|
11 |
+
|
12 |
+
nltk.download('punkt')
|
13 |
+
nltk.download('stopwords')
|
14 |
+
nltk.download('wordnet')
|
15 |
+
|
16 |
+
|
17 |
+
tfidf_vectorizer = joblib.load('tfidf_vectorizer.pkl')
|
18 |
+
classifier = joblib.load('classifier.pkl')
|
19 |
+
|
20 |
+
# Preprocess function
|
21 |
+
def preprocess_text(text):
|
22 |
+
# Text Cleaning
|
23 |
+
text = re.sub(r'[^\w\s]', '', text)
|
24 |
+
|
25 |
+
# Tokenization
|
26 |
+
tokens = word_tokenize(text)
|
27 |
+
|
28 |
+
# Stop Word Removal
|
29 |
+
stop_words = set(stopwords.words('english'))
|
30 |
+
tokens = [token for token in tokens if token.lower() not in stop_words]
|
31 |
+
|
32 |
+
# Lemmatization
|
33 |
+
lemmatizer = WordNetLemmatizer()
|
34 |
+
tokens = [lemmatizer.lemmatize(token) for token in tokens]
|
35 |
+
|
36 |
+
# Join tokens back to text
|
37 |
+
preprocessed_text = ' '.join(tokens)
|
38 |
+
|
39 |
+
return preprocessed_text
|
40 |
+
|
41 |
+
# Gradio Function
|
42 |
+
def classify_threat(text):
|
43 |
+
# Preprocess input text
|
44 |
+
preprocessed_text = preprocess_text(text)
|
45 |
+
|
46 |
+
# Convert to TF-IDF vector
|
47 |
+
tfidf_text = tfidf_vectorizer.transform([preprocessed_text])
|
48 |
+
# Predict threat
|
49 |
+
threat = classifier.predict(tfidf_text)
|
50 |
+
return threat[0]
|
51 |
+
|
52 |
+
# Create a Gradio interface
|
53 |
+
iface = gr.Interface(
|
54 |
+
fn=classify_threat,
|
55 |
+
inputs="text",
|
56 |
+
outputs="text",
|
57 |
+
title="Threat Classification",
|
58 |
+
description="Enter a text description to classify the threat (e.g., oil, chemical).",
|
59 |
+
)
|
60 |
+
|
61 |
+
# Launch the interface
|
62 |
+
iface.launch()
|
classifier.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9189d53b69f0d9ff501d0a51aa9ab344b2455e03bf347653fb84ed075f788f3b
|
3 |
+
size 386759
|
requirements.txt
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
gradio
|
2 |
+
scikit-learn==1.2.2
|
3 |
+
numpy
|
4 |
+
nltk
|
tfidf_vectorizer.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8302231cc4ed8b8ddda20c6dffc6993b97f47a7136a4eedf6795817f30928358
|
3 |
+
size 345649
|