From commits-return-4447-apmail-ctakes-commits-archive=ctakes.apache.org@ctakes.apache.org Wed Sep 21 20:04:50 2016 Return-Path: X-Original-To: apmail-ctakes-commits-archive@www.apache.org Delivered-To: apmail-ctakes-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id CA662191D6 for ; Wed, 21 Sep 2016 20:04:50 +0000 (UTC) Received: (qmail 20271 invoked by uid 500); 21 Sep 2016 20:04:50 -0000 Delivered-To: apmail-ctakes-commits-archive@ctakes.apache.org Received: (qmail 20228 invoked by uid 500); 21 Sep 2016 20:04:50 -0000 Mailing-List: contact commits-help@ctakes.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ctakes.apache.org Delivered-To: mailing list commits@ctakes.apache.org Received: (qmail 20219 invoked by uid 99); 21 Sep 2016 20:04:50 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Sep 2016 20:04:50 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id 43ED2C64C6 for ; Wed, 21 Sep 2016 20:04:50 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 0.676 X-Spam-Level: X-Spam-Status: No, score=0.676 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-1.124] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id WrY5ku316TQp for ; Wed, 21 Sep 2016 20:04:48 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTP id 48D175F36A for ; Wed, 21 Sep 2016 20:04:48 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 8D8C6E0057 for ; Wed, 21 Sep 2016 20:04:47 +0000 (UTC) Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id B31F93A0954 for ; Wed, 21 Sep 2016 20:04:46 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1761804 - in /ctakes/trunk/ctakes-temporal/scripts/nn: classify.sh cnn_classify.py cnn_train.py predict.py train.sh train_and_package.py Date: Wed, 21 Sep 2016 20:04:46 -0000 To: commits@ctakes.apache.org From: dligach@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20160921200446.B31F93A0954@svn01-us-west.apache.org> Author: dligach Date: Wed Sep 21 20:04:46 2016 New Revision: 1761804 URL: http://svn.apache.org/viewvc?rev=1761804&view=rev Log: renamed a few files to relfect they are cnn experiments Added: ctakes/trunk/ctakes-temporal/scripts/nn/cnn_classify.py - copied unchanged from r1761803, ctakes/trunk/ctakes-temporal/scripts/nn/predict.py ctakes/trunk/ctakes-temporal/scripts/nn/cnn_train.py - copied unchanged from r1761803, ctakes/trunk/ctakes-temporal/scripts/nn/train_and_package.py Removed: ctakes/trunk/ctakes-temporal/scripts/nn/predict.py ctakes/trunk/ctakes-temporal/scripts/nn/train_and_package.py Modified: ctakes/trunk/ctakes-temporal/scripts/nn/classify.sh ctakes/trunk/ctakes-temporal/scripts/nn/train.sh Modified: ctakes/trunk/ctakes-temporal/scripts/nn/classify.sh URL: http://svn.apache.org/viewvc/ctakes/trunk/ctakes-temporal/scripts/nn/classify.sh?rev=1761804&r1=1761803&r2=1761804&view=diff ============================================================================== --- ctakes/trunk/ctakes-temporal/scripts/nn/classify.sh (original) +++ ctakes/trunk/ctakes-temporal/scripts/nn/classify.sh Wed Sep 21 20:04:46 2016 @@ -1,7 +1,7 @@ #!/bin/bash source $(dirname $0)/env/bin/activate -python $(dirname $0)/predict.py $* +python $(dirname $0)/cnn_classify.py $* ret=$? deactivate exit $ret Modified: ctakes/trunk/ctakes-temporal/scripts/nn/train.sh URL: http://svn.apache.org/viewvc/ctakes/trunk/ctakes-temporal/scripts/nn/train.sh?rev=1761804&r1=1761803&r2=1761804&view=diff ============================================================================== --- ctakes/trunk/ctakes-temporal/scripts/nn/train.sh (original) +++ ctakes/trunk/ctakes-temporal/scripts/nn/train.sh Wed Sep 21 20:04:46 2016 @@ -1,7 +1,7 @@ #!/bin/bash source $(dirname $0)/env/bin/activate -python $(dirname $0)/train_and_package.py $* +python $(dirname $0)/cnn_train.py $* ret=$? deactivate exit $ret