Ali Arda Fincan
commited on
Update yeni_olcum.py and results.csv
Browse files- results.csv +1 -0
- yeni_olcum.py +8 -1
results.csv
CHANGED
@@ -2,5 +2,6 @@ model,teog 2013 puanı
|
|
2 |
GPT-4o-mini,403.0
|
3 |
GPT-3.5-turbo-0125,392.0
|
4 |
gemma:2b,285.21423384168486
|
|
|
5 |
mlx-community/gemma-2-2b-it-4bit,135.75889615105302
|
6 |
mlx-community/SmolLM-135M-Instruct-4bit ,120.0
|
|
|
2 |
GPT-4o-mini,403.0
|
3 |
GPT-3.5-turbo-0125,392.0
|
4 |
gemma:2b,285.21423384168486
|
5 |
+
mlx-community/Meta-Llama-3-8B-Instruct-4bit,173.53576615831517
|
6 |
mlx-community/gemma-2-2b-it-4bit,135.75889615105302
|
7 |
mlx-community/SmolLM-135M-Instruct-4bit ,120.0
|
yeni_olcum.py
CHANGED
@@ -88,4 +88,11 @@ sınav_puanı = turkce_basari + matematik_basari + inkilap_basari + fen_basari +
|
|
88 |
yep = (obp_6 + obp_7 + obp_8 + sınav_puanı * (7/18)) / 2
|
89 |
# yep = teog puanı
|
90 |
|
91 |
-
print("yep")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
yep = (obp_6 + obp_7 + obp_8 + sınav_puanı * (7/18)) / 2
|
89 |
# yep = teog puanı
|
90 |
|
91 |
+
print("yep:", yep )
|
92 |
+
|
93 |
+
results = pd.read_csv('results.csv')
|
94 |
+
results.loc[len(results)] = [model_name, yep]
|
95 |
+
|
96 |
+
res_sorted = results.sort_values(by='teog 2013 puanı', ascending=False)
|
97 |
+
|
98 |
+
res_sorted.to_csv('results.csv', index=False)
|