-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement evaluator that reads weights from file and returns value
- Loading branch information
Showing
2 changed files
with
30 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
|
||
public class BaseEvaluator implements Evaluator{ | ||
|
||
WeightsParser wp; | ||
String file; | ||
double[] weights; | ||
|
||
public BaseEvaluator(String file){ | ||
this.wp = new WeightsParser(); | ||
this.file = file; | ||
this.weights = this.wp.getWeights(file); | ||
} | ||
|
||
private double dot(double[] a1, double[] a2){ | ||
double res = 0; | ||
for(int i = 0; i < a1.length; i++){ | ||
res += (a1[i] * a2[i]); | ||
} | ||
return res; | ||
} | ||
|
||
public double evaluate(CheckersGameState s, int player){ | ||
double[] params = s.getFeatures(player); | ||
return dot(this.weights, params); | ||
} | ||
|
||
|
||
} | ||
|
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