疾患予測サーバが提供するWebAPIはHL7 FHIRの
RiskAssessmentリソースを用いてリクエスト及びレスポンスを送る。
リクエスト
クライアントが疾患予測サーバに分類対象となるテキストを送る。以下は,リクエストを送るjavascriptプログラムの一部分。
- // ここで HL7 FHIR の RiskAssessment リソースで予測システム(api-predict)へリクエストを送る
- var riskAssessment = {
- "resourceType": "RiskAssessment",
- "status": "final",
- "basis": [
- {
- "reference": text
- }
- ],
- "comment": "Naive Bayes Classifier Ver.1.0"
- };
-
-
- $.ajax({
- url: 'http://192.168.11.251/~nlp_ai/api-predict.php',
- type: 'POST',
- headers: {
- 'Content-Type': 'application/json;charset=utf-8'
- },
- async: false,
- data: JSON.stringify(riskAssessment),
- processData: true,
- dataType: 'json'
- })
- .done(function(data, textStatus, jqXHR) {
- ・・・以下,疾患予測サーバからのレスポンスを処理する・・・
以下は,上記プログラムでサーバー側に送られたJSON形式のリクエストメッセージ。
- {
- "resourceType":"RiskAssessment",
- "status":"final",
- "basis":[
- {
- "reference":"ここに疾患分類対象のテキストを設定する。・・・"
- }
- ],
- "comment":"Naive Bayes Classifier Ver.1.0"
- }
本来,RiskAssessment.basis.referenceにはリスク評価に用いる情報(FamilyHistory, Observations, Procedures, Conditions, etc.)への参照(Reference)を記述することになっているが,ここでは,直接分類対象のテキストを設定した。
レスポンス
これに対するレスポンスは,複数のRiskAssessmentリソースを
Bundleリソースで束ねたものとした。
以下は,疾患予測サーバーが返すレスポンスメッセージ。
- {
- "status":"final",
- "resourceType":"RiskAssessment",
- "basis[0][reference]":"不妊症。",
- "comment":"Naive Bayes Classifier Ver.1.0",
- "bundle":{
- "resourceType":"Bundle",
- "type":"message",
- "entry":[
- {
- "resourceType":"RiskAssessment",
- "status":"final",
- "prediction":[
- {
- "outcome":{"text":"naimaku"},
- "probability":1.4142274696827
- }
- ]
- },{
- "resourceType":"RiskAssessment",
- "status":"final",
- "prediction":[
- {
- "outcome":{"text":"kinsyu"},
- "probability":1.398112511866
- }
- ]
- },{
- "resourceType":"RiskAssessment",
- "status":"final",
- "prediction":[
- {
- "outcome":{"text":"taigan"},
- "probability":0.48504086418881
- }
- ]
- },{
- "resourceType":"RiskAssessment",
- "status":"final",
- "prediction":[
- {
- "outcome":{"text":"ransou"},
- "probability":-0.20820912181313
- }
- ]
- },{
- "resourceType":"RiskAssessment",
- "status":"final",
- "prediction":[
- {
- "outcome":{"text":"keigan"},
- "probability":-0.21748840888999
- }
- ]
- }
- ]
- }
- }
Bundle.entry配列に疾患ごとのRiskAssessmentリソースで分類結果が返ってくる。疾患名は,RiskAssessment.prediction[0].outcome.textに,スコアはRiskAssessment.prediction[0].probabilityに設定されている。
下記は,上記のレスポンスを画面編集するクライアント側のプログラムの一部である。
- .done(function(data, textStatus, jqXHR) {
- var html = '<table class="table table-hover table-striped">';
- html += '<caption>予測結果(あくまでも予測です。気になる場合は病院に受診してください。)</caption>';
- html += '<tr>';
- html += '<th>#</th>';
- html += '<th>疾患</th>';
- html += '<th>判定スコア</th>';
- html += '</tr>';
- var i = 1;
- $.each(data.bundle.entry, function(index, riskAssessment){
- html += '<tr>';
- html += '<td>' + (i++) + '</td>';
- html += '<td>';
- html += DISEASE_NAME[riskAssessment.prediction[0].outcome.text];
- html += '</td>';
- html += '<td>';
- html += riskAssessment.prediction[0].probability;
- html += '</td>';
- html += '</tr>';
- });
- html += '</table>';
- $("#predict-result-list").html(html);
- })