devingulliver commited on
Commit
f6a8e14
1 Parent(s): fce2a80

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -21,6 +21,7 @@ archlinks = {
21
  def filter_table(cols, name, type, arch, size):
22
  tmp = data
23
  # filter
 
24
  tmp = tmp[tmp["Name"].str.contains(name, case=False)]
25
  tmp = tmp[tmp["Type"].isin(type)]
26
  tmp = tmp[tmp["Architecture"].isin(arch)]
 
21
  def filter_table(cols, name, type, arch, size):
22
  tmp = data
23
  # filter
24
+ tmp = tmp[tmp["Name"] != "EleutherAI/pythia-1.4b"]
25
  tmp = tmp[tmp["Name"].str.contains(name, case=False)]
26
  tmp = tmp[tmp["Type"].isin(type)]
27
  tmp = tmp[tmp["Architecture"].isin(arch)]