File size: 15,042 Bytes
6f3ebfa | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 | package org.maltparser.ml.lib;
import java.io.BufferedOutputStream;
import java.io.BufferedReader;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.ObjectOutputStream;
import java.io.PrintStream;
import java.util.LinkedHashMap;
import de.bwaldvogel.liblinear.FeatureNode;
import de.bwaldvogel.liblinear.Linear;
import de.bwaldvogel.liblinear.Model;
import de.bwaldvogel.liblinear.Parameter;
import de.bwaldvogel.liblinear.Problem;
import de.bwaldvogel.liblinear.SolverType;
import org.maltparser.core.config.Configuration;
import org.maltparser.core.exception.MaltChainedException;
import org.maltparser.core.helper.NoPrintStream;
import org.maltparser.core.helper.Util;
import org.maltparser.ml.lib.FeatureList;
import org.maltparser.ml.lib.MaltLiblinearModel;
import org.maltparser.ml.lib.MaltFeatureNode;
import org.maltparser.ml.lib.LibException;
import org.maltparser.parser.guide.instance.InstanceModel;
public class LibLinear extends Lib {
public LibLinear(InstanceModel owner, Integer learnerMode) throws MaltChainedException {
super(owner, learnerMode, "liblinear");
if (learnerMode == CLASSIFY) {
model = (MaltLibModel)getConfigFileEntryObject(".moo");
}
}
protected void trainInternal( LinkedHashMap<String, String> libOptions) throws MaltChainedException {
Configuration config = getConfiguration();
if (config.isLoggerInfoEnabled()) {
config.logInfoMessage("Creating Liblinear model "+getFile(".moo").getName()+"\n");
}
double[] wmodel = null;
int[] labels = null;
int nr_class = 0;
int nr_feature = 0;
Parameter parameter = getLiblinearParameters(libOptions);
try {
Problem problem = readProblem(getInstanceInputStreamReader(".ins"));
boolean res = checkProblem(problem);
if (res == false) {
throw new LibException("Abort (The number of training instances * the number of classes) > "+Integer.MAX_VALUE+" and this is not supported by LibLinear. ");
}
if (config.isLoggerInfoEnabled()) {
config.logInfoMessage("- Train a parser model using LibLinear.\n");
}
final PrintStream out = System.out;
final PrintStream err = System.err;
System.setOut(NoPrintStream.NO_PRINTSTREAM);
System.setErr(NoPrintStream.NO_PRINTSTREAM);
Model model = Linear.train(problem, parameter);
System.setOut(err);
System.setOut(out);
problem = null;
wmodel = model.getFeatureWeights();
labels = model.getLabels();
nr_class = model.getNrClass();
nr_feature = model.getNrFeature();
boolean saveInstanceFiles = ((Boolean)getConfiguration().getOptionValue("lib", "save_instance_files")).booleanValue();
if (!saveInstanceFiles) {
getFile(".ins").delete();
}
} catch (OutOfMemoryError e) {
throw new LibException("Out of memory. Please increase the Java heap size (-Xmx<size>). ", e);
} catch (IllegalArgumentException e) {
throw new LibException("The Liblinear learner was not able to redirect Standard Error stream. ", e);
} catch (SecurityException e) {
throw new LibException("The Liblinear learner cannot remove the instance file. ", e);
} catch (NegativeArraySizeException e) {
throw new LibException("(The number of training instances * the number of classes) > "+Integer.MAX_VALUE+" and this is not supported by LibLinear.", e);
}
if (config.isLoggerInfoEnabled()) {
config.logInfoMessage("- Optimize the memory usage\n");
}
MaltLiblinearModel xmodel = null;
try {
// System.out.println("Nr Features:" + nr_feature);
// System.out.println("nr_class:" + nr_class);
// System.out.println("wmodel.length:" + wmodel.length);
double[][] wmatrix = convert2(wmodel, nr_class, nr_feature);
xmodel = new MaltLiblinearModel(labels, nr_class, wmatrix.length, wmatrix, parameter.getSolverType());
if (config.isLoggerInfoEnabled()) {
config.logInfoMessage("- Save the Liblinear model "+getFile(".moo").getName()+"\n");
}
} catch (OutOfMemoryError e) {
throw new LibException("Out of memory. Please increase the Java heap size (-Xmx<size>). ", e);
}
try {
if (xmodel != null) {
ObjectOutputStream output = new ObjectOutputStream (new BufferedOutputStream(new FileOutputStream(getFile(".moo").getAbsolutePath())));
try{
output.writeObject(xmodel);
} finally {
output.close();
}
}
} catch (OutOfMemoryError e) {
throw new LibException("Out of memory. Please increase the Java heap size (-Xmx<size>). ", e);
} catch (IllegalArgumentException e) {
throw new LibException("The Liblinear learner was not able to redirect Standard Error stream. ", e);
} catch (SecurityException e) {
throw new LibException("The Liblinear learner cannot remove the instance file. ", e);
} catch (IOException e) {
throw new LibException("The Liblinear learner cannot save the model file '"+getFile(".mod").getAbsolutePath()+"'. ", e);
}
}
private double[][] convert2(double[] w, int nr_class, int nr_feature) {
int[] wlength = new int[nr_feature];
int nr_nfeature = 0;
// int ne = 0;
// int nr = 0;
// int no = 0;
// int n = 0;
// Identify length of new weight array for each feature
for (int i = 0; i < nr_feature; i++) {
int k = nr_class;
for (int t = i * nr_class; (t + (k - 1)) >= t; k--) {
if (w[t + k - 1] != 0.0) {
break;
}
}
int b = k;
if (b != 0) {
for (int t = i * nr_class; (t + (b - 1)) >= t; b--) {
if (b != k) {
if (w[t + b - 1] != w[t + b]) {
break;
}
}
}
}
if (k == 0 || b == 0) {
wlength[i] = 0;
} else {
wlength[i] = k;
nr_nfeature++;
}
}
// Allocate the weight matrix with the new number of features and
// an array wsignature that efficient compare if weight vector can be reused by another feature.
double[][] wmatrix = new double[nr_nfeature][];
double[] wsignature = new double[nr_nfeature];
Long[] reverseMap = featureMap.reverseMap();
int in = 0;
for (int i = 0; i < nr_feature; i++) {
if (wlength[i] == 0) {
// if the length of the weight vector is zero than eliminate the feature from the feature map.
// ne++;
featureMap.removeIndex(reverseMap[i + 1]);
reverseMap[i + 1] = null;
} else {
boolean reuse = false;
double[] copy = new double[wlength[i]];
System.arraycopy(w, i * nr_class, copy, 0, wlength[i]);
featureMap.setIndex(reverseMap[i + 1], in + 1);
for (int j=0; j<copy.length; j++) wsignature[in] += copy[j];
for (int j = 0; j < in; j++) {
if (wsignature[j] == wsignature[in]) {
// if the signatures is equal then do more narrow comparison
if (Util.equals(copy, wmatrix[j])) {
// if equal then reuse the weight vector
wmatrix[in] = wmatrix[j];
reuse = true;
// nr++;
break;
}
}
}
if (reuse == false) {
// if no reuse has done use the new weight vector in the weight matrix
// no++;
wmatrix[in] = copy;
}
in++;
}
// n++;
}
featureMap.setFeatureCounter(nr_nfeature);
// System.out.println("NE:"+ne);
// System.out.println("NR:"+nr);
// System.out.println("NO:"+no);
// System.out.println("N :"+n);
return wmatrix;
}
public static boolean eliminate(double[] a) {
if (a.length == 0) {
return true;
}
for (int i = 1; i < a.length; i++) {
if (a[i] != a[i-1]) {
return false;
}
}
return true;
}
protected void trainExternal(String pathExternalTrain, LinkedHashMap<String, String> libOptions) throws MaltChainedException {
try {
Configuration config = getConfiguration();
if (config.isLoggerInfoEnabled()) {
config.logInfoMessage("Creating liblinear model (external) "+getFile(".mod").getName());
}
binariesInstances2SVMFileFormat(getInstanceInputStreamReader(".ins"), getInstanceOutputStreamWriter(".ins.tmp"));
final String[] params = getLibParamStringArray(libOptions);
String[] arrayCommands = new String[params.length+3];
int i = 0;
arrayCommands[i++] = pathExternalTrain;
for (; i <= params.length; i++) {
arrayCommands[i] = params[i-1];
}
arrayCommands[i++] = getFile(".ins.tmp").getAbsolutePath();
arrayCommands[i++] = getFile(".mod").getAbsolutePath();
if (verbosity == Verbostity.ALL) {
config.logInfoMessage('\n');
}
final Process child = Runtime.getRuntime().exec(arrayCommands);
final InputStream in = child.getInputStream();
final InputStream err = child.getErrorStream();
int c;
while ((c = in.read()) != -1){
if (verbosity == Verbostity.ALL) {
config.logInfoMessage((char)c);
}
}
while ((c = err.read()) != -1){
if (verbosity == Verbostity.ALL || verbosity == Verbostity.ERROR) {
config.logInfoMessage((char)c);
}
}
if (child.waitFor() != 0) {
config.logErrorMessage(" FAILED ("+child.exitValue()+")");
}
in.close();
err.close();
if (config.isLoggerInfoEnabled()) {
config.logInfoMessage("\nSaving Liblinear model "+getFile(".moo").getName()+"\n");
}
MaltLiblinearModel xmodel = new MaltLiblinearModel(getFile(".mod"));
ObjectOutputStream output = new ObjectOutputStream (new BufferedOutputStream(new FileOutputStream(getFile(".moo").getAbsolutePath())));
try{
output.writeObject(xmodel);
} finally {
output.close();
}
boolean saveInstanceFiles = ((Boolean)getConfiguration().getOptionValue("lib", "save_instance_files")).booleanValue();
if (!saveInstanceFiles) {
getFile(".ins").delete();
getFile(".mod").delete();
getFile(".ins.tmp").delete();
}
if (config.isLoggerInfoEnabled()) {
config.logInfoMessage('\n');
}
} catch (InterruptedException e) {
throw new LibException("Learner is interrupted. ", e);
} catch (IllegalArgumentException e) {
throw new LibException("The learner was not able to redirect Standard Error stream. ", e);
} catch (SecurityException e) {
throw new LibException("The learner cannot remove the instance file. ", e);
} catch (IOException e) {
throw new LibException("The learner cannot save the model file '"+getFile(".mod").getAbsolutePath()+"'. ", e);
} catch (OutOfMemoryError e) {
throw new LibException("Out of memory. Please increase the Java heap size (-Xmx<size>). ", e);
}
}
public void terminate() throws MaltChainedException {
super.terminate();
}
public LinkedHashMap<String, String> getDefaultLibOptions() {
LinkedHashMap<String, String> libOptions = new LinkedHashMap<String, String>();
libOptions.put("s", "4"); // type = SolverType.MCSVM_CS (default)
libOptions.put("c", "0.1"); // cost = 1 (default)
libOptions.put("e", "0.1"); // epsilon = 0.1 (default)
libOptions.put("B", "-1"); // bias = -1 (default)
return libOptions;
}
public String getAllowedLibOptionFlags() {
return "sceB";
}
private Problem readProblem(InputStreamReader isr) throws MaltChainedException {
Problem problem = new Problem();
final FeatureList featureList = new FeatureList();
if (getConfiguration().isLoggerInfoEnabled()) {
getConfiguration().logInfoMessage("- Read all training instances.\n");
}
try {
final BufferedReader fp = new BufferedReader(isr);
problem.bias = -1;
problem.l = getNumberOfInstances();
problem.x = new FeatureNode[problem.l][];
problem.y = new int[problem.l];
int i = 0;
while(true) {
String line = fp.readLine();
if(line == null) break;
int y = binariesInstance(line, featureList);
if (y == -1) {
continue;
}
try {
problem.y[i] = y;
problem.x[i] = new FeatureNode[featureList.size()];
int p = 0;
for (int k=0; k < featureList.size(); k++) {
MaltFeatureNode x = featureList.get(k);
problem.x[i][p++] = new FeatureNode(x.getIndex(), x.getValue());
}
i++;
} catch (ArrayIndexOutOfBoundsException e) {
throw new LibException("Couldn't read liblinear problem from the instance file. ", e);
}
}
fp.close();
problem.n = featureMap.size();
} catch (IOException e) {
throw new LibException("Cannot read from the instance file. ", e);
}
return problem;
}
private boolean checkProblem(Problem problem) throws MaltChainedException {
int max_y = problem.y[0];
for (int i = 1; i < problem.y.length; i++) {
if (problem.y[i] > max_y) {
max_y = problem.y[i];
}
}
if (max_y * problem.l < 0) { // max_y * problem.l > Integer.MAX_VALUE
if (getConfiguration().isLoggerInfoEnabled()) {
getConfiguration().logInfoMessage("*** Abort (The number of training instances * the number of classes) > Max array size: ("+problem.l+" * "+max_y+") > "+Integer.MAX_VALUE+" and this is not supported by LibLinear.\n");
}
return false;
}
return true;
}
private Parameter getLiblinearParameters(LinkedHashMap<String, String> libOptions) throws MaltChainedException {
Parameter param = new Parameter(SolverType.MCSVM_CS, 0.1, 0.1);
String type = libOptions.get("s");
if (type.equals("0")) {
param.setSolverType(SolverType.L2R_LR);
} else if (type.equals("1")) {
param.setSolverType(SolverType.L2R_L2LOSS_SVC_DUAL);
} else if (type.equals("2")) {
param.setSolverType(SolverType.L2R_L2LOSS_SVC);
} else if (type.equals("3")) {
param.setSolverType(SolverType.L2R_L1LOSS_SVC_DUAL);
} else if (type.equals("4")) {
param.setSolverType(SolverType.MCSVM_CS);
} else if (type.equals("5")) {
param.setSolverType(SolverType.L1R_L2LOSS_SVC);
} else if (type.equals("6")) {
param.setSolverType(SolverType.L1R_LR);
} else if (type.equals("7")) {
param.setSolverType(SolverType.L2R_LR_DUAL);
} else {
throw new LibException("The liblinear type (-s) is not an integer value between 0 and 4. ");
}
try {
param.setC(Double.valueOf(libOptions.get("c")).doubleValue());
} catch (NumberFormatException e) {
throw new LibException("The liblinear cost (-c) value is not numerical value. ", e);
}
try {
param.setEps(Double.valueOf(libOptions.get("e")).doubleValue());
} catch (NumberFormatException e) {
throw new LibException("The liblinear epsilon (-e) value is not numerical value. ", e);
}
return param;
}
}
|