Spaces:
Running
Running
jaifar530
commited on
fix
Browse files
app.py
CHANGED
@@ -23,7 +23,7 @@ nltk.download('stopwords')
|
|
23 |
nltk.download('averaged_perceptron_tagger')
|
24 |
|
25 |
#version
|
26 |
-
st.markdown("v1.
|
27 |
|
28 |
|
29 |
# URL of the text file
|
@@ -55,7 +55,7 @@ st.title("Smart Detection System of AI-Generated Text Models")
|
|
55 |
st.markdown("This is a POC for Smart Detection System of AI Generated Text Models project (:blue[MSc Data Analytics]), it is a pre-trained model that detect the probablities of using any of the known LLM (chatgpt3, chatgpt4, GoogleBard, HuggingfaceChat)")
|
56 |
|
57 |
#input text
|
58 |
-
input_paragraph = st.text_area("Input your text here"
|
59 |
words_counts = word_tokenize(input_paragraph)
|
60 |
final_words = len(words_counts)
|
61 |
st.write('Words counts: ', final_words)
|
|
|
23 |
nltk.download('averaged_perceptron_tagger')
|
24 |
|
25 |
#version
|
26 |
+
st.markdown("v1.6")
|
27 |
|
28 |
|
29 |
# URL of the text file
|
|
|
55 |
st.markdown("This is a POC for Smart Detection System of AI Generated Text Models project (:blue[MSc Data Analytics]), it is a pre-trained model that detect the probablities of using any of the known LLM (chatgpt3, chatgpt4, GoogleBard, HuggingfaceChat)")
|
56 |
|
57 |
#input text
|
58 |
+
input_paragraph = st.text_area("Input your text here")
|
59 |
words_counts = word_tokenize(input_paragraph)
|
60 |
final_words = len(words_counts)
|
61 |
st.write('Words counts: ', final_words)
|