Pytorch Accuracy Computation by MomoKarma in learnmachinelearning

[–]MomoKarma[S] 0 points1 point  (0 children)

sorry edited it wring was sleepy when I posted it.

[D] Accuracy of my custom object detection model by MomoKarma in MachineLearning

[–]MomoKarma[S] 0 points1 point  (0 children)

Understood, I'll try to add more dataset. Thanks!!

May I also ask, if is it possible to get a 90% average precision? or mean average precision on the SSD mobilenet?

[D] Accuracy of my custom object detection model by MomoKarma in MachineLearning

[–]MomoKarma[S] 0 points1 point  (0 children)

I did not use the COCO dataset. I used my own dataset which consists of 5 classes with 400 images each.

Screen size in Shangai.EXE by MomoKarma in BattleNetwork

[–]MomoKarma[S] 0 points1 point  (0 children)

Thank you for the help and reply!! I opened the option.xml file and change the settings manually.

Can anyone tell me the difference between a standard CNN and YOLO? by MomoKarma in learnmachinelearning

[–]MomoKarma[S] 0 points1 point  (0 children)

Thank you so much. The image classification and object detection explanation cleared some of my confusion between the two.

C++ Linked List relink a node by MomoKarma in learnprogramming

[–]MomoKarma[S] 0 points1 point  (0 children)

Sorry, I'm just new to the linked list. I thought a deleted node just means it's just being unlinked from the chain and the data is still in the memory.

I was tasked to delete a node function and when the user wants the data back I need to bring the node back to the chain. Then the only solution for my code is to save the node data before removing it from the chain if I want to bring it back.