Spaces:
Sleeping
Sleeping
John Graham Reynolds
commited on
Commit
·
7f4b374
1
Parent(s):
b660ba8
convert feature names tuple to list
Browse files
app.py
CHANGED
@@ -34,7 +34,7 @@ space = gr.Interface(
|
|
34 |
fn=compute,
|
35 |
inputs=[
|
36 |
gr.Dataframe(
|
37 |
-
headers=feature_names,
|
38 |
col_count=len(feature_names),
|
39 |
row_count=5,
|
40 |
datatype=json_to_string_type(gradio_input_types),
|
|
|
34 |
fn=compute,
|
35 |
inputs=[
|
36 |
gr.Dataframe(
|
37 |
+
headers=list(feature_names),
|
38 |
col_count=len(feature_names),
|
39 |
row_count=5,
|
40 |
datatype=json_to_string_type(gradio_input_types),
|