ObjectSet<String> knownItems = new ObjectOpenHashSet<>();
for (Pair<String,?> itemValue : EstimateForAnonymous.parsePathSegments(pathSegments)) {
knownItems.add(itemValue.getFirst());
}
List<Pair<String,Double>> topIDDots = model.topN(
new DotsFunction(anonymousUserFeatures),
howMany + offset,
new NotKnownPredicate(knownItems));
return toIDValueResponse(topIDDots, howMany, offset);
}