Update app.py
Browse files
app.py
CHANGED
@@ -118,11 +118,11 @@ def main():
|
|
118 |
dfs_to_concat = []
|
119 |
|
120 |
if show_phi:
|
121 |
-
dfs_to_concat.append(full_df[full_df['Tags'].str.lower().str.contains('phi
|
122 |
if show_mistral:
|
123 |
-
dfs_to_concat.append(full_df[full_df['Tags'].str.lower().str.contains('mistral')])
|
124 |
if show_other:
|
125 |
-
other_df = full_df[~full_df['Tags'].str.lower().str.contains('phi
|
126 |
dfs_to_concat.append(other_df)
|
127 |
|
128 |
# Concatenate the DataFrames
|
|
|
118 |
dfs_to_concat = []
|
119 |
|
120 |
if show_phi:
|
121 |
+
dfs_to_concat.append(full_df[full_df['Tags'].str.lower().str.contains('phi,|phi-msft,')])
|
122 |
if show_mistral:
|
123 |
+
dfs_to_concat.append(full_df[full_df['Tags'].str.lower().str.contains('mistral,')])
|
124 |
if show_other:
|
125 |
+
other_df = full_df[~full_df['Tags'].str.lower().str.contains('phi,|phi-msft,|mistral,')]
|
126 |
dfs_to_concat.append(other_df)
|
127 |
|
128 |
# Concatenate the DataFrames
|