Spaces:
Runtime error
Runtime error
Fix columns error
Browse files
app.py
CHANGED
@@ -308,7 +308,7 @@ if __name__ == "__main__":
|
|
308 |
raise FileNotFoundError(f"File not found: {path.name}")
|
309 |
else:
|
310 |
file_index = 0
|
311 |
-
col1, col2 = st.
|
312 |
filename = col1.selectbox(label="File:", options=files, index=file_index)
|
313 |
dataset = load_dataset(str(path_dir / filename), nlp=nlp)
|
314 |
|
|
|
308 |
raise FileNotFoundError(f"File not found: {path.name}")
|
309 |
else:
|
310 |
file_index = 0
|
311 |
+
col1, col2 = st.columns((3, 1))
|
312 |
filename = col1.selectbox(label="File:", options=files, index=file_index)
|
313 |
dataset = load_dataset(str(path_dir / filename), nlp=nlp)
|
314 |
|