Problem in accuracy

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

Hey @bhavyahoda, can you please share your notebook by uploading on google drive and sharing the link over here ?

Thanks :slight_smile:

1 Like

https://drive.google.com/file/d/1bS0a3nJcwW1c6p4bBzckYqSOTrqXKEoM/view?usp=sharing

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 :slight_smile:

1 Like

https://drive.google.com/file/d/1U8_SuFVVauHDR1puaQehiX8l1re_r5xa/view?usp=sharing

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 :slight_smile:

1 Like

https://drive.google.com/file/d/1E7aPGLNvYw8Bjn45aEaTq5Li3SBdt8td/view?usp=sharing

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 :slight_smile:

1 Like

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 :slight_smile:
All the best !! :slight_smile:

1 Like

thank u sir it helped me a lot

1 Like