Steve Bethard wrote: > I spent some time writing a script for diff-ing CASes
I urge anyone interested in comparing cTakes CASes / output to use this type of approach. Comparison of program output is a post-process task, and unless absolutely necessary code to juggle data and metadata belongs there. Attempts to force every module past, present and Future to abide by fixed orderings, enumerations etc. is not as simple a task as one might initially think - especially if third-party libraries are involved. I won't get into problems associated with why one is comparing output (swapped module?) and IDs, orders etc. being different because of a possibly intentional difference. In addition to or instead of creating a post-processing script, one could write a new "cas-consumer" that writes output in a desired format - but this should not require changes to engines. "If it ain't broke, don't fix it" Sean -----Original Message----- From: Steven Bethard [mailto:steven.beth...@gmail.com] Sent: Monday, October 06, 2014 11:23 PM To: dev@ctakes.apache.org Subject: Re: cTakes output predictability On Mon, Oct 6, 2014 at 3:59 PM, Bruce Tietjen <bruce.tiet...@perfectsearchcorp.com> wrote: > Since I started working with cTakes some time ago, I have found it > difficult to compare the output between subsequent runs on the same files > because annotations are often assigned different IDs, are listed in > different order, etc. At one point, I spent some time writing a script for diff-ing CASes that intended to address some of these kinds of issues. It's still here in cTAKES: ctakes-temporal/src/main/java/org/apache/ctakes/temporal/data/analysis/CompareFeatureStructures.java You might see if you could use or adapt that to your needs. Steve