move build of morhp to dictinary reader
git-svn-id: https://russianmorphology.googlecode.com/svn/trunk@56 d817d54c-26ab-11de-abc9-2f7d1455ff7a
This commit is contained in:
		| @@ -16,7 +16,7 @@ | ||||
|  | ||||
|         <dependency> | ||||
|             <groupId>org.apache.lucene.morpholgy</groupId> | ||||
|             <artifactId>dictionary-reader</artifactId> | ||||
|             <artifactId>morph</artifactId> | ||||
|             <version>0.7-SNAPSHOT</version> | ||||
|         </dependency> | ||||
|  | ||||
|   | ||||
| @@ -1,41 +0,0 @@ | ||||
| /** | ||||
|  * Copyright 2009 Alexander Kuznetsov  | ||||
|  * | ||||
|  * Licensed 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 org.apache.lucene.morphology.russian; | ||||
|  | ||||
| import org.apache.lucene.morpholgy.dictionary.DictonaryReader; | ||||
| import org.apache.lucene.morpholgy.dictionary.GrammaReader; | ||||
| import org.apache.lucene.morpholgy.dictionary.StatiticsCollector; | ||||
|  | ||||
| import java.io.IOException; | ||||
| import java.util.HashSet; | ||||
|  | ||||
|  | ||||
| public class HeuristicBuilder { | ||||
|     public static void main(String[] args) throws IOException { | ||||
|         //IgnoredFormReader formReader = new IgnoredFormReader("data/igoredFrom.txt"); | ||||
|         //Set<String> form = formReader.getIngnoredFroms(); | ||||
|  | ||||
|         GrammaReader grammaInfo = new GrammaReader("dictonary/Dicts/Morph/rgramtab.tab"); | ||||
|         DictonaryReader dictonaryReader = new DictonaryReader("dictonary/Dicts/SrcMorph/RusSrc/morphs.mrd", new HashSet<String>()); | ||||
|  | ||||
|         RussianLetterDecoderEncoder decoderEncoder = new RussianLetterDecoderEncoder(); | ||||
|         StatiticsCollector statiticsCollector = new StatiticsCollector(grammaInfo, decoderEncoder); | ||||
|         dictonaryReader.proccess(statiticsCollector); | ||||
|         statiticsCollector.saveHeuristic("russian/src/main/resources/org/apache/lucene/morphology/russian/morph.info"); | ||||
|  | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user
	 alexander.a.kuznetsov
					alexander.a.kuznetsov