Spaces:
Sleeping
Sleeping
Commit
·
d19fe76
1
Parent(s):
a1e0e22
Add application file
Browse files
app.py
CHANGED
@@ -18,3 +18,6 @@ def load_model():
|
|
18 |
return pipeline("text-classification", model="huggingface/CodeBERTa-language-id")
|
19 |
|
20 |
language_identificator = load_model()
|
|
|
|
|
|
|
|
18 |
return pipeline("text-classification", model="huggingface/CodeBERTa-language-id")
|
19 |
|
20 |
language_identificator = load_model()
|
21 |
+
|
22 |
+
# Input Test from User
|
23 |
+
user_input = st.text_area("Enter some code to analyze",)
|