Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -93,10 +93,8 @@ def kmeans(ligend,n_clusters,n_num):
|
|
93 |
return 'outputs.csv'
|
94 |
|
95 |
|
96 |
-
with open(
|
97 |
-
|
98 |
-
) as f:
|
99 |
-
description = f.read()
|
100 |
iface = gr.Interface(fn=kmeans,
|
101 |
title="Pyuul_Kmeans"
|
102 |
inputs=["file",
|
|
|
93 |
return 'outputs.csv'
|
94 |
|
95 |
|
96 |
+
with open(metadata_root.joinpath("pyuul_kmeans.md"), "r") as f:
|
97 |
+
description = f.read()
|
|
|
|
|
98 |
iface = gr.Interface(fn=kmeans,
|
99 |
title="Pyuul_Kmeans"
|
100 |
inputs=["file",
|