Spaces:
Runtime error
Runtime error
fix
Browse files
corpus.py
CHANGED
@@ -60,7 +60,7 @@ def body():
|
|
60 |
"11,6,42",
|
61 |
help="List of indices in the dataset, comma-separated.",
|
62 |
)
|
63 |
-
samples = map(int, samples_string.split(","))
|
64 |
|
65 |
compute = st.button("Run")
|
66 |
|
|
|
60 |
"11,6,42",
|
61 |
help="List of indices in the dataset, comma-separated.",
|
62 |
)
|
63 |
+
samples = list(map(int, samples_string.split(",")))
|
64 |
|
65 |
compute = st.button("Run")
|
66 |
|