Spaces:
Sleeping
Sleeping
jaifar530
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -57,8 +57,8 @@ if not os.path.exists('my_authorship_model'):
|
|
57 |
except Exception as e:
|
58 |
st.write(f"Failed to download or extract the model: {e}")
|
59 |
exit(1)
|
60 |
-
else:
|
61 |
-
|
62 |
|
63 |
|
64 |
# Download the required files
|
@@ -120,10 +120,7 @@ if press_me_button:
|
|
120 |
|
121 |
import streamlit as st
|
122 |
|
123 |
-
st.title("Smart Authorship Detection System of AI-Generated Text Models")
|
124 |
|
125 |
-
# Slogan under the title
|
126 |
-
st.subheader("Uncover the Invisible Ink: Who's the Author?")
|
127 |
|
128 |
# Using expander to make FAQ sections
|
129 |
st.subheader("Frequently Asked Questions (FAQ)")
|
@@ -136,14 +133,20 @@ with st.expander("What is this project about?"):
|
|
136 |
For inquiries, contact [[email protected]](mailto:[email protected]).
|
137 |
Supervised by Dr. Mohamed Bader.
|
138 |
""")
|
139 |
-
|
140 |
-
#
|
141 |
-
with st.expander("
|
142 |
st.write("""
|
143 |
-
The
|
144 |
-
It achieves an accuracy of 0.9964 with a validation loss of 0.094.
|
145 |
""")
|
146 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
147 |
# Data Storage Information
|
148 |
with st.expander("Does the system store my data?"):
|
149 |
st.write("No, the system does not collect or store any user input data.")
|
@@ -154,21 +157,6 @@ with st.expander("Can I use this as evidence?"):
|
|
154 |
No, this system is a Proof of Concept (POC) and should not be used as evidence against students or similar entities.
|
155 |
""")
|
156 |
|
157 |
-
# Background and Context
|
158 |
-
with st.expander("Background and Context"):
|
159 |
-
st.write("""
|
160 |
-
The proliferation of AI and Large Language Models (LLMs) like ChatGPT and Google Bard has raised questions about authorship. This project aims to analyze and predict the unique features of these models compared to human-written text.
|
161 |
-
""")
|
162 |
|
163 |
-
# Problem Statement
|
164 |
-
with st.expander("Problem Statement"):
|
165 |
-
st.write("""
|
166 |
-
Most AI authorship detection systems fail to identify the specific LLM behind a text. This research aims to fill this gap, offering detailed analysis on various LLMs and human writing.
|
167 |
-
""")
|
168 |
|
169 |
-
# Aim and Objectives
|
170 |
-
with st.expander("Aim and Objectives"):
|
171 |
-
st.write("""
|
172 |
-
The project aims to help staff at the University of Portsmouth distinguish between student-written artifacts and those generated by LLMs. It focuses on text feature extraction, model testing, and implementing a user-friendly dashboard among other objectives.
|
173 |
-
""")
|
174 |
|
|
|
57 |
except Exception as e:
|
58 |
st.write(f"Failed to download or extract the model: {e}")
|
59 |
exit(1)
|
60 |
+
# else:
|
61 |
+
# st.write("System Ready !!")
|
62 |
|
63 |
|
64 |
# Download the required files
|
|
|
120 |
|
121 |
import streamlit as st
|
122 |
|
|
|
123 |
|
|
|
|
|
124 |
|
125 |
# Using expander to make FAQ sections
|
126 |
st.subheader("Frequently Asked Questions (FAQ)")
|
|
|
133 |
For inquiries, contact [[email protected]](mailto:[email protected]).
|
134 |
Supervised by Dr. Mohamed Bader.
|
135 |
""")
|
136 |
+
|
137 |
+
# Aim and Objectives
|
138 |
+
with st.expander("Aim and Objectives"):
|
139 |
st.write("""
|
140 |
+
The project aims to help staff at the University of Portsmouth distinguish between student-written artifacts and those generated by LLMs. It focuses on text feature extraction, model testing, and implementing a user-friendly dashboard among other objectives.
|
|
|
141 |
""")
|
142 |
|
143 |
+
# # System Details
|
144 |
+
# with st.expander("How does the system work?"):
|
145 |
+
# st.write("""
|
146 |
+
# The system is trained using a CNN model on a dataset of 140,546 paragraphs, varying in length from 10 to 500 words.
|
147 |
+
# It achieves an accuracy of 0.9964 with a validation loss of 0.094.
|
148 |
+
# """)
|
149 |
+
|
150 |
# Data Storage Information
|
151 |
with st.expander("Does the system store my data?"):
|
152 |
st.write("No, the system does not collect or store any user input data.")
|
|
|
157 |
No, this system is a Proof of Concept (POC) and should not be used as evidence against students or similar entities.
|
158 |
""")
|
159 |
|
|
|
|
|
|
|
|
|
|
|
160 |
|
|
|
|
|
|
|
|
|
|
|
161 |
|
|
|
|
|
|
|
|
|
|
|
162 |
|