Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deelipku23/26eae4b62f1b21be0060dd64a8934227 to your computer and use it in GitHub Desktop.
Save deelipku23/26eae4b62f1b21be0060dd64a8934227 to your computer and use it in GitHub Desktop.
# http://zetcode.com/python/prettytable/
from prettytable import PrettyTable
x = PrettyTable()
x.field_names = ["Model" ,"Train Loss" ,"SpearmenValidation Score" ]
x.add_row(["Bert Base" , "0.3617" , 0.40097])
x.add_row(["Roberta" , "0.3817" , 0.3953])
x.add_row(["XLNEt" , "0.3614" , 0.40099])
print(x)
@howard20519
Copy link

so good!!!!!!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment