Return-Path: X-Original-To: apmail-incubator-ctakes-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-ctakes-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 930E5D228 for ; Thu, 15 Nov 2012 22:26:37 +0000 (UTC) Received: (qmail 57188 invoked by uid 500); 15 Nov 2012 22:26:37 -0000 Delivered-To: apmail-incubator-ctakes-commits-archive@incubator.apache.org Received: (qmail 57164 invoked by uid 500); 15 Nov 2012 22:26:37 -0000 Mailing-List: contact ctakes-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: ctakes-dev@incubator.apache.org Delivered-To: mailing list ctakes-commits@incubator.apache.org Received: (qmail 57156 invoked by uid 99); 15 Nov 2012 22:26:37 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Nov 2012 22:26:37 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Nov 2012 22:26:34 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id E278E2388980 for ; Thu, 15 Nov 2012 22:26:12 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r838524 - in /websites/staging/ctakes/trunk/content: ./ ctakes/2.6.0/ctakes-2.6-Assertion.html Date: Thu, 15 Nov 2012 22:26:12 -0000 To: ctakes-commits@incubator.apache.org From: buildbot@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20121115222612.E278E2388980@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: buildbot Date: Thu Nov 15 22:26:12 2012 New Revision: 838524 Log: Staging update by buildbot for ctakes Added: websites/staging/ctakes/trunk/content/ctakes/2.6.0/ctakes-2.6-Assertion.html Modified: websites/staging/ctakes/trunk/content/ (props changed) Propchange: websites/staging/ctakes/trunk/content/ ------------------------------------------------------------------------------ --- cms:source-revision (original) +++ cms:source-revision Thu Nov 15 22:26:12 2012 @@ -1 +1 @@ -1410056 +1410066 Added: websites/staging/ctakes/trunk/content/ctakes/2.6.0/ctakes-2.6-Assertion.html ============================================================================== --- websites/staging/ctakes/trunk/content/ctakes/2.6.0/ctakes-2.6-Assertion.html (added) +++ websites/staging/ctakes/trunk/content/ctakes/2.6.0/ctakes-2.6-Assertion.html Thu Nov 15 22:26:12 2012 @@ -0,0 +1,168 @@ + + + + + + + + + + + + + + +
+ + + +
+

cTAKES 2.5 - Assertion

+

Contents of this Page

+
    +
  • Overview of Assertion
  • +
  • Negation, uncertainty, and conditional attribute annotator
  • +
  • Generic attribute annotator
  • +
  • Subject attribute annotator
  • +
+

Overview of Assertion

+

The assertion annotator provides a mechanism for examining and documenting the +real-world implications for annotations in text. For example, one might +assume that a mention of "diabetes" in text implies that patient has diabetes. +However, the assertion module will consider whether a named entity or event is +negated, uncertain, or conditional. Additionally, the subject of the +statement may be someone other than the patient (e.g., the patient's father, +for "father has hx of diabetes"), or the use of a term might be generic +(e.g., "gave pt a diabetes brochure"). Each of these attributes illustrate +how the "assertion" value of a named entity might be marked.

+

+

Tip
+

+

The assertion module and the NE Contexts annotator have overlapping +functionality, and only one should be used at a time.

+

The default means of running the assertion annotator is to use an aggregate +analysis engine that includes +assertion/desc/AssertionMiniPipelineAnalysisEngine.xml. This is itself an +aggregate analysis engine, consisting of the components listed below.

+

Negation, uncertainty, and conditional attribute annotator

+

The conceptConverterAnalysisEngine and the AssertionAnalysisEngine work +together within the assertionMiniPipelineAnalysisEngine, and the pair of these +two together may be included explicitly on their own.

+

This pair of annotators depends on the following modules being run prior to +invocation of this annotator:

+
    +
  • tokenizer
  • +
  • sentence detector
  • +
  • dictionary lookup
  • +
+

We use the following types as input

+
    +
  • Sentence
  • +
  • UmlsConcept
  • +
  • OntologyConcept
  • +
  • EntityMention
  • +
  • EventMention
  • +
  • BaseToken
  • +
+

Then as output we modify attributes on EntityMention and EventMention. The +three attributes that we modify are:

+
    +
  1. polarity (integer values of -1 and +1)
  2. +
  3. uncertainty (integer value 0 or 1)
  4. +
  5. conditional (a boolean value of true or false).
  6. +
+

Generic attribute annotator

+

The generic attribute annotator can be included individually from +assertiondesc/GenericAttributeAnalysisEngine.xml or as part of the +AssertionMiniPipelineAnalysisEngine. It relies on the output of the +tokenizer, sentence detector, dependency parser, and semantic role labeler to +find whether each IdentifiedAnnotation is generic, then sets the +IdentifiedAnnotation:generic feature accordingly.

+

The possible values are specified by the prefix NE_GENERIC_ in +edu.mayo.bmi.uima.core.type.constants.CONST.

+

Subject attribute annotator

+

The subject attribute annotator can be included individually from +assertiondesc/SubjectAttributeAnalysisEngine.xml or as part of the +AssertionMiniPipelineAnalysisEngine. It relies on the output of the +tokenizer, sentence detector, dependency parser, and semantic role labeler to +find the subject of each IdentifiedAnnotation, then sets the +IdentifiedAnnotation:subject feature accordingly.The possible values are +specified by the prefix ATTR_SUBJECT_ in +edu.mayo.bmi.uima.core.type.constants.CONST.

+
+ +
+
+

Copyright © 2011 The Apache Software Foundation, Licensed under the Apache License, Version 2.0.
Apache and the Apache feather logo are trademarks of The Apache Software Foundation.

+
+
+ + + +