You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i tried similar keypoint detection with pre trained(imagenet) vgg and mobilenet models. but the training accuracy is 1% , why is that. when i try simple model with few conv blocks, the accuracy is upto 40%. am i doing something wrong? my dataset is hand dataset with hand keypoints.
edit: i used vgg16 pre trained model as follows:
from keras.layers import Input, Lambda, Dense, Flatten
from keras.models import Model, Sequential
from keras.applications.vgg16 import VGG16, preprocess_input
import tensorflow as tf
hello author,
i tried similar keypoint detection with pre trained(imagenet) vgg and mobilenet models. but the training accuracy is 1% , why is that. when i try simple model with few conv blocks, the accuracy is upto 40%. am i doing something wrong? my dataset is hand dataset with hand keypoints.
edit: i used vgg16 pre trained model as follows:
from keras.layers import Input, Lambda, Dense, Flatten
from keras.models import Model, Sequential
from keras.applications.vgg16 import VGG16, preprocess_input
import tensorflow as tf
input_shape = (224,224,3)
num_classes = 42
def model(input_shape,num_classes):
if name=="main":
model(input_shape,num_classes)
thank you
The text was updated successfully, but these errors were encountered: