|
@@ -196,11 +196,12 @@ public class ScorerPipeline {
|
|
}
|
|
}
|
|
List<RankItem> items = rankItems;
|
|
List<RankItem> items = rankItems;
|
|
|
|
|
|
- Map<String, String> userFeatMap = userFeatureMap;
|
|
|
|
|
|
+ Map<String, String> userFeatMap;
|
|
for (final AbstractScorer scorer : scorers) {
|
|
for (final AbstractScorer scorer : scorers) {
|
|
if (!scorer.isEnable()) {
|
|
if (!scorer.isEnable()) {
|
|
continue;
|
|
continue;
|
|
}
|
|
}
|
|
|
|
+ userFeatMap = userFeatureMap;
|
|
if (scorer.scorerConfigInfo.getModelPath().contains("_nor.tar.gz")) {
|
|
if (scorer.scorerConfigInfo.getModelPath().contains("_nor.tar.gz")) {
|
|
userFeatMap = norUserFeatureMap;
|
|
userFeatMap = norUserFeatureMap;
|
|
}
|
|
}
|