Spaces:
Runtime error
Runtime error
Update model_list.py
Browse files- model_list.py +1 -1
model_list.py
CHANGED
@@ -91,7 +91,7 @@ class ModelList:
|
|
91 |
df = df[~df.hub.isna() | ~df.other.isna()]
|
92 |
df = df[df.data_type.isin(set(data_types))]
|
93 |
#df = df[df.base_model.isin(set(model_types))]
|
94 |
-
df = df[df.
|
95 |
return df
|
96 |
|
97 |
@staticmethod
|
|
|
91 |
df = df[~df.hub.isna() | ~df.other.isna()]
|
92 |
df = df[df.data_type.isin(set(data_types))]
|
93 |
#df = df[df.base_model.isin(set(model_types))]
|
94 |
+
df = df[df.year.isin(set(years))]
|
95 |
return df
|
96 |
|
97 |
@staticmethod
|