Why i am only 52 percent accuracy?

please help why i am getting only 52 percent accuracy

import pandas as pd
jokes=[]#list containing jokes
id=[]#list containing id’s
dict={‘id’:id,‘jokes’:jokes}
df=pd.Dataframe(dict)
df.to_csv(‘submission.csv’,index=False)
try this method to create the csv file.
append jokes in the list as it is without any change.

1 Like