Update get_scores.py
Browse files- get_scores.py +1 -1
get_scores.py
CHANGED
|
@@ -207,7 +207,7 @@ correlation_df = pd.DataFrame(correlations)
|
|
| 207 |
merged_df = pd.merge(correlation_df, timing_df, on="Model", how="inner")
|
| 208 |
|
| 209 |
# Sort by correlation ascending
|
| 210 |
-
merged_df = merged_df.sort_values(by="Correlation with score", ascending=
|
| 211 |
|
| 212 |
# Print full table
|
| 213 |
print("\n===================== MERGED SUMMARY =====================")
|
|
|
|
| 207 |
merged_df = pd.merge(correlation_df, timing_df, on="Model", how="inner")
|
| 208 |
|
| 209 |
# Sort by correlation ascending
|
| 210 |
+
merged_df = merged_df.sort_values(by="Correlation with score", ascending=False)
|
| 211 |
|
| 212 |
# Print full table
|
| 213 |
print("\n===================== MERGED SUMMARY =====================")
|