Spaces:
Runtime error
Runtime error
isThisYouLLM
commited on
Commit
•
f1b8f44
1
Parent(s):
02d5ea6
Update app.py
Browse files
app.py
CHANGED
@@ -131,7 +131,9 @@ def main():
|
|
131 |
model.load_state_dict(torch.load(checkpoint,map_location='cpu'))
|
132 |
model = model.eval()
|
133 |
st.title("Human-AI stylometer - Multilingual")
|
|
|
134 |
st.caption('Is This You, LLM? Recognizing AI-written Programs with Multilingual Code Stylometry')
|
|
|
135 |
text = st.text_area("insert your code here")
|
136 |
button = st.button("send")
|
137 |
if button or text:
|
|
|
131 |
model.load_state_dict(torch.load(checkpoint,map_location='cpu'))
|
132 |
model = model.eval()
|
133 |
st.title("Human-AI stylometer - Multilingual")
|
134 |
+
|
135 |
st.caption('Is This You, LLM? Recognizing AI-written Programs with Multilingual Code Stylometry')
|
136 |
+
|
137 |
text = st.text_area("insert your code here")
|
138 |
button = st.button("send")
|
139 |
if button or text:
|