int ErrorCnt = 0;
int clf_acc_error_cnt = 0;
int clf_acc_total_cnt = 0;
HashMap<String, HashMap<String, String>> uData = new HashMap<String, HashMap<String, String>>();
for (int i = 0; i < pls.size(); i++) {
ProgramRule script = pls.get(i);
// System.out.println(script);
String res = "";
for (int j = 0; j < entries.size(); j++) {
InterpreterType worker = script
.getRuleForValue(entries.get(j)[0]);
String classlabel = script
.getClassForValue(entries.get(j)[0]);
String tmps = worker.execute_debug(entries
.get(j)[0]);
HashMap<String, String> dict = new HashMap<String, String>();
dict.put("class", classlabel);