1653091

Results 3 issues of 1653091

I want to use ResNet50 as my model and change Fully Connection layer to classify images. #Create model: model = models.resnet50(pretrained=True) fc_inputs = model.fc.in_features class FClayer(nn.Module): def __init__(self): super(FClayer, self).__init__()...

After creating vocabulary tree, how can I create a database for quering.

I have a dataset of 128 dim vectors, can i use DBoW2 to search fastly the closest vector.