zhoutg 4 rokov pred
rodič
commit
86a5898283

+ 3 - 3
src/main/java/com/diagbot/facade/TestwordInfoFacade.java

@@ -65,11 +65,11 @@ public class TestwordInfoFacade extends TestwordInfoServiceImpl {
         // 症状标准词
         List<String> symptomStand = getStandWord(9, 10000).getSymptomNames();
         // 诊断标准词
-        List<String> diseaseStand = getStandWord(4, 100000).getDiseaseNames().stream().map(r -> r.getName()).collect(Collectors.toList());
+        List<String> diseaseStand = getStandWord(4, 100).getDiseaseNames().stream().map(r -> r.getName()).collect(Collectors.toList());
         // 药品标准词
-        List<String> drugStand = getStandWord(5, 100000).getDrugNames().stream().map(r -> r.getName()).collect(Collectors.toList());
+        List<String> drugStand = getStandWord(5, 100).getDrugNames().stream().map(r -> r.getName()).collect(Collectors.toList());
         // 手术标准词
-        List<String> operateStand = getStandWord(6, 100000).getOperationNames().stream().map(r -> r.getName()).collect(Collectors.toList());
+        List<String> operateStand = getStandWord(6, 100).getOperationNames().stream().map(r -> r.getName()).collect(Collectors.toList());
 
         // 模型处理数据
         WordCrfDTO wordCrfDTO = new WordCrfDTO();