public ReVerbOpenNlpConfFunction(URL url) throws IOException {
InputStream is = url.openStream();
try {
GISModel model;
try {
model = (GISModel) new PlainTextGISModelReader(
new BufferedReader(new InputStreamReader(
new GZIPInputStream(is)))).getModel();
} catch (Exception e) {
throw new IOException(e);
}