|
@@ -318,7 +318,7 @@ public class BeHospitalizedAI extends ModelAI {
|
|
|
pacsLabel = new PacsLabel();
|
|
|
chiefLabel.setPacsLabel(pacsLabel);
|
|
|
}
|
|
|
- entityProcessPacs.extractEntity(aiOut, pacsLabel);
|
|
|
+ entityProcessPacs.extractEntity(aiOut, pacsLabel,false);
|
|
|
wordCrfDTO.setChiefLabel(chiefLabel);
|
|
|
}
|
|
|
|
|
@@ -346,7 +346,7 @@ public class BeHospitalizedAI extends ModelAI {
|
|
|
pacsLabel = new PacsLabel();
|
|
|
presentLabel.setPacsLabel(pacsLabel);
|
|
|
}
|
|
|
- entityProcessPacs.extractEntity(aiOut, pacsLabel);
|
|
|
+ entityProcessPacs.extractEntity(aiOut, pacsLabel,false);
|
|
|
//服用药品
|
|
|
List<Medicine> medicines = takeMedicine(presentLabel);
|
|
|
presentLabel.setTakeMedicine(medicines);
|
|
@@ -709,7 +709,7 @@ public class BeHospitalizedAI extends ModelAI {
|
|
|
return;
|
|
|
}
|
|
|
EntityProcessPacs entityProcessPacs = new EntityProcessPacs();
|
|
|
- entityProcessPacs.extractEntity(aiOut, pacsLabel);
|
|
|
+ entityProcessPacs.extractEntity(aiOut, pacsLabel,true);
|
|
|
// EntityProcessPacsNew entityProcessPacsNew = new EntityProcessPacsNew();
|
|
|
// Map<String, PacsNew> map = entityProcessPacsNew.extractEntity(aiOut);
|
|
|
//
|