Update app.py
Browse files
app.py
CHANGED
@@ -13,17 +13,6 @@ dataset = load_dataset(
|
|
13 |
)
|
14 |
print(f'This is the dataset: {dataset}')
|
15 |
|
16 |
-
# dataset = dataset['_data_files']
|
17 |
-
|
18 |
-
# print(f'This is the train dataset: {dataset}')
|
19 |
-
|
20 |
-
# dataset_split = dataset['_split']
|
21 |
-
|
22 |
-
# print(f'This is the split dataset: {dataset_split}')
|
23 |
-
|
24 |
-
# dataset = Dataset.from_file(dataset[0][0]['filename'])
|
25 |
-
|
26 |
-
# print(f'This is the arrow dataset: {dataset}')
|
27 |
|
28 |
def reshape_json_data_to_fit_visualize_graph(graph_data):
|
29 |
|
@@ -93,4 +82,4 @@ def create_interface():
|
|
93 |
# Create and launch the interface
|
94 |
if __name__ == "__main__":
|
95 |
demo = create_interface()
|
96 |
-
demo.launch(
|
|
|
13 |
)
|
14 |
print(f'This is the dataset: {dataset}')
|
15 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
|
17 |
def reshape_json_data_to_fit_visualize_graph(graph_data):
|
18 |
|
|
|
82 |
# Create and launch the interface
|
83 |
if __name__ == "__main__":
|
84 |
demo = create_interface()
|
85 |
+
demo.launch()
|