i am unable to increase the accuracy beyond 24% how to improve please guide me
i can share my source code as well if u tell
thanks
Problem in accuracy
Hey @bhavyahoda, can you please share your notebook by uploading on google drive and sharing the link over here ?
Thanks 
Hey @bhavyahoda, the dimensions of the center image has to be (100,100,3). Can you also show me the final image you have generated ?
Hope this helps !
Happy Learning 
sir this is my image also in this I have done the change u said me to do
that img size should be of 100x100
but still my accuracy is just 24%
Hey @bhavyahoda, can you please share your csv file here by uploading on google drive ?
Only then will I be able to debug the problem 
Hey @bhavyahoda, please check the sample.csv given in the dataset. It does not have index of rows. In the csv you just have to save 3 columns i.e. ‘r’, ‘g’ & ‘b’.
So please remove the first column, and then your accuracy should improve.
Hope this helps !
Happy Learning 
df = pd.DataFrame(zero.reshape(-1,3),columns=[‘r’, ‘g’, ‘b’])
df.to_csv(“abc.csv”)
these lines are saving my csv file what change is recommended in this
Hey @bhavyahoda, you can try this :
df = pd.DataFrame(zero.reshape(-1,3))
df.to_csv(“abc.csv”, index=False,header=['r','g','b'])
Hope this helps 
All the best !! 
thank u sir it helped me a lot