mlabonne commited on
Commit
4f73851
1 Parent(s): 6cf5862

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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