add TD algorithms and started adopting to continous tasks
- add Q-Learning and SARSA - more config variables
This commit is contained in:
@@ -30,7 +30,6 @@ public class StateActionRow<A extends Enum> extends JTextArea {
|
||||
|
||||
protected void refreshLabels(){
|
||||
if(state == null || actionValues == null) return;
|
||||
System.out.println("refreshing");
|
||||
StringBuilder sb = new StringBuilder(state.toString()).append("\n");
|
||||
for(Map.Entry<A, Double> actionValue: actionValues.entrySet()){
|
||||
sb.append("\t").append(actionValue.getKey()).append("\t").append(actionValue.getValue()).append("\n");
|
||||
|
||||
Reference in New Issue
Block a user