Closed bongjun closed 6 years ago
In the method search of Voogle class,
search
Voogle
self.model.predict(batch_query, batch_items) is supposed to output the simarities of items with a query, not ranks. But the search results seems to be sorted in ascending order. It should be sorted in descending order.
self.model.predict(batch_query, batch_items)
Fixed for both the siamese and vggish model in both the develop and master branches.
In the method
search
ofVoogle
class,self.model.predict(batch_query, batch_items)
is supposed to output the simarities of items with a query, not ranks. But the search results seems to be sorted in ascending order. It should be sorted in descending order.