cc.mallet.types.Alphabet.stopGrowth()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(7.8k)|赞(0)|评价(0)|浏览(109)

本文整理了Java中cc.mallet.types.Alphabet.stopGrowth()方法的一些代码示例,展示了Alphabet.stopGrowth()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Alphabet.stopGrowth()方法的具体详情如下:
包路径:cc.mallet.types.Alphabet
类名称:Alphabet
方法名:stopGrowth

Alphabet.stopGrowth介绍

暂无

代码示例

代码示例来源:origin: cc.mallet/mallet

  1. public HMM(Alphabet inputAlphabet, Alphabet outputAlphabet) {
  2. inputAlphabet.stopGrowth();
  3. logger.info("HMM input dictionary size = " + inputAlphabet.size());
  4. this.inputAlphabet = inputAlphabet;
  5. this.outputAlphabet = outputAlphabet;
  6. }

代码示例来源:origin: com.github.steveash.mallet/mallet

  1. /** Constructor that takes an alphabet representing the
  2. * meaning of each dimension
  3. */
  4. public Dirichlet (double[] alphas, Alphabet dict)
  5. {
  6. this(alphas);
  7. if (dict != null && alphas.length != dict.size())
  8. throw new IllegalArgumentException ("alphas and dict sizes do not match.");
  9. this.dict = dict;
  10. if (dict != null)
  11. dict.stopGrowth();
  12. }

代码示例来源:origin: cc.mallet/mallet

  1. /** Constructor that takes an alphabet representing the
  2. * meaning of each dimension
  3. */
  4. public Dirichlet (double[] alphas, Alphabet dict)
  5. {
  6. this(alphas);
  7. if (dict != null && alphas.length != dict.size())
  8. throw new IllegalArgumentException ("alphas and dict sizes do not match.");
  9. this.dict = dict;
  10. if (dict != null)
  11. dict.stopGrowth();
  12. }

代码示例来源:origin: de.julielab/jcore-mallet-2.0.9

  1. public HMM(Alphabet inputAlphabet, Alphabet outputAlphabet) {
  2. inputAlphabet.stopGrowth();
  3. logger.info("HMM input dictionary size = " + inputAlphabet.size());
  4. this.inputAlphabet = inputAlphabet;
  5. this.outputAlphabet = outputAlphabet;
  6. }

代码示例来源:origin: de.julielab/jcore-mallet-2.0.9

  1. /**
  2. * A symmetric Dirichlet with alpha_i = <code>alpha</code> and the
  3. * number of dimensions of the given alphabet.
  4. */
  5. public Dirichlet (Alphabet dict, double alpha)
  6. {
  7. this(dict.size(), alpha);
  8. this.dict = dict;
  9. dict.stopGrowth();
  10. }

代码示例来源:origin: com.github.steveash.mallet/mallet

  1. /**
  2. * A symmetric Dirichlet with alpha_i = <code>alpha</code> and the
  3. * number of dimensions of the given alphabet.
  4. */
  5. public Dirichlet (Alphabet dict, double alpha)
  6. {
  7. this(dict.size(), alpha);
  8. this.dict = dict;
  9. dict.stopGrowth();
  10. }

代码示例来源:origin: de.julielab/jcore-mallet-2.0.9

  1. /** Constructor that takes an alphabet representing the
  2. * meaning of each dimension
  3. */
  4. public Dirichlet (double[] alphas, Alphabet dict)
  5. {
  6. this(alphas);
  7. if (dict != null && alphas.length != dict.size())
  8. throw new IllegalArgumentException ("alphas and dict sizes do not match.");
  9. this.dict = dict;
  10. if (dict != null)
  11. dict.stopGrowth();
  12. }

代码示例来源:origin: cc.mallet/mallet

  1. /**
  2. * A symmetric Dirichlet with alpha_i = <code>alpha</code> and the
  3. * number of dimensions of the given alphabet.
  4. */
  5. public Dirichlet (Alphabet dict, double alpha)
  6. {
  7. this(dict.size(), alpha);
  8. this.dict = dict;
  9. dict.stopGrowth();
  10. }

代码示例来源:origin: com.github.steveash.mallet/mallet

  1. public HMM(Alphabet inputAlphabet, Alphabet outputAlphabet) {
  2. inputAlphabet.stopGrowth();
  3. logger.info("HMM input dictionary size = " + inputAlphabet.size());
  4. this.inputAlphabet = inputAlphabet;
  5. this.outputAlphabet = outputAlphabet;
  6. }

代码示例来源:origin: de.julielab/jcore-jtbd-ae

  1. public void readModel(InputStream is) throws IOException, ClassNotFoundException {
  2. final GZIPInputStream gin = new GZIPInputStream(is);
  3. final ObjectInputStream ois = new ObjectInputStream(gin);
  4. model = (CRF) ois.readObject();
  5. trained = true;
  6. model.getInputPipe().getDataAlphabet().stopGrowth();
  7. ois.close();
  8. }

代码示例来源:origin: com.github.steveash.jg2p/jg2p-core

  1. public void trainFor(Collection<Alignment> inputs) {
  2. // this pipe is the default pipe with new alphabet
  3. Stopwatch watch = Stopwatch.createStarted();
  4. trainRound(inputs, new Alphabet(), 0);
  5. crf.getInputAlphabet().stopGrowth();
  6. crf.getOutputAlphabet().stopGrowth();
  7. watch.stop();
  8. log.info("Training took " + watch);
  9. }

代码示例来源:origin: cc.mallet/mallet

  1. public CRF (Alphabet inputAlphabet, Alphabet outputAlphabet)
  2. {
  3. super (new Noop(inputAlphabet, outputAlphabet), null);
  4. inputAlphabet.stopGrowth();
  5. logger.info ("CRF input dictionary size = "+inputAlphabet.size());
  6. //xxx outputAlphabet.stopGrowth();
  7. this.inputAlphabet = inputAlphabet;
  8. this.outputAlphabet = outputAlphabet;
  9. }

代码示例来源:origin: de.julielab/jcore-mallet-2.0.9

  1. public CRF (Alphabet inputAlphabet, Alphabet outputAlphabet)
  2. {
  3. super (new Noop(inputAlphabet, outputAlphabet), null);
  4. inputAlphabet.stopGrowth();
  5. logger.info ("CRF input dictionary size = "+inputAlphabet.size());
  6. //xxx outputAlphabet.stopGrowth();
  7. this.inputAlphabet = inputAlphabet;
  8. this.outputAlphabet = outputAlphabet;
  9. }

代码示例来源:origin: com.github.steveash.mallet/mallet

  1. public CRF (Alphabet inputAlphabet, Alphabet outputAlphabet)
  2. {
  3. super (new Noop(inputAlphabet, outputAlphabet), null);
  4. inputAlphabet.stopGrowth();
  5. logger.info ("CRF input dictionary size = "+inputAlphabet.size());
  6. //xxx outputAlphabet.stopGrowth();
  7. this.inputAlphabet = inputAlphabet;
  8. this.outputAlphabet = outputAlphabet;
  9. }

代码示例来源:origin: edu.washington.cs.knowitall/reverb-core

  1. private void setupClassifier(String trainingdata) {
  2. try {
  3. crf_input = new ObjectInputStream(ResourceUtils.loadResource(
  4. trainingdata, this.getClass()));
  5. crf = (CRF) crf_input.readObject();
  6. crf_input.close();
  7. } catch (FileNotFoundException e1) {
  8. e1.printStackTrace();
  9. } catch (IOException e1) {
  10. e1.printStackTrace();
  11. } catch (ClassNotFoundException e) {
  12. e.printStackTrace();
  13. }
  14. crf.getInputAlphabet().stopGrowth();
  15. crf.getOutputAlphabet().stopGrowth();
  16. crf_pipe = crf.getInputPipe();
  17. crf_pipe.setTargetProcessing(false);
  18. crf_estimator = new ViterbiConfidenceEstimator(crf);
  19. }

代码示例来源:origin: knowitall/reverb

  1. private void setupClassifier(String trainingdata) {
  2. try {
  3. crf_input = new ObjectInputStream(ResourceUtils.loadResource(
  4. trainingdata, this.getClass()));
  5. crf = (CRF) crf_input.readObject();
  6. crf_input.close();
  7. } catch (FileNotFoundException e1) {
  8. e1.printStackTrace();
  9. } catch (IOException e1) {
  10. e1.printStackTrace();
  11. } catch (ClassNotFoundException e) {
  12. e.printStackTrace();
  13. }
  14. crf.getInputAlphabet().stopGrowth();
  15. crf.getOutputAlphabet().stopGrowth();
  16. crf_pipe = crf.getInputPipe();
  17. crf_pipe.setTargetProcessing(false);
  18. crf_estimator = new ViterbiConfidenceEstimator(crf);
  19. }

代码示例来源:origin: com.github.steveash.jg2p/jg2p-core

  1. private TransducerTrainer trainOnce(Pipe pipe, InstanceList trainData) {
  2. Stopwatch watch = Stopwatch.createStarted();
  3. CRF crf = new CRF(pipe, null);
  4. crf.addOrderNStates(trainData, new int[]{1}, null, null, null, null, false);
  5. crf.addStartState();
  6. log.info("Starting alignTag training...");
  7. CRFTrainerByThreadedLabelLikelihood trainer = new CRFTrainerByThreadedLabelLikelihood(crf, 8);
  8. trainer.setGaussianPriorVariance(2);
  9. // trainer.setUseSomeUnsupportedTrick(false);
  10. trainer.train(trainData);
  11. trainer.shutdown();
  12. watch.stop();
  13. log.info("Align Tag CRF Training took " + watch.toString());
  14. crf.getInputAlphabet().stopGrowth();
  15. crf.getOutputAlphabet().stopGrowth();
  16. return trainer;
  17. }

代码示例来源:origin: com.github.steveash.mallet/mallet

  1. /**
  2. * Returns a new alphabet that contains only features at or above
  3. * the specified limit.
  4. */
  5. public Alphabet getPrunedAlphabet(int minimumCount) {
  6. Alphabet currentAlphabet = getDataAlphabet();
  7. Alphabet prunedAlphabet = new Alphabet();
  8. for (int feature = 0; feature < currentAlphabet.size(); feature++) {
  9. if (counter.get(feature) >= minimumCount) {
  10. prunedAlphabet.lookupObject(currentAlphabet.lookupIndex(feature));
  11. }
  12. }
  13. prunedAlphabet.stopGrowth();
  14. return prunedAlphabet;
  15. }

代码示例来源:origin: cc.mallet/mallet

  1. /**
  2. * Returns a new alphabet that contains only features at or above
  3. * the specified limit.
  4. */
  5. public Alphabet getPrunedAlphabet(int minimumCount) {
  6. Alphabet currentAlphabet = getDataAlphabet();
  7. Alphabet prunedAlphabet = new Alphabet();
  8. for (int feature = 0; feature < currentAlphabet.size(); feature++) {
  9. if (counter.get(feature) >= minimumCount) {
  10. prunedAlphabet.lookupIndex(currentAlphabet.lookupObject(feature));
  11. }
  12. }
  13. prunedAlphabet.stopGrowth();
  14. return prunedAlphabet;
  15. }

代码示例来源:origin: de.julielab/jcore-mallet-2.0.9

  1. /**
  2. * Returns a new alphabet that contains only features at or above
  3. * the specified limit.
  4. */
  5. public Alphabet getPrunedAlphabet(int minimumCount) {
  6. Alphabet currentAlphabet = getDataAlphabet();
  7. Alphabet prunedAlphabet = new Alphabet();
  8. for (int feature = 0; feature < currentAlphabet.size(); feature++) {
  9. if (counter.get(feature) >= minimumCount) {
  10. prunedAlphabet.lookupObject(currentAlphabet.lookupIndex(feature));
  11. }
  12. }
  13. prunedAlphabet.stopGrowth();
  14. return prunedAlphabet;
  15. }

相关文章