AI good practices in combining tasks?

I’m designing a neural network (pytorch) that accomplishes two different, but entangled, tasks. One is very difficult, one is very easy. While training two different models (two trainings, two set of parameters,…) can crack both of the problems independently, when combined, the hard task fails, no matter what I do. I would like to understand… Read More AI good practices in combining tasks?

How can I calculate confidence level of my ML Model for each Image of ResNet9

I made the ML Model using the Resnet9 algorithm. In this model, I have 38 classes. After the prediction, It returns the tuple like this: It is returning negative values. In the above case, the highest value is -204.0966 means it has the highest chance of being the correct one. I want to make it… Read More How can I calculate confidence level of my ML Model for each Image of ResNet9

Is there a difference in the weights of hidden layers if I train a model with an output layer of 10 neurons 10 times or only one time with 100 neurons

So essentially I don’t have enough RAM to train the model I want from scratch using the 2000 classes all at once. Because of that I was wondering if I could use an output layer of 200 neurons and save the weights after training the model with those 200 classes and then load those same… Read More Is there a difference in the weights of hidden layers if I train a model with an output layer of 10 neurons 10 times or only one time with 100 neurons

Group of structured binding errors, pertains to neural networking

so i downloaded a library that hasnt been in use in years, for Neural Evolutionary Augmenting Topologies. Basically, a neural network that evolves. It came with many, MANY errors out of the box (somewhere around 20-30) and i managed to fix them all, except for these: Error C3694 a structured binding declaration can contain no… Read More Group of structured binding errors, pertains to neural networking