1
Q
GATE註釋計數
A
回答
1
所有這一切需要的只是讓這些註釋,然後調用一個方法.size()
。 GATE中的AnnotationSet
擴展了Java集合類。
AnnotationSet annotationSet = gateDocument.getAnnotations().get("ABC");
int size=annotationSet.size();
1
另一種選擇是使用groovy腳本。該代碼是從here:
sum = 0
docs.findAll{ // get all documents currently loaded
def filteredAnnots = it.getAnnotations("Filtered")
num = filteredAnnots["Anatomy"].size()
sum += num
println it.name + " " + num // or print to a file here
}
println "total:" + " " + sum
你也可以很容易地把這個代碼在Groovy插件(PR)並運行它作爲管道的一部分,描述here。
相關問題
- 1. 在GATE中重疊註釋
- 2. Gate - 從註釋集中提取單個註釋文本
- 3. 從xml中從GATE提取註釋
- 4. 從GATE數據存儲中讀取帶註釋的數據
- 5. django註釋 - 條件計數
- 6. GATE戲言規則註釋包括兩個詞
- 7. GATE JAPE規則註釋另一個包含的令牌
- 8. 我們可以在GATE中分組註釋
- 9. 計算理論GATE 2012
- 10. django queryset自定義註釋(計數)
- 11. Django的註釋計數查詢輸出
- 12. 試圖進去註釋計數(「foo__bar」)()
- 13. 代碼統計數據的註釋行
- 14. @計劃的註釋Spring
- 15. Gate Developer和Gate Embedded輸出
- 16. 參數註釋
- 17. 代碼註釋 - 是否應使用設計模式註釋
- 18. Django註釋計數似乎沒有計算
- 19. GATE標記註解數字,貨幣,貨幣
- 20. C#數據註釋
- 21. 數據註釋MVC3
- 22. R數學註釋
- 23. 註釋或不註釋
- 24. Hibernate註釋。如何註釋?
- 25. 使用註釋器js在mysql數據庫中存儲註釋(註釋)
- 26. 計數具有註釋的類和方法的數量
- 27. 無法計算到註釋的距離
- 28. iOS註釋的UILabel設計模式
- 29. java.lang.InternalError:CallerSensitive註釋預計將在1幀
- 30. Knitr:不註釋掉不計算代碼
適合我......謝謝.... – user2910192