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

Update yall.py

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