Return-Path: X-Original-To: apmail-incubator-ctakes-dev-archive@minotaur.apache.org Delivered-To: apmail-incubator-ctakes-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4478CD02E for ; Fri, 2 Nov 2012 08:20:44 +0000 (UTC) Received: (qmail 13409 invoked by uid 500); 2 Nov 2012 08:20:44 -0000 Delivered-To: apmail-incubator-ctakes-dev-archive@incubator.apache.org Received: (qmail 13358 invoked by uid 500); 2 Nov 2012 08:20:44 -0000 Mailing-List: contact ctakes-dev-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-dev@incubator.apache.org Received: (qmail 13331 invoked by uid 99); 2 Nov 2012 08:20:43 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Nov 2012 08:20:43 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of steven.bethard@colorado.edu designates 128.138.128.235 as permitted sender) Received: from [128.138.128.235] (HELO ipmx5.colorado.edu) (128.138.128.235) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Nov 2012 08:20:35 +0000 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Ap4EAK+Bk1DAqBGb/2dsb2JhbABEgmzBUIIeAQEFgQkCAQgYLjIlAQEEE4gGAbNYiQiLeyKFOGEDiCU1nWGDDg X-IronPort-AV: E=Sophos;i="4.80,697,1344232800"; d="scan'208";a="10675432" Received: from omr-raz-2-priv.int.colorado.edu ([192.168.17.155]) by ironport5-priv.int.colorado.edu with ESMTP; 02 Nov 2012 02:20:13 -0600 Received: from exhub2-pub.colorado.edu (EHLO exhub2.ad.colorado.edu) ([128.138.123.208]) by omr-raz-2-priv.int.colorado.edu (MOS 4.1.10-GA FastPath queued) with ESMTP id JHW10089; Fri, 02 Nov 2012 02:20:13 -0600 (MDT) Received: from EXC2.ad.colorado.edu ([fe80::881f:f335:f54:4d0d]) by exhub2.ad.colorado.edu ([::1]) with mapi; Fri, 2 Nov 2012 02:20:13 -0600 From: Steven Bethard To: "ctakes-dev@incubator.apache.org" Date: Fri, 2 Nov 2012 02:20:12 -0600 Subject: Re: dep parser descriptor auto-generation Thread-Topic: dep parser descriptor auto-generation Thread-Index: Ac240uGzliVIkpVRTwqdS5jDsOsgww== Message-ID: References: <5092F04F.50109@childrens.harvard.edu> In-Reply-To: <5092F04F.50109@childrens.harvard.edu> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Virus-Checked: Checked by ClamAV on apache.org On Nov 1, 2012, at 10:57 PM, Tim Miller wrote:=20 > So I've tracked down the issue where POS tags were null in the=20 > dependency parser, but not when the Chunker was added to the pipeline. =20 > The issue was that the POSTagger uses the subiterator method, which=20 > requires priorityList section in the descriptor to work. The POSTagger=20 > descriptor is missing it but the Chunker descriptor has it, so loading=20 > the Chunker descriptor was allowing the subiterator call in POSTagger to= =20 > work. >=20 > With me so far? I will check in the change to the POS descriptor. But=20 > to fully fix I had to re-generate the dependency parser descriptors=20 > (using the WriteClearParserDescriptors class). This results in some=20 > additional changes to those which are a result of the type priority=20 > change (see diff below). Is it safe to check in all of that or just the= =20 > POS descriptor change and expect others to generate their own dependency= =20 > descriptors? Do we have a test that runs the dependency parser from the descriptor? If w= e do, and the test passes after these changes, I'd say go ahead. > - name=3D"org.apache.ctakes.typesystem.types.TypeSystem"/> > + location=3D"../../../ctakes-type-system/src/main/resources/org/apache/cta= kes/typesystem/types/TypeSystem.xml"/> This is the only part that looks suspicious. We want by-name imports, not b= y-location imports, in general. Steve