Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merging ReCiter scoring changes to master. #539

Merged
merged 9 commits into from
Jan 20, 2025
Prev Previous commit
Next Next commit
added debug logs in controller
  • Loading branch information
mrj4001 committed Jan 17, 2025
commit 810296f9d4e0ed6ed56136259e9610cfc87a13ce
4 changes: 2 additions & 2 deletions src/main/java/reciter/controller/ReCiterController.java
Original file line number Diff line number Diff line change
Expand Up @@ -469,8 +469,8 @@ public ResponseEntity runFeatureGenerator(@RequestParam(value = "uid") String ui
stopWatch.start("Feature generation for UID");

final double totalScore;
log.info("authorshipLikelihoodScore :",authorshipLikelihoodScore);
log.info("totalArticleScoreStandardizedDefault :",totalArticleScoreStandardizedDefault);
System.out.println("authorshipLikelihoodScore :"+authorshipLikelihoodScore);
System.out.println("totalArticleScoreStandardizedDefault :"+totalArticleScoreStandardizedDefault);
if(authorshipLikelihoodScore == null) {
totalScore = totalArticleScoreStandardizedDefault; // Configuring the totalScore in multiple of 10's in application.properties file
} else {
Expand Down