|
@@ -24,7 +24,7 @@ public class FeatureService {
|
|
|
/**
|
|
|
* @return k1:视频、k2:表、k3:特征、v:特征值
|
|
|
*/
|
|
|
- public Map<String, Map<String, Map<String, String>>> getFeature(List<String> vidList, String apptype,
|
|
|
+ public Map<String, Map<String, Map<String, String>>> getFeature(List<String> vidList, String appType,
|
|
|
String province) {
|
|
|
|
|
|
List<FeatureKeyProto> protos = new ArrayList<>();
|
|
@@ -45,11 +45,9 @@ public class FeatureService {
|
|
|
protos.add(genWithVid("alg_vid_feature_head_play", vid));
|
|
|
protos.add(genWithVid("alg_vid_feature_share2return", vid));
|
|
|
|
|
|
-
|
|
|
- protos.add(genWithVidAndAppType("alg_vid_feature_feed_apptype_exp", vid, apptype));
|
|
|
- protos.add(genWithVidAndAppType("alg_vid_feature_feed_apptype_root_return", vid, apptype));
|
|
|
- protos.add(genWithVidAndAppType("alg_vid_feature_feed_apptype_root_share", vid, apptype));
|
|
|
-
|
|
|
+ protos.add(genWithVidAndAppType("alg_vid_feature_feed_apptype_exp", vid, appType));
|
|
|
+ protos.add(genWithVidAndAppType("alg_vid_feature_feed_apptype_root_return", vid, appType));
|
|
|
+ protos.add(genWithVidAndAppType("alg_vid_feature_feed_apptype_root_share", vid, appType));
|
|
|
|
|
|
protos.add(genWithVidAndProvince("alg_vid_feature_feed_province_exp", vid, province));
|
|
|
protos.add(genWithVidAndProvince("alg_vid_feature_feed_province_root_return", vid, province));
|