All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gate.plugin.learningframework.engines.EngineMBMallet Maven / Gradle / Ivy

Go to download

A GATE plugin that provides many different machine learning algorithms for a wide range of NLP-related machine learning tasks like text classification, tagging, or chunking.

There is a newer version: 4.2
Show newest version
/*
 * Copyright (c) 2015-2016 The University Of Sheffield.
 *
 * This file is part of gateplugin-LearningFramework 
 * (see https://github.com/GateNLP/gateplugin-LearningFramework).
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 2.1 of the License, or
 * (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this software. If not, see .
 */


package gate.plugin.learningframework.engines;

import gate.plugin.learningframework.data.CorpusRepresentationMallet;
import static gate.plugin.learningframework.engines.Engine.FILENAME_MODEL;
import gate.util.GateRuntimeException;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectOutputStream;
import org.apache.log4j.Logger;

/**
 * Base class for all engines which wrap a Mallet algorithm.
 * 
 * This kind of engines always used Mallet corpus representation.
 * 
 * @author Johann Petrak
 */
public abstract class EngineMBMallet extends EngineMB {
  
  private static Logger LOGGER = Logger.getLogger(EngineMBMallet.class);
  
  public CorpusRepresentationMallet getCorpusRepresentationMallet() {
    return corpusRepresentation;
  }


  @Override
  protected void saveModel(File directory) {
    if(model==null) {
      // TODO: this should eventually throw an exception, we leave it for testing now.
      System.err.println("WARNING: saving a null model!!!");
    }
    ObjectOutputStream oos = null;
    try {
      oos = new ObjectOutputStream(new FileOutputStream(new File(directory, FILENAME_MODEL)));
      oos.writeObject(model);
    } catch (IOException e) {
      throw new GateRuntimeException("Could not store Mallet model", e);
    } finally {
      if (oos != null) {
        try {
          oos.close();
        } catch (IOException ex) {
          LOGGER.error("Could not close object output stream", ex);
        }
      }
    }
  }


  
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy