-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from HumanBehaviourChangeProject/release-v4.1
Add recommender call to API
- Loading branch information
Showing
6 changed files
with
335 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
core/src/main/java/com/ibm/drl/hbcp/predictor/api/RecommendedIntervention.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package com.ibm.drl.hbcp.predictor.api; | ||
|
||
import lombok.Value; | ||
|
||
import javax.json.Json; | ||
import javax.json.JsonValue; | ||
import java.util.List; | ||
|
||
@Value | ||
public class RecommendedIntervention implements Jsonable { | ||
|
||
/** The IDs of the Behavior-Change techniques making up the intervention. */ | ||
List<String> bctIds; | ||
/** Prediction result: predicted outcome value and confidence */ | ||
double predictedValue; | ||
double confidence; | ||
|
||
@Override | ||
public JsonValue toJson() { | ||
return Json.createObjectBuilder() | ||
.add("intervention", Jsonable.getJsonArrayFromStrings(bctIds)) | ||
.add("predictedValue", predictedValue) | ||
.add("confidence", confidence) | ||
.build(); | ||
} | ||
} |
Oops, something went wrong.