I implemented an image classifier and object detection model. I added a new class every day to my model and the data set growing too. I wanted to ask if anyone has the same experience? at now it working fine. Any suggestions about further problem?
Adding single Class is slow, though it's interesting. You are adding class of same category or different. And how you are proceeding? I mean you are just using train module to same architecture or you also optimizing your architecture?
And also it will be interesting to keep a copy of your train modules plus visualize the parameters. Share it if you can or open a discussion a put your updates if you can.
Now come to your final part of your question, I think once your number of Classes increase or it become more diversified the result will start degrading.
my network is perfect in the performance but I am adding several classes. I am using transfer learning. and the architecture is optimized for the current problem but as we add more classes, I want to check if I need to check anything for the model.
I presume you've seen this paper: Article How transferable are features in deep neural networks?
It's relatively old but highlights some problems you might encounter. If any of your new classes are suitably different to your original classes, the network might not be able to retrain efficiently.