Spaces:
Runtime error
Runtime error
remove placeholders
Browse files
app.py
CHANGED
@@ -29,7 +29,6 @@ labels = col1.text_area(
|
|
29 |
label="These are the labels that the model will try to predict for the given text input. Your input labels should be comma separated and meaningful.",
|
30 |
value="spor,dünya,siyaset,ekonomi,kültür ve sanat",
|
31 |
height=10,
|
32 |
-
placeholder="Enter a set of comma separated labels. (eg. spor,dünya,siyaset,ekonomi,kültür ve sanat)",
|
33 |
)
|
34 |
col2.subheader("Prompt template")
|
35 |
prompt_template = col2.text_area(
|
@@ -40,7 +39,7 @@ prompt_template = col2.text_area(
|
|
40 |
|
41 |
col1.header("Make predictions")
|
42 |
col2.header("")
|
43 |
-
col1.text_area("", value="
|
44 |
col1.button("Predict")
|
45 |
|
46 |
probs = [0.86, 0.10, 0.01, 0.02, 0.01]
|
|
|
29 |
label="These are the labels that the model will try to predict for the given text input. Your input labels should be comma separated and meaningful.",
|
30 |
value="spor,dünya,siyaset,ekonomi,kültür ve sanat",
|
31 |
height=10,
|
|
|
32 |
)
|
33 |
col2.subheader("Prompt template")
|
34 |
prompt_template = col2.text_area(
|
|
|
39 |
|
40 |
col1.header("Make predictions")
|
41 |
col2.header("")
|
42 |
+
col1.text_area("", value="Enter some text to classify.")
|
43 |
col1.button("Predict")
|
44 |
|
45 |
probs = [0.86, 0.10, 0.01, 0.02, 0.01]
|