在GATE

时间:2016-10-10 10:19:04

标签: gate information-extraction

我有这种情况:

我有(例如)

形式的键值对列表
000.000.0001.000 VALUE1

000.000.0002.000 VALUE2

...

000.010.0001.000 VALUE254

文件使用如下表格提供信息:

SK1 | SK2 | SK3 | SK4

000  | 000 | 0001 | 000

问题在于,在处理此表时,它会转到

000

000

0001

000

所以地名录不会匹配它。我想构建一个JAPE规则来匹配它,它可以正常匹配4个关键部分。

现在我需要在一个结构(例如,一个hashmap)中加载带有我的JAPE规则的地名词典,这样我就可以查找这四个关键部分的连接并得到(例如)“VALUE1”。是否可以从JAPE文件中加载地名词典并将其用作字典?

还有其他(更好的)方法可以做我需要的吗?

非常感谢。

1 个答案:

答案 0 :(得分:0)

我使用GazetteerList类和下一个片段找到了我的问题的解决方案:

//Gazetteer object
GazetteerList gazList = new GazetteerList() ;
//Object to map gazetteers entries and their positions in the list
//i.e.: 000.000.0001.000 -> 1,3
//This is because, in my case, the same key 
//can appear more than once in the gazetteer
HashMap<String, ArrayList<Integer>> keyMap = 
                                   new HashMap<String, ArrayList<Integer>>();
  try{
    gazList.setMode(GazetteerList.LIST_MODE);
    gazList.setSeparator("\t");
    gazList.setURL(
        new URL("file:/path/to/gazetteer/gazetteer_list_file.lst"));
    gazList.load();

    //Here is the mapping between the keys and their position
    int pos = 0;
    for( GazetteerNode gazNode : gazList){
      if(keyMap.get(gazNode.getEntry()) == null)
        keyMap.put(gazNode.getEntry(), new ArrayList<Integer>());

      keyMap.get(gazNode.getEntry()).add(pos);
      pos++;
    }

  } catch (MalformedURLException ex){
    System.out.println(ex);
  } catch (ResourceInstantiationException ex){
    System.out.println(ex);
  }

然后,您可以在地图中查找匹配的密钥并获取其功能:

  for(Integer index : keyMap.get(key)){
      FeatureMap fmap = toFeatureMap(gazList.get(index).getFeatureMap());
      fmap.put("additionalFeature", "feature");
      outputAS.add(startOffset, endOffset, "Lookup", fmap);
  }