Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -127,7 +127,7 @@ with gr.Blocks() as demo:
|
|
| 127 |
- Solution WriteUp: [https://www.kaggle.com/competitions/llm-detect-ai-generated-text/discussion/470224](https://www.kaggle.com/competitions/llm-detect-ai-generated-text/discussion/470224)\
|
| 128 |
"""
|
| 129 |
)
|
| 130 |
-
with gr.
|
| 131 |
gr.Markdown(
|
| 132 |
"""\
|
| 133 |
### Linguistic Analysis: Language Model Perplexity
|
|
@@ -147,7 +147,7 @@ with gr.Blocks() as demo:
|
|
| 147 |
Scikit-learn's VotingClassifier consisting of XGBClassifier, LGBMClassifier, CatBoostClassifier and RandomForestClassifier with default parameters\
|
| 148 |
"""
|
| 149 |
)
|
| 150 |
-
with gr.
|
| 151 |
a1 = gr.Textbox( lines=7, label='Text', value=example )
|
| 152 |
button1 = gr.Button("🤖 Predict!")
|
| 153 |
gr.Markdown("Prediction:")
|
|
|
|
| 127 |
- Solution WriteUp: [https://www.kaggle.com/competitions/llm-detect-ai-generated-text/discussion/470224](https://www.kaggle.com/competitions/llm-detect-ai-generated-text/discussion/470224)\
|
| 128 |
"""
|
| 129 |
)
|
| 130 |
+
with gr.Row():
|
| 131 |
gr.Markdown(
|
| 132 |
"""\
|
| 133 |
### Linguistic Analysis: Language Model Perplexity
|
|
|
|
| 147 |
Scikit-learn's VotingClassifier consisting of XGBClassifier, LGBMClassifier, CatBoostClassifier and RandomForestClassifier with default parameters\
|
| 148 |
"""
|
| 149 |
)
|
| 150 |
+
with gr.Column():
|
| 151 |
a1 = gr.Textbox( lines=7, label='Text', value=example )
|
| 152 |
button1 = gr.Button("🤖 Predict!")
|
| 153 |
gr.Markdown("Prediction:")
|