We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a983e54 commit 71cd4a5Copy full SHA for 71cd4a5
TernaryBERT/gather_results.py
@@ -36,7 +36,7 @@ def main():
36
37
df = pd.DataFrame(data)
38
cols = df.columns.tolist()
39
- cols = cols[-1:] + cols[:-1]
+ cols = cols[-2:] + cols[:-2]
40
df = df[cols]
41
df.to_csv(os.path.join(DATA_FOLDER, 'results-ternarybert-' + task_name + '.csv'), index=False)
42
0 commit comments