Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -36,8 +36,8 @@ AP_statistics = load_dataset('vjain/AP_statistics')
|
|
36 |
df4 = pd.DataFrame(AP_statistics['train'])
|
37 |
df4["similarity"] = 0
|
38 |
|
39 |
-
|
40 |
-
df5 = pd.dataframe(
|
41 |
df5["similarity"] = 0
|
42 |
|
43 |
dataframes = {
|
@@ -88,7 +88,7 @@ def reply(input, dataset_name):
|
|
88 |
|
89 |
csv_dropdown = gr.inputs.Dropdown(
|
90 |
label="Select the Book",
|
91 |
-
choices=["AP_Bio", "AP_Physics","Personality","AP_statistics","
|
92 |
default="AP_Bio"
|
93 |
|
94 |
)
|
|
|
36 |
df4 = pd.DataFrame(AP_statistics['train'])
|
37 |
df4["similarity"] = 0
|
38 |
|
39 |
+
tax_embeddings = load_dataset('vjain/tax_embeddings')
|
40 |
+
df5 = pd.dataframe(tax_embeddings['train'])
|
41 |
df5["similarity"] = 0
|
42 |
|
43 |
dataframes = {
|
|
|
88 |
|
89 |
csv_dropdown = gr.inputs.Dropdown(
|
90 |
label="Select the Book",
|
91 |
+
choices=["AP_Bio", "AP_Physics","Personality","AP_statistics","tax_embeddings"],
|
92 |
default="AP_Bio"
|
93 |
|
94 |
)
|