You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(5) |
Sep
|
Oct
(14) |
Nov
(37) |
Dec
(13) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(14) |
Feb
|
Mar
|
Apr
(15) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(3) |
Dec
(2) |
2003 |
Jan
(4) |
Feb
|
Mar
(1) |
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(4) |
2004 |
Jan
(1) |
Feb
(3) |
Mar
|
Apr
|
May
(4) |
Jun
(3) |
Jul
(1) |
Aug
(6) |
Sep
|
Oct
|
Nov
|
Dec
|
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(17) |
Nov
(3) |
Dec
|
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(23) |
Dec
|
2007 |
Jan
|
Feb
|
Mar
(7) |
Apr
(17) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
(3) |
Sep
(20) |
Oct
|
Nov
(15) |
Dec
(2) |
2009 |
Jan
(38) |
Feb
(4) |
Mar
(20) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(4) |
Jul
|
Aug
(17) |
Sep
(26) |
Oct
|
Nov
(2) |
Dec
|
From: Joern K. <joe...@us...> - 2010-11-17 11:16:03
|
Update of /cvsroot/maxent/maxent/src/main/java/opennlp/maxent In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv8829/src/main/java/opennlp/maxent Modified Files: GISTrainer.java Log Message: Moved the modelDistribution variable to nextIteration, no need to make it a field. Creation of the distribution array is cheap and performance testing could not measure a difference. Index: GISTrainer.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/GISTrainer.java,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** GISTrainer.java 6 Sep 2010 08:02:18 -0000 1.7 --- GISTrainer.java 17 Nov 2010 11:15:54 -0000 1.8 *************** *** 132,138 **** private final double LLThreshold = 0.0001; - /** Stores the output of the current model on a single event durring - * training. This we be reset for every event for every itteration. */ - double[] modelDistribution; /** Stores the number of features that get fired per event. */ int[] numfeats; --- 132,135 ---- *************** *** 377,381 **** display("...done.\n"); - modelDistribution = new double[numOutcomes]; numfeats = new int[numOutcomes]; --- 374,377 ---- *************** *** 453,456 **** --- 449,453 ---- // compute contribution of p(a|b_i) for each feature and the new // correction parameter + double[] modelDistribution = new double[numOutcomes]; double loglikelihood = 0.0; CFMOD = 0.0; *************** *** 466,469 **** --- 463,467 ---- GISModel.eval(contexts[ei], modelDistribution, evalParams); } + for (int j = 0; j < contexts[ei].length; j++) { int pi = contexts[ei][j]; |
From: Joern K. <joe...@us...> - 2010-11-15 12:35:37
|
Update of /cvsroot/maxent/maxent/src/main/java/opennlp/model In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv20146/src/main/java/opennlp/model Modified Files: MutableContext.java Log Message: Fixed typos. Index: MutableContext.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/model/MutableContext.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** MutableContext.java 6 Sep 2010 08:02:18 -0000 1.2 --- MutableContext.java 15 Nov 2010 12:35:28 -0000 1.3 *************** *** 25,38 **** * Class used to store parameters or expected values associated with this context which * can be updated or assigned. * @author Tom Morton - * */ public class MutableContext extends Context { /** ! * Creates a new parametes object with the specifed parameters associated with the specified * outcome pattern. * @param outcomePattern Array of outcomes for which parameters exists for this context. ! * @param parameters Paramaters for the outcomes specified. */ public MutableContext(int[] outcomePattern, double[] parameters) { --- 25,39 ---- * Class used to store parameters or expected values associated with this context which * can be updated or assigned. + * * @author Tom Morton */ public class MutableContext extends Context { /** ! * Creates a new parameters object with the specified parameters associated with the specified * outcome pattern. + * * @param outcomePattern Array of outcomes for which parameters exists for this context. ! * @param parameters Parameters for the outcomes specified. */ public MutableContext(int[] outcomePattern, double[] parameters) { *************** *** 42,45 **** --- 43,47 ---- /** * Assigns the parameter or expected value at the specified outcomeIndex the specified value. + * * @param outcomeIndex The index of the parameter or expected value to be updated. * @param value The value to be assigned. *************** *** 51,54 **** --- 53,57 ---- /** * Updated the parameter or expected value at the specified outcomeIndex by adding the specified value to its current value. + * * @param outcomeIndex The index of the parameter or expected value to be updated. * @param value The value to be added. |
From: Joern K. <joe...@us...> - 2010-09-28 07:54:16
|
Update of /cvsroot/maxent/maxent/src/main/java/opennlp/perceptron In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv9875/src/main/java/opennlp/perceptron Modified Files: PerceptronModelWriter.java Log Message: [ maxent-Bugs-3077040 ] ClassCastException when Perceptron model is serialized Index: PerceptronModelWriter.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/perceptron/PerceptronModelWriter.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** PerceptronModelWriter.java 6 Sep 2010 08:02:18 -0000 1.3 --- PerceptronModelWriter.java 28 Sep 2010 07:54:07 -0000 1.4 *************** *** 24,28 **** import java.util.Arrays; import java.util.List; - import java.util.Map; import opennlp.model.AbstractModel; --- 24,27 ---- *************** *** 30,33 **** --- 29,33 ---- import opennlp.model.ComparablePredicate; import opennlp.model.Context; + import opennlp.model.IndexHashTable; /** *************** *** 48,58 **** this.numOutcomes = model.getNumOutcomes(); PARAMS = (Context[]) data[0]; ! Map<String,Integer> pmap = (Map<String,Integer>)data[1]; OUTCOME_LABELS = (String[])data[2]; PRED_LABELS = new String[pmap.size()]; ! for (String pred : pmap.keySet()) { ! PRED_LABELS[pmap.get(pred)] = pred; ! } } --- 48,56 ---- this.numOutcomes = model.getNumOutcomes(); PARAMS = (Context[]) data[0]; ! IndexHashTable<String> pmap = (IndexHashTable<String>) data[1]; OUTCOME_LABELS = (String[])data[2]; PRED_LABELS = new String[pmap.size()]; ! pmap.toArray(PRED_LABELS); } |
From: Joern K. <joe...@us...> - 2010-09-09 13:23:57
|
Update of /cvsroot/maxent/maxent In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv15495 Modified Files: pom.xml Log Message: Updated version to 3.0.1-SNAPSHOT Index: pom.xml =================================================================== RCS file: /cvsroot/maxent/maxent/pom.xml,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** pom.xml 9 Sep 2010 09:49:18 -0000 1.8 --- pom.xml 9 Sep 2010 13:23:48 -0000 1.9 *************** *** 26,30 **** <artifactId>maxent</artifactId> <packaging>jar</packaging> ! <version>3.0.0</version> <name>OpenNLP Maxent</name> <url>http://maven.apache.org</url> --- 26,30 ---- <artifactId>maxent</artifactId> <packaging>jar</packaging> ! <version>3.0.1-SNAPSHOT</version> <name>OpenNLP Maxent</name> <url>http://maven.apache.org</url> |
From: Joern K. <joe...@us...> - 2010-09-09 09:49:27
|
Update of /cvsroot/maxent/maxent In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv2690 Modified Files: pom.xml Log Message: Changed deploy repo back to maven2. Index: pom.xml =================================================================== RCS file: /cvsroot/maxent/maxent/pom.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** pom.xml 9 Sep 2010 09:33:45 -0000 1.7 --- pom.xml 9 Sep 2010 09:49:18 -0000 1.8 *************** *** 55,59 **** <repository> <id>opennlp.sf.net</id> ! <url>scp://shell.sourceforge.net/home/groups/o/op/opennlp/htdocs/maven-test</url> </repository> </distributionManagement> --- 55,59 ---- <repository> <id>opennlp.sf.net</id> ! <url>scp://shell.sourceforge.net/home/groups/o/op/opennlp/htdocs/maven2</url> </repository> </distributionManagement> |
From: Joern K. <joe...@us...> - 2010-09-09 09:33:54
|
Update of /cvsroot/maxent/maxent In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv32389 Modified Files: pom.xml Log Message: Updated name of source package. Index: pom.xml =================================================================== RCS file: /cvsroot/maxent/maxent/pom.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** pom.xml 9 Sep 2010 09:26:10 -0000 1.6 --- pom.xml 9 Sep 2010 09:33:45 -0000 1.7 *************** *** 69,72 **** --- 69,73 ---- <build> + <finalName>${project.groupId}-${project.artifactId}-${project.version}</finalName> <plugins> <plugin> |
From: Joern K. <joe...@us...> - 2010-09-09 09:26:19
|
Update of /cvsroot/maxent/maxent In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv31163 Modified Files: pom.xml Log Message: Added opennlp repo to distribution management, now its possible to publish artifacts with mvn deploy. Index: pom.xml =================================================================== RCS file: /cvsroot/maxent/maxent/pom.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** pom.xml 9 Sep 2010 08:21:10 -0000 1.5 --- pom.xml 9 Sep 2010 09:26:10 -0000 1.6 *************** *** 41,48 **** --- 41,62 ---- </license> </licenses> + <scm> <connection>scm:cvs:pserver:anonymous:@maxent.cvs.sourceforge.net:/cvsroot/maxent:maxent</connection> <url>http://maxent.cvs.sourceforge.net/viewvc/maxent/</url> </scm> + + <issueManagement> + <system>sourceforge</system> + <url>http://sourceforge.net/tracker/?group_id=5961</url> + </issueManagement> + + <distributionManagement> + <repository> + <id>opennlp.sf.net</id> + <url>scp://shell.sourceforge.net/home/groups/o/op/opennlp/htdocs/maven-test</url> + </repository> + </distributionManagement> + <dependencies> <dependency> *************** *** 76,79 **** --- 90,101 ---- </plugin> </plugins> + + <extensions> + <extension> + <groupId>org.apache.maven.wagon</groupId> + <artifactId>wagon-ssh</artifactId> + <version>1.0-beta-6</version> + </extension> + </extensions> </build> </project> \ No newline at end of file |
From: Joern K. <joe...@us...> - 2010-09-09 08:40:11
|
Update of /cvsroot/maxent/maxent In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv22898 Modified Files: AUTHORS Log Message: Changed umlaut o to oe Index: AUTHORS =================================================================== RCS file: /cvsroot/maxent/maxent/AUTHORS,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** AUTHORS 8 Sep 2010 06:45:17 -0000 1.5 --- AUTHORS 9 Sep 2010 08:40:02 -0000 1.6 *************** *** 6,10 **** Tom Morton <tsm...@us...> Gann Bierner <ga...@us...> ! Jörn Kottmann <kot...@gm...> Other contributors: --- 6,10 ---- Tom Morton <tsm...@us...> Gann Bierner <ga...@us...> ! Joern Kottmann <kot...@gm...> Other contributors: |
From: Joern K. <joe...@us...> - 2010-09-09 08:39:15
|
Update of /cvsroot/maxent/maxent In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv22816 Modified Files: CHANGES Log Message: Added changes from 2.5 branch. Index: CHANGES =================================================================== RCS file: /cvsroot/maxent/maxent/CHANGES,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** CHANGES 5 Sep 2010 19:38:36 -0000 1.25 --- CHANGES 9 Sep 2010 08:39:06 -0000 1.26 *************** *** 6,9 **** --- 6,18 ---- Added perceptron classifier. + 2.5.3 + ----- + Fixed bug in GIS class, a cutoff value was not passed on to the GISTrainer + Fixed bug in GISTrainer, a cutoff value compare was incorrect + + 2.5.2 + ----- + Wrapped model reading input streams with BufferedInputStream for performance gain. + 2.5.1 ----- |
From: Joern K. <joe...@us...> - 2010-09-09 08:21:19
|
Update of /cvsroot/maxent/maxent In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv19885 Modified Files: pom.xml Log Message: Removed SNAPSHOT, to prepare for release. Index: pom.xml =================================================================== RCS file: /cvsroot/maxent/maxent/pom.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** pom.xml 6 Sep 2010 20:36:34 -0000 1.4 --- pom.xml 9 Sep 2010 08:21:10 -0000 1.5 *************** *** 26,30 **** <artifactId>maxent</artifactId> <packaging>jar</packaging> ! <version>3.0.0-SNAPSHOT</version> <name>OpenNLP Maxent</name> <url>http://maven.apache.org</url> --- 26,30 ---- <artifactId>maxent</artifactId> <packaging>jar</packaging> ! <version>3.0.0</version> <name>OpenNLP Maxent</name> <url>http://maven.apache.org</url> *************** *** 75,80 **** </configuration> </plugin> - - </plugins> </build> --- 75,78 ---- |
From: Joern K. <joe...@us...> - 2010-09-08 06:45:26
|
Update of /cvsroot/maxent/maxent In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv8359 Modified Files: AUTHORS Log Message: Added Jrn Kottmann Index: AUTHORS =================================================================== RCS file: /cvsroot/maxent/maxent/AUTHORS,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** AUTHORS 8 Sep 2010 02:05:55 -0000 1.4 --- AUTHORS 8 Sep 2010 06:45:17 -0000 1.5 *************** *** 6,9 **** --- 6,10 ---- Tom Morton <tsm...@us...> Gann Bierner <ga...@us...> + Jörn Kottmann <kot...@gm...> Other contributors: |
From: Jason B. <jas...@us...> - 2010-09-08 02:06:04
|
Update of /cvsroot/maxent/maxent In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv16906 Modified Files: AUTHORS Log Message: Updated author emails. Index: AUTHORS =================================================================== RCS file: /cvsroot/maxent/maxent/AUTHORS,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** AUTHORS 6 Sep 2010 08:28:39 -0000 1.3 --- AUTHORS 8 Sep 2010 02:05:55 -0000 1.4 *************** *** 3,11 **** Main Authors: ! Jason Baldridge <jm...@co...> ! Tom Morton <tsm...@so...> ! Gann Bierner <gbi...@co...> Other contributors: ! Eric Friedman <er...@et...> \ No newline at end of file --- 3,11 ---- Main Authors: ! Jason Baldridge <jas...@gm...> ! Tom Morton <tsm...@us...> ! Gann Bierner <ga...@us...> Other contributors: ! Eric Friedman <er...@us...> \ No newline at end of file |
From: Joern K. <joe...@us...> - 2010-09-06 20:36:45
|
Update of /cvsroot/maxent/maxent In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv15108 Modified Files: pom.xml Log Message: Specified encoding to ensure that build works on all platforms. Index: pom.xml =================================================================== RCS file: /cvsroot/maxent/maxent/pom.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** pom.xml 6 Sep 2010 09:37:48 -0000 1.3 --- pom.xml 6 Sep 2010 20:36:34 -0000 1.4 *************** *** 29,32 **** --- 29,37 ---- <name>OpenNLP Maxent</name> <url>http://maven.apache.org</url> + + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + </properties> + <licenses> <license> |
From: Joern K. <joe...@us...> - 2010-09-06 09:37:57
|
Update of /cvsroot/maxent/maxent In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv31469 Modified Files: pom.xml Log Message: Added version to compiler plugin and added scm connection. Index: pom.xml =================================================================== RCS file: /cvsroot/maxent/maxent/pom.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** pom.xml 6 Sep 2010 07:48:50 -0000 1.2 --- pom.xml 6 Sep 2010 09:37:48 -0000 1.3 *************** *** 37,40 **** --- 37,41 ---- </licenses> <scm> + <connection>scm:cvs:pserver:anonymous:@maxent.cvs.sourceforge.net:/cvsroot/maxent:maxent</connection> <url>http://maxent.cvs.sourceforge.net/viewvc/maxent/</url> </scm> *************** *** 53,56 **** --- 54,58 ---- <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> + <version>2.3.1</version> <configuration> <source>1.5</source> |
From: Joern K. <joe...@us...> - 2010-09-06 08:28:48
|
Update of /cvsroot/maxent/maxent In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv17971 Modified Files: AUTHORS Log Message: Added note that team should be contacted via sourceforge forum. Index: AUTHORS =================================================================== RCS file: /cvsroot/maxent/maxent/AUTHORS,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** AUTHORS 26 Sep 2008 03:54:39 -0000 1.2 --- AUTHORS 6 Sep 2010 08:28:39 -0000 1.3 *************** *** 1,2 **** --- 1,5 ---- + Please note the preferred way to contact the team is via + the sourceforge forums. + Main Authors: Jason Baldridge <jm...@co...> |
From: Joern K. <joe...@us...> - 2010-09-06 08:24:17
|
Update of /cvsroot/maxent/maxent/src/main/assembly In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv17127/src/main/assembly Modified Files: src.xml Log Message: Added AUTHORS Index: src.xml =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/assembly/src.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** src.xml 6 Sep 2010 07:48:50 -0000 1.2 --- src.xml 6 Sep 2010 08:24:08 -0000 1.3 *************** *** 33,36 **** --- 33,37 ---- <include>build.sh</include> <include>build.xml</include> + <include>AUTHORS</include> <include>CHANGES</include> <include>COMMANDLINE</include> |
From: Joern K. <joe...@us...> - 2010-09-06 08:21:12
|
Update of /cvsroot/maxent/maxent/.settings In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv16792/.settings Added Files: .cvsignore Log Message: Added files to .cvsignore |
From: Joern K. <joe...@us...> - 2010-09-06 08:12:57
|
Update of /cvsroot/maxent/maxent In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv14817 Modified Files: .cvsignore Log Message: Added target to .cvsignore Index: .cvsignore =================================================================== RCS file: /cvsroot/maxent/maxent/.cvsignore,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** .cvsignore 7 Apr 2003 05:07:33 -0000 1.3 --- .cvsignore 6 Sep 2010 08:12:49 -0000 1.4 *************** *** 2,3 **** --- 2,4 ---- .classpath .project + target |
From: Joern K. <joe...@us...> - 2010-09-06 08:04:06
|
Update of /cvsroot/maxent/maxent/docs In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv12983/docs Modified Files: whatismaxent.html style.css details.html about.html index.html howto.html Log Message: Added license header Index: whatismaxent.html =================================================================== RCS file: /cvsroot/maxent/maxent/docs/whatismaxent.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** whatismaxent.html 30 Oct 2001 09:52:44 -0000 1.2 --- whatismaxent.html 6 Sep 2010 08:03:57 -0000 1.3 *************** *** 1,3 **** --- 1,23 ---- <html> + + <!-- + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + --> + <head> <title>Forward to About Maxent page</title> Index: style.css =================================================================== RCS file: /cvsroot/maxent/maxent/docs/style.css,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** style.css 30 Oct 2001 09:52:44 -0000 1.1 --- style.css 6 Sep 2010 08:03:57 -0000 1.2 *************** *** 1,2 **** --- 1,21 ---- + /* + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + */ + body{ font-family: arial, times, Helvetica, sans-serif; Index: details.html =================================================================== RCS file: /cvsroot/maxent/maxent/docs/details.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** details.html 30 Oct 2001 09:52:44 -0000 1.2 --- details.html 6 Sep 2010 08:03:57 -0000 1.3 *************** *** 1,3 **** --- 1,23 ---- <html> + + <!-- + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + --> + <head> <title>Forward to About Maxent page</title> Index: about.html =================================================================== RCS file: /cvsroot/maxent/maxent/docs/about.html,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** about.html 6 Nov 2008 20:00:34 -0000 1.4 --- about.html 6 Sep 2010 08:03:57 -0000 1.5 *************** *** 1,3 **** --- 1,23 ---- <html> + + <!-- + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + --> + <head> Index: index.html =================================================================== RCS file: /cvsroot/maxent/maxent/docs/index.html,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** index.html 29 Aug 2004 20:11:58 -0000 1.5 --- index.html 6 Sep 2010 08:03:57 -0000 1.6 *************** *** 1,3 **** --- 1,23 ---- <html> + + <!-- + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + --> + <head> Index: howto.html =================================================================== RCS file: /cvsroot/maxent/maxent/docs/howto.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** howto.html 30 Aug 2008 17:47:02 -0000 1.3 --- howto.html 6 Sep 2010 08:03:57 -0000 1.4 *************** *** 1,3 **** --- 1,23 ---- <html> + + <!-- + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + --> + <head> |
Update of /cvsroot/maxent/maxent/src/main/java/opennlp/model In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv12669/src/main/java/opennlp/model Modified Files: ObjectDataReader.java GenericModelWriter.java DataReader.java AbstractModelReader.java OnePassRealValueDataIndexer.java GenericModelReader.java SequenceStreamEventStream.java SequenceStream.java BinaryFileDataReader.java EventCollector.java FileEventStream.java AbstractModel.java Event.java MaxentModel.java DataIndexer.java PlainTextFileDataReader.java IndexHashTable.java ComparableEvent.java MutableContext.java UniformPrior.java TwoPassDataIndexer.java EventStream.java DynamicEvalParameters.java Prior.java Context.java AbstractModelWriter.java Sequence.java EventCollectorAsStream.java EvalParameters.java OnePassDataIndexer.java RealValueFileEventStream.java ComparablePredicate.java AbstractEventStream.java AbstractDataIndexer.java Log Message: Fixed or added license header. Index: ObjectDataReader.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/model/ObjectDataReader.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ObjectDataReader.java 22 Jan 2009 23:23:33 -0000 1.1 --- ObjectDataReader.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,2 **** --- 1,21 ---- + /* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + package opennlp.model; Index: GenericModelWriter.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/model/GenericModelWriter.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** GenericModelWriter.java 15 Mar 2009 03:24:32 -0000 1.2 --- GenericModelWriter.java 6 Sep 2010 08:02:18 -0000 1.3 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreements. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: DataReader.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/model/DataReader.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DataReader.java 22 Jan 2009 23:23:33 -0000 1.1 --- DataReader.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,2 **** --- 1,21 ---- + /* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + package opennlp.model; Index: AbstractModelReader.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/model/AbstractModelReader.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** AbstractModelReader.java 22 Jan 2009 23:23:33 -0000 1.1 --- AbstractModelReader.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: OnePassRealValueDataIndexer.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/model/OnePassRealValueDataIndexer.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** OnePassRealValueDataIndexer.java 10 Aug 2010 14:33:22 -0000 1.2 --- OnePassRealValueDataIndexer.java 6 Sep 2010 08:02:18 -0000 1.3 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ *************** *** 26,30 **** import java.util.Map; - /** * An indexer for maxent model data which handles cutoffs for uncommon --- 28,31 ---- Index: GenericModelReader.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/model/GenericModelReader.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** GenericModelReader.java 15 Mar 2009 03:24:32 -0000 1.3 --- GenericModelReader.java 6 Sep 2010 08:02:18 -0000 1.4 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreements. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: SequenceStreamEventStream.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/model/SequenceStreamEventStream.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** SequenceStreamEventStream.java 15 Mar 2009 03:25:27 -0000 1.1 --- SequenceStreamEventStream.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,2 **** --- 1,21 ---- + /* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + package opennlp.model; Index: SequenceStream.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/model/SequenceStream.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** SequenceStream.java 15 Mar 2009 03:25:27 -0000 1.1 --- SequenceStream.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreements. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: BinaryFileDataReader.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/model/BinaryFileDataReader.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** BinaryFileDataReader.java 22 Jan 2009 23:23:33 -0000 1.1 --- BinaryFileDataReader.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,2 **** --- 1,21 ---- + /* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + package opennlp.model; Index: EventCollector.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/model/EventCollector.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** EventCollector.java 22 Jan 2009 23:23:33 -0000 1.1 --- EventCollector.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,23 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ package opennlp.model; - - /** * An interface for objects which read events during training. --- 1,23 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ package opennlp.model; /** * An interface for objects which read events during training. Index: FileEventStream.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/model/FileEventStream.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** FileEventStream.java 22 Jan 2009 23:23:33 -0000 1.1 --- FileEventStream.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: AbstractModel.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/model/AbstractModel.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** AbstractModel.java 23 Jun 2010 08:34:02 -0000 1.5 --- AbstractModel.java 6 Sep 2010 08:02:18 -0000 1.6 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: Event.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/model/Event.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Event.java 22 Jan 2009 23:23:33 -0000 1.1 --- Event.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: MaxentModel.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/model/MaxentModel.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** MaxentModel.java 22 Jan 2009 23:23:33 -0000 1.1 --- MaxentModel.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: DataIndexer.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/model/DataIndexer.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** DataIndexer.java 5 Feb 2009 12:32:36 -0000 1.2 --- DataIndexer.java 6 Sep 2010 08:02:18 -0000 1.3 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: PlainTextFileDataReader.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/model/PlainTextFileDataReader.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** PlainTextFileDataReader.java 22 Jan 2009 23:23:33 -0000 1.1 --- PlainTextFileDataReader.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,2 **** --- 1,21 ---- + /* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + package opennlp.model; Index: IndexHashTable.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/model/IndexHashTable.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** IndexHashTable.java 2 Aug 2010 13:31:22 -0000 1.3 --- IndexHashTable.java 6 Sep 2010 08:02:18 -0000 1.4 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreements. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: ComparableEvent.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/model/ComparableEvent.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ComparableEvent.java 22 Jan 2009 23:23:33 -0000 1.1 --- ComparableEvent.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,22 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ package opennlp.model; ! import java.util.*; /** --- 1,24 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ package opennlp.model; ! import java.util.Arrays; /** Index: MutableContext.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/model/MutableContext.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** MutableContext.java 22 Jan 2009 23:23:33 -0000 1.1 --- MutableContext.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: UniformPrior.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/model/UniformPrior.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** UniformPrior.java 22 Jan 2009 23:23:33 -0000 1.1 --- UniformPrior.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: TwoPassDataIndexer.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/model/TwoPassDataIndexer.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TwoPassDataIndexer.java 10 Aug 2010 14:33:22 -0000 1.3 --- TwoPassDataIndexer.java 6 Sep 2010 08:02:18 -0000 1.4 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: EventStream.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/model/EventStream.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** EventStream.java 10 Aug 2010 14:33:22 -0000 1.2 --- EventStream.java 6 Sep 2010 08:02:18 -0000 1.3 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: DynamicEvalParameters.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/model/DynamicEvalParameters.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DynamicEvalParameters.java 22 Jan 2009 23:23:33 -0000 1.1 --- DynamicEvalParameters.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,2 **** --- 1,21 ---- + /* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + package opennlp.model; Index: Prior.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/model/Prior.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Prior.java 22 Jan 2009 23:23:33 -0000 1.1 --- Prior.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: Context.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/model/Context.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Context.java 5 Feb 2009 13:08:23 -0000 1.2 --- Context.java 6 Sep 2010 08:02:18 -0000 1.3 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: AbstractModelWriter.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/model/AbstractModelWriter.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** AbstractModelWriter.java 22 Jan 2009 23:23:33 -0000 1.1 --- AbstractModelWriter.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,4 **** ! package opennlp.model; public abstract class AbstractModelWriter { --- 1,22 ---- ! /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. ! */ + package opennlp.model; public abstract class AbstractModelWriter { Index: Sequence.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/model/Sequence.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Sequence.java 15 Mar 2009 03:25:27 -0000 1.1 --- Sequence.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreements. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: EventCollectorAsStream.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/model/EventCollectorAsStream.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** EventCollectorAsStream.java 22 Jan 2009 23:23:33 -0000 1.1 --- EventCollectorAsStream.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: EvalParameters.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/model/EvalParameters.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** EvalParameters.java 22 Jan 2009 23:23:33 -0000 1.1 --- EvalParameters.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: OnePassDataIndexer.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/model/OnePassDataIndexer.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** OnePassDataIndexer.java 10 Aug 2010 14:33:22 -0000 1.2 --- OnePassDataIndexer.java 6 Sep 2010 08:02:18 -0000 1.3 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: RealValueFileEventStream.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/model/RealValueFileEventStream.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** RealValueFileEventStream.java 22 Jan 2009 23:23:33 -0000 1.1 --- RealValueFileEventStream.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS"... [truncated message content] |
Update of /cvsroot/maxent/maxent/src/main/java/opennlp/maxent In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv12669/src/main/java/opennlp/maxent Modified Files: GISModel.java ModelReplacementManager.java PlainTextByLineDataStream.java BasicEventStream.java BasicContextGenerator.java ModelTrainer.java TrainEval.java Evalable.java BinToAscii.java RealBasicEventStream.java Counter.java GIS.java ModelApplier.java ModelSetter.java IntegerPool.java Main.java GISTrainer.java ContextGenerator.java DataStream.java ModelDomain.java DomainToModelMap.java Log Message: Fixed or added license header. Index: GISModel.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/GISModel.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** GISModel.java 12 Aug 2010 07:56:43 -0000 1.5 --- GISModel.java 6 Sep 2010 08:02:18 -0000 1.6 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: ModelReplacementManager.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/ModelReplacementManager.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ModelReplacementManager.java 22 Jan 2009 23:23:34 -0000 1.1 --- ModelReplacementManager.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,19 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ - package opennlp.maxent; --- 1,20 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ package opennlp.maxent; Index: PlainTextByLineDataStream.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/PlainTextByLineDataStream.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** PlainTextByLineDataStream.java 22 Jan 2009 23:23:34 -0000 1.1 --- PlainTextByLineDataStream.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,22 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ package opennlp.maxent; ! import java.io.*; /** --- 1,26 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ package opennlp.maxent; ! import java.io.BufferedReader; ! import java.io.IOException; ! import java.io.Reader; /** Index: BasicEventStream.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/BasicEventStream.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** BasicEventStream.java 9 Aug 2010 18:44:23 -0000 1.4 --- BasicEventStream.java 6 Sep 2010 08:02:18 -0000 1.5 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreements. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: BasicContextGenerator.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/BasicContextGenerator.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** BasicContextGenerator.java 9 Aug 2010 18:43:17 -0000 1.3 --- BasicContextGenerator.java 6 Sep 2010 08:02:18 -0000 1.4 *************** *** 1,22 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ package opennlp.maxent; - import java.util.*; /** --- 1,23 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ package opennlp.maxent; /** Index: ModelTrainer.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/ModelTrainer.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ModelTrainer.java 10 Aug 2010 07:38:24 -0000 1.2 --- ModelTrainer.java 6 Sep 2010 08:02:18 -0000 1.3 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreements. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: TrainEval.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/TrainEval.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TrainEval.java 10 Aug 2010 14:33:22 -0000 1.2 --- TrainEval.java 6 Sep 2010 08:02:18 -0000 1.3 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: Evalable.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/Evalable.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Evalable.java 22 Jan 2009 23:23:34 -0000 1.1 --- Evalable.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,22 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ package opennlp.maxent; ! import java.io.*; import opennlp.model.EventCollector; --- 1,24 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ package opennlp.maxent; ! import java.io.Reader; import opennlp.model.EventCollector; Index: BinToAscii.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/BinToAscii.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** BinToAscii.java 22 Jan 2009 23:23:34 -0000 1.1 --- BinToAscii.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ *************** *** 19,24 **** package opennlp.maxent; ! import java.io.*; ! import java.util.zip.*; /** --- 21,32 ---- package opennlp.maxent; ! import java.io.DataInputStream; ! import java.io.FileInputStream; ! import java.io.FileOutputStream; ! import java.io.IOException; ! import java.io.OutputStreamWriter; ! import java.io.PrintWriter; ! import java.util.zip.GZIPInputStream; ! import java.util.zip.GZIPOutputStream; /** Index: RealBasicEventStream.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/RealBasicEventStream.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** RealBasicEventStream.java 22 Jan 2009 23:23:34 -0000 1.1 --- RealBasicEventStream.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: Counter.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/Counter.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Counter.java 22 Jan 2009 23:23:34 -0000 1.1 --- Counter.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,23 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ package opennlp.maxent; - - /** * A simple class which is essentially an Integer which is mutable via --- 1,23 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ package opennlp.maxent; /** * A simple class which is essentially an Integer which is mutable via Index: GIS.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/GIS.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** GIS.java 10 Aug 2010 14:33:22 -0000 1.4 --- GIS.java 6 Sep 2010 08:02:18 -0000 1.5 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreements. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: ModelApplier.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/ModelApplier.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ModelApplier.java 10 Aug 2010 07:38:24 -0000 1.3 --- ModelApplier.java 6 Sep 2010 08:02:18 -0000 1.4 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreements. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: ModelSetter.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/ModelSetter.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ModelSetter.java 22 Jan 2009 23:23:34 -0000 1.1 --- ModelSetter.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: IntegerPool.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/IntegerPool.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** IntegerPool.java 22 Jan 2009 23:23:34 -0000 1.1 --- IntegerPool.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: Main.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/Main.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Main.java 22 Jan 2009 23:23:34 -0000 1.1 --- Main.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: GISTrainer.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/GISTrainer.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** GISTrainer.java 12 Aug 2010 07:56:43 -0000 1.6 --- GISTrainer.java 6 Sep 2010 08:02:18 -0000 1.7 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreements. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: ContextGenerator.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/ContextGenerator.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ContextGenerator.java 22 Jan 2009 23:23:34 -0000 1.1 --- ContextGenerator.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: DataStream.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/DataStream.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DataStream.java 22 Jan 2009 23:23:34 -0000 1.1 --- DataStream.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: ModelDomain.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/ModelDomain.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ModelDomain.java 22 Jan 2009 23:23:34 -0000 1.1 --- ModelDomain.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: DomainToModelMap.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/DomainToModelMap.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DomainToModelMap.java 22 Jan 2009 23:23:34 -0000 1.1 --- DomainToModelMap.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,22 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ package opennlp.maxent; ! import java.util.*; import opennlp.model.MaxentModel; --- 1,28 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ package opennlp.maxent; ! import java.util.Collections; ! import java.util.HashMap; ! import java.util.Map; ! import java.util.NoSuchElementException; ! import java.util.Set; import opennlp.model.MaxentModel; |
Update of /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/io In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv12669/src/main/java/opennlp/maxent/io Modified Files: SuffixSensitiveGISModelReader.java PlainTextGISModelWriter.java BinToAscii.java OldFormatGISModelReader.java SuffixSensitiveGISModelWriter.java PooledGISModelReader.java ObjectGISModelWriter.java GISModelWriter.java BinaryGISModelReader.java ObjectGISModelReader.java BinaryGISModelWriter.java GISModelReader.java PlainTextGISModelReader.java Log Message: Fixed or added license header. Index: SuffixSensitiveGISModelReader.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/io/SuffixSensitiveGISModelReader.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** SuffixSensitiveGISModelReader.java 22 Jan 2009 23:23:33 -0000 1.1 --- SuffixSensitiveGISModelReader.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,32 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ package opennlp.maxent.io; - import java.io.BufferedReader; - import java.io.DataInputStream; import java.io.File; - import java.io.FileInputStream; import java.io.IOException; - import java.io.InputStream; - import java.io.InputStreamReader; - import java.util.zip.GZIPInputStream; import opennlp.model.AbstractModel; - import opennlp.model.AbstractModelReader; /** --- 1,27 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ package opennlp.maxent.io; import java.io.File; import java.io.IOException; import opennlp.model.AbstractModel; /** Index: PlainTextGISModelWriter.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/io/PlainTextGISModelWriter.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** PlainTextGISModelWriter.java 22 Jan 2009 23:23:33 -0000 1.1 --- PlainTextGISModelWriter.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: BinToAscii.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/io/BinToAscii.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** BinToAscii.java 22 Jan 2009 23:23:33 -0000 1.1 --- BinToAscii.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ *************** *** 19,24 **** package opennlp.maxent.io; ! import java.io.*; ! import java.util.zip.*; /** --- 21,32 ---- package opennlp.maxent.io; ! import java.io.DataInputStream; ! import java.io.FileInputStream; ! import java.io.FileOutputStream; ! import java.io.IOException; ! import java.io.OutputStreamWriter; ! import java.io.PrintWriter; ! import java.util.zip.GZIPInputStream; ! import java.util.zip.GZIPOutputStream; /** Index: OldFormatGISModelReader.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/io/OldFormatGISModelReader.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** OldFormatGISModelReader.java 22 Jan 2009 23:23:33 -0000 1.1 --- OldFormatGISModelReader.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: SuffixSensitiveGISModelWriter.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/io/SuffixSensitiveGISModelWriter.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** SuffixSensitiveGISModelWriter.java 22 Jan 2009 23:23:33 -0000 1.1 --- SuffixSensitiveGISModelWriter.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: PooledGISModelReader.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/io/PooledGISModelReader.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** PooledGISModelReader.java 22 Jan 2009 23:23:33 -0000 1.1 --- PooledGISModelReader.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: ObjectGISModelWriter.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/io/ObjectGISModelWriter.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ObjectGISModelWriter.java 22 Jan 2009 23:23:33 -0000 1.1 --- ObjectGISModelWriter.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: GISModelWriter.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/io/GISModelWriter.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** GISModelWriter.java 23 Jun 2010 08:34:02 -0000 1.2 --- GISModelWriter.java 6 Sep 2010 08:02:18 -0000 1.3 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ *************** *** 22,26 **** import java.util.Arrays; import java.util.List; - import java.util.Map; import opennlp.model.AbstractModel; --- 24,27 ---- Index: BinaryGISModelReader.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/io/BinaryGISModelReader.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** BinaryGISModelReader.java 22 Jan 2009 23:23:33 -0000 1.1 --- BinaryGISModelReader.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: ObjectGISModelReader.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/io/ObjectGISModelReader.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ObjectGISModelReader.java 22 Jan 2009 23:23:33 -0000 1.1 --- ObjectGISModelReader.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: BinaryGISModelWriter.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/io/BinaryGISModelWriter.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** BinaryGISModelWriter.java 10 Aug 2010 09:26:55 -0000 1.2 --- BinaryGISModelWriter.java 6 Sep 2010 08:02:18 -0000 1.3 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: GISModelReader.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/io/GISModelReader.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** GISModelReader.java 22 Jan 2009 23:23:33 -0000 1.1 --- GISModelReader.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: PlainTextGISModelReader.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/maxent/io/PlainTextGISModelReader.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** PlainTextGISModelReader.java 22 Jan 2009 23:23:33 -0000 1.1 --- PlainTextGISModelReader.java 6 Sep 2010 08:02:18 -0000 1.2 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreemnets. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ |
Update of /cvsroot/maxent/maxent/src/main/java/opennlp/perceptron In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv12669/src/main/java/opennlp/perceptron Modified Files: PlainTextPerceptronModelReader.java BinaryPerceptronModelReader.java SimplePerceptronSequenceTrainer.java SuffixSensitivePerceptronModelWriter.java PerceptronModelReader.java BinaryPerceptronModelWriter.java PerceptronTrainer.java PerceptronModelWriter.java PlainTextPerceptronModelWriter.java PerceptronModel.java Log Message: Fixed or added license header. Index: PlainTextPerceptronModelReader.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/perceptron/PlainTextPerceptronModelReader.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** PlainTextPerceptronModelReader.java 15 Mar 2009 03:29:56 -0000 1.2 --- PlainTextPerceptronModelReader.java 6 Sep 2010 08:02:18 -0000 1.3 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreements. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: BinaryPerceptronModelReader.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/perceptron/BinaryPerceptronModelReader.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** BinaryPerceptronModelReader.java 15 Mar 2009 03:29:56 -0000 1.2 --- BinaryPerceptronModelReader.java 6 Sep 2010 08:02:18 -0000 1.3 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreements. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: SimplePerceptronSequenceTrainer.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/perceptron/SimplePerceptronSequenceTrainer.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** SimplePerceptronSequenceTrainer.java 10 Aug 2010 14:33:22 -0000 1.4 --- SimplePerceptronSequenceTrainer.java 6 Sep 2010 08:02:18 -0000 1.5 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreements. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: SuffixSensitivePerceptronModelWriter.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/perceptron/SuffixSensitivePerceptronModelWriter.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** SuffixSensitivePerceptronModelWriter.java 15 Mar 2009 03:29:56 -0000 1.2 --- SuffixSensitivePerceptronModelWriter.java 6 Sep 2010 08:02:18 -0000 1.3 *************** *** 1,18 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreements. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ package opennlp.perceptron; --- 1,21 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ + package opennlp.perceptron; Index: PerceptronModelReader.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/perceptron/PerceptronModelReader.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** PerceptronModelReader.java 15 Mar 2009 03:29:56 -0000 1.2 --- PerceptronModelReader.java 6 Sep 2010 08:02:18 -0000 1.3 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreements. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: BinaryPerceptronModelWriter.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/perceptron/BinaryPerceptronModelWriter.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** BinaryPerceptronModelWriter.java 15 Mar 2009 03:29:56 -0000 1.2 --- BinaryPerceptronModelWriter.java 6 Sep 2010 08:02:18 -0000 1.3 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreements. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: PerceptronTrainer.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/perceptron/PerceptronTrainer.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** PerceptronTrainer.java 17 Mar 2009 03:11:26 -0000 1.3 --- PerceptronTrainer.java 6 Sep 2010 08:02:18 -0000 1.4 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreements. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ *************** *** 22,25 **** --- 24,28 ---- import opennlp.model.EvalParameters; import opennlp.model.MutableContext; + /** * Trains models using the perceptron algorithm. Each outcome is represented as Index: PerceptronModelWriter.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/perceptron/PerceptronModelWriter.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** PerceptronModelWriter.java 15 Mar 2009 03:30:59 -0000 1.2 --- PerceptronModelWriter.java 6 Sep 2010 08:02:18 -0000 1.3 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreements. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: PlainTextPerceptronModelWriter.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/perceptron/PlainTextPerceptronModelWriter.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** PlainTextPerceptronModelWriter.java 15 Mar 2009 03:29:56 -0000 1.2 --- PlainTextPerceptronModelWriter.java 6 Sep 2010 08:02:18 -0000 1.3 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreements. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ Index: PerceptronModel.java =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/java/opennlp/perceptron/PerceptronModel.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** PerceptronModel.java 19 Mar 2009 13:04:31 -0000 1.3 --- PerceptronModel.java 6 Sep 2010 08:02:18 -0000 1.4 *************** *** 1,17 **** /* ! * Licensed to the Apache Software Foundation (ASF) under one or more ! * contributor license agreements. See the NOTICE file distributed with ! * this work for additional information regarding copyright ownership. ! * The ASF licenses this file to You under the Apache License, Version 2.0 ! * (the "License"); you may not use this file except in compliance with ! * the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, software ! * distributed under the License is distributed on an "AS IS" BASIS, ! * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ! * See the License for the specific language governing permissions and ! * limitations under the License. */ --- 1,19 ---- /* ! * Licensed to the Apache Software Foundation (ASF) under one ! * or more contributor license agreements. See the NOTICE file ! * distributed with this work for additional information ! * regarding copyright ownership. The ASF licenses this file ! * to you under the Apache License, Version 2.0 (the ! * "License"); you may not use this file except in compliance ! * with the License. You may obtain a copy of the License at ! * ! * http://www.apache.org/licenses/LICENSE-2.0 ! * ! * Unless required by applicable law or agreed to in writing, ! * software distributed under the License is distributed on an ! * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ! * KIND, either express or implied. See the License for the ! * specific language governing permissions and limitations ! * under the License. */ |
From: Joern K. <joe...@us...> - 2010-09-06 07:48:59
|
Update of /cvsroot/maxent/maxent/src/main/assembly In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv10076/src/main/assembly Modified Files: src.xml Log Message: Fixed maven build Index: src.xml =================================================================== RCS file: /cvsroot/maxent/maxent/src/main/assembly/src.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** src.xml 22 Jan 2009 23:23:33 -0000 1.1 --- src.xml 6 Sep 2010 07:48:50 -0000 1.2 *************** *** 30,35 **** <include>docs/**</include> <include>samples/**</include> ! <include>AUTHORS</include> ! <include>CHANGESS</include> <include>COMMANDLINE</include> <include>LICENSE</include> --- 30,37 ---- <include>docs/**</include> <include>samples/**</include> ! <include>lib/**</include> ! <include>build.sh</include> ! <include>build.xml</include> ! <include>CHANGES</include> <include>COMMANDLINE</include> <include>LICENSE</include> |
From: Joern K. <joe...@us...> - 2010-09-06 07:48:59
|
Update of /cvsroot/maxent/maxent In directory sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv10076 Modified Files: pom.xml Log Message: Fixed maven build Index: pom.xml =================================================================== RCS file: /cvsroot/maxent/maxent/pom.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** pom.xml 22 Jan 2009 23:23:35 -0000 1.1 --- pom.xml 6 Sep 2010 07:48:50 -0000 1.2 *************** *** 26,30 **** <artifactId>maxent</artifactId> <packaging>jar</packaging> ! <version>3.0-SNAPSHOT</version> <name>OpenNLP Maxent</name> <url>http://maven.apache.org</url> --- 26,30 ---- <artifactId>maxent</artifactId> <packaging>jar</packaging> ! <version>3.0.0-SNAPSHOT</version> <name>OpenNLP Maxent</name> <url>http://maven.apache.org</url> |