Update yall.py
Browse files
yall.py
CHANGED
@@ -101,7 +101,7 @@ def create_yall():
|
|
101 |
agieval = float(values[1].strip())
|
102 |
gpt4all = float(values[2].strip())
|
103 |
bigbench = float(values[4].strip())
|
104 |
-
average = (agieval + gpt4all + bigbench) / 3
|
105 |
except (ValueError, IndexError) as e:
|
106 |
print(f"Error processing values: {e}")
|
107 |
continue
|
|
|
101 |
agieval = float(values[1].strip())
|
102 |
gpt4all = float(values[2].strip())
|
103 |
bigbench = float(values[4].strip())
|
104 |
+
average = round((agieval + gpt4all + bigbench) / 3, 2)
|
105 |
except (ValueError, IndexError) as e:
|
106 |
print(f"Error processing values: {e}")
|
107 |
continue
|