Spaces:
Sleeping
Sleeping
Update gen_table.py
Browse files- gen_table.py +6 -4
gen_table.py
CHANGED
@@ -32,14 +32,16 @@ def model_size_flag(sz, FIELDS):
|
|
32 |
if '70B' in FIELDS and sz == 70:
|
33 |
return True
|
34 |
return False
|
35 |
-
|
36 |
|
37 |
def model_type_flag(line, FIELDS):
|
38 |
-
if '
|
|
|
|
|
39 |
return True
|
40 |
-
if '
|
41 |
return True
|
42 |
-
if '
|
43 |
return True
|
44 |
return False
|
45 |
|
|
|
32 |
if '70B' in FIELDS and sz == 70:
|
33 |
return True
|
34 |
return False
|
35 |
+
|
36 |
|
37 |
def model_type_flag(line, FIELDS):
|
38 |
+
if 'Commercial LLMs' in FIELDS and line['Commercial LLMs'] == 'Yes':
|
39 |
+
return True
|
40 |
+
if 'General LLMs' in FIELDS and line['General LLMs'] == 'Yes':
|
41 |
return True
|
42 |
+
if 'Medical LLMs' in FIELDS and line['Medical LLMs'] == 'Yes':
|
43 |
return True
|
44 |
+
if 'SOTA' in FIELDS and line['SOTA'] == 'Yes':
|
45 |
return True
|
46 |
return False
|
47 |
|