dkpro-cassis
dkpro-cassis copied to clipboard
UIMA CAS processing library written in Python
**Is your feature request related to a problem? Please describe.** Right now, we have methods for checking type info like `is_instance` in three places, standalone functions, on Type and on...
**Describe the bug** The cassis `cas_with_collections` test uses a type system in which a type is derived from `uima.cas.StringArray`. Loading this type system in the UIMA Java SDK produces an...
**Is your feature request related to a problem? Please describe.** Reading casses chould have shorter syntax **Describe the solution you'd like** `load_cas_from_xmi(Path("sentiment.xmi"), typesystem=Path("TypeSystem.xml"))`
**Is your feature request related to a problem? Please describe.** Document that typesystem can be extended during runtime. UIMAj cant do this but cassis can.
**Is your feature request related to a problem? Please describe.** I think it would be great if the CAS API in cassis would also offer predicates such as "contains" or...
**Is your feature request related to a problem? Please describe.** We need more tests. **Describe the solution you'd like** Webanno TSV has many CAS XMI files which can be used...
**Is your feature request related to a problem? Please describe.** Coming from Java, I would expect there to be `Cas.get/set_document_text()` and `Cas.get/set_document_language()` methods, but there is only `sofa_string()` **Describe the...
Hi, We are trying to extract token's text_strings and pos tags from cas objects. Also, different type systems lead to return different pos tags formats. @zesch Please correct me here...
it would be nice to be able to initialize a CAS with a certain type system, e.g. ``` from somewhere import DKProCoreTypeSystem from cassis import Cas cas = Cas(DKProCoreTypeSystem()) ```
**Is your feature request related to a problem? Please describe.** It would be nice to add more cas select methods like `CasUtil` does. **Describe the solution you'd like** - [x]...