Update app.py
Browse files
app.py
CHANGED
@@ -129,7 +129,7 @@ def main():
|
|
129 |
if show_llama:
|
130 |
dfs_to_concat.append(full_df[full_df['Tags'].str.lower().str.contains('llama,')])
|
131 |
if show_other:
|
132 |
-
other_df = full_df[~full_df['Tags'].str.lower().str.contains('phi,|phi-msft,|mistral,')]
|
133 |
dfs_to_concat.append(other_df)
|
134 |
|
135 |
# Concatenate the DataFrames
|
|
|
129 |
if show_llama:
|
130 |
dfs_to_concat.append(full_df[full_df['Tags'].str.lower().str.contains('llama,')])
|
131 |
if show_other:
|
132 |
+
other_df = full_df[~full_df['Tags'].str.lower().str.contains('phi,|phi-msft,|mistral,|llama,')]
|
133 |
dfs_to_concat.append(other_df)
|
134 |
|
135 |
# Concatenate the DataFrames
|