kz-transformers commited on
Commit
bd24c3f
·
verified ·
1 Parent(s): 8303012

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -31,12 +31,13 @@ def submit_file(v, file_path, mn, profile: gr.OAuthProfile | None):
31
  new_file['model'] = mn
32
  else:
33
  new_file['model'] = profile.username + "/" + mn
 
34
  columns = [
35
- 'kazakh_mmlu_translated_kk', 'kazakh_constitution_mc', 'kazakh_dastur_mc', 'kazakh_and_literature_unt_mc', 'kazakh_geography_unt_mc',
36
- 'kazakh_world_history_unt_mc', 'kazakh_history_of_kazakhstan_unt_mc', 'kazakh_english_unt_mc', 'kazakh_biology_unt_mc',
37
- 'kazakh_human_society_rights_unt_mc'
38
  ]
39
-
40
  for column in columns:
41
  new_file[column] = new_file[column]['acc,none']
42
 
 
31
  new_file['model'] = mn
32
  else:
33
  new_file['model'] = profile.username + "/" + mn
34
+
35
  columns = [
36
+ 'mmlu_translated_kk', 'kk_constitution_mc', 'kk_dastur_mc', 'kazakh_and_literature_unt_mc', 'kk_geography_unt_mc',
37
+ 'kk_world_history_unt_mc', 'kk_history_of_kazakhstan_unt_mc', 'kk_english_unt_mc', 'kk_biology_unt_mc',
38
+ 'kk_human_society_rights_unt_mc'
39
  ]
40
+
41
  for column in columns:
42
  new_file[column] = new_file[column]['acc,none']
43