Viewing a single comment thread. View all comments

Tiny-Mud6713 OP t1_iwck8e1 wrote

The problem with efficient nets is that I ran a test on some models apriori, I got this graph, note that the dataset was ran for 3 epochs only each model.

https://drive.google.com/file/d/1OyXaWg6vMirYeI9zLSeGJ2v_qCz3msu4/view?usp=share_link

1

Technical-Owl-6919 t1_iwckvp7 wrote

Something seems to be wrong, the validation scores should not be so low. Exactly what type of data are you dealing with ?

1

Tiny-Mud6713 OP t1_iwcleya wrote

They're pictures of some plant, 8 classes for 8 different species of the same type of the plant.

1

Technical-Owl-6919 t1_iwclyq8 wrote

So my friend, then you have to train the network from scratch, it is getting trapped into a local minima. Maybe a small network might help. Try training a ResNet15 or something similar from scratch. This has happened with me once, I was working with Simulation Images and could not get the AuC score to go above 0.92, once I trained it from scratch I got AUC scores close to 0.99, 0.98 etc.

1

arg_max t1_iwcn3y0 wrote

Imagenet 1k pretraining might not be the best for this as it contains few plant classes. The bigger in-21k has a much larger selection of plants and might be better suited for you. Timm has efficient net v2, beit, vit and convnext models pretrained on this though I don't use keras you might be able to find them for this framework.

1